difftreelog
Merge pull request #781 from UniqueNetwork/fix/yarn-lock
in: master
9 files changed
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -397,6 +397,10 @@
**/
FungibleItemsHaveNoId: AugmentedError<ApiType>;
/**
+ * Only a fungible collection could be possibly broken; any fungible token is valid.
+ **/
+ FungibleTokensAreAlwaysValid: AugmentedError<ApiType>;
+ /**
* Not Fungible item data used to mint in Fungible collection.
**/
NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;
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, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
+import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } 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, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, RuntimeDispatchInfoV1 } 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: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
+ instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: 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,13 +426,15 @@
};
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<RuntimeDispatchInfo>>;
+ queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;
};
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, u64 } from '@polkadot/types-codec';
+import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u32, 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,6 +16,7 @@
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';
@@ -228,5 +229,20 @@
**/
[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
+ **/
+ [key: string]: DecoratedCallBase<ApiType>;
+ };
} // AugmentedCalls
} // declare module
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -1475,6 +1475,15 @@
**/
removeFromAllowList: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, address: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
/**
+ * Repairs a broken item
+ *
+ * # Arguments
+ *
+ * * `collection_id`: ID of the collection the item belongs to.
+ * * `item_id`: ID of the item.
+ **/
+ repairItem: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
+ /**
* Re-partition a refungible token, while owning all of its parts/pieces.
*
* # Permissions
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, 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 { 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 { 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 } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } 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,10 +273,12 @@
ContractExecResultTo255: ContractExecResultTo255;
ContractExecResultTo260: ContractExecResultTo260;
ContractExecResultTo267: ContractExecResultTo267;
+ ContractExecResultU64: ContractExecResultU64;
ContractInfo: ContractInfo;
ContractInstantiateResult: ContractInstantiateResult;
ContractInstantiateResultTo267: ContractInstantiateResultTo267;
ContractInstantiateResultTo299: ContractInstantiateResultTo299;
+ ContractInstantiateResultU64: ContractInstantiateResultU64;
ContractLayoutArray: ContractLayoutArray;
ContractLayoutCell: ContractLayoutCell;
ContractLayoutEnum: ContractLayoutEnum;
@@ -1057,6 +1059,8 @@
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
@@ -1611,7 +1611,8 @@
readonly isFungibleDisallowsNesting: boolean;
readonly isSettingPropertiesNotAllowed: boolean;
readonly isSettingAllowanceForAllNotAllowed: boolean;
- readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
+ readonly isFungibleTokensAreAlwaysValid: boolean;
+ readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
}
/** @name PalletInflationCall */
@@ -2318,7 +2319,12 @@
readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;
readonly approve: bool;
} & Struct;
- 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';
+ readonly isRepairItem: boolean;
+ readonly asRepairItem: {
+ readonly collectionId: u32;
+ readonly itemId: u32;
+ } & Struct;
+ 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' | 'RepairItem';
}
/** @name PalletUniqueError */
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -2280,7 +2280,11 @@
set_allowance_for_all: {
collectionId: 'u32',
operator: 'PalletEvmAccountBasicCrossAccountIdRepr',
- approve: 'bool'
+ approve: 'bool',
+ },
+ repair_item: {
+ collectionId: 'u32',
+ itemId: 'u32'
}
}
},
@@ -3209,7 +3213,7 @@
* Lookup417: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
- _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
+ _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
},
/**
* Lookup418: pallet_refungible::ItemData
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 PalletCommonEvent (89) */1113 interface PalletCommonEvent extends Enum {1114 readonly isCollectionCreated: boolean;1115 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1116 readonly isCollectionDestroyed: boolean;1117 readonly asCollectionDestroyed: u32;1118 readonly isItemCreated: boolean;1119 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1120 readonly isItemDestroyed: boolean;1121 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1122 readonly isTransfer: boolean;1123 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1124 readonly isApproved: boolean;1125 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1126 readonly isApprovedForAll: boolean;1127 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1128 readonly isCollectionPropertySet: boolean;1129 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1130 readonly isCollectionPropertyDeleted: boolean;1131 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1132 readonly isTokenPropertySet: boolean;1133 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1134 readonly isTokenPropertyDeleted: boolean;1135 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1136 readonly isPropertyPermissionSet: boolean;1137 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1138 readonly isAllowListAddressAdded: boolean;1139 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1140 readonly isAllowListAddressRemoved: boolean;1141 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1142 readonly isCollectionAdminAdded: boolean;1143 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1144 readonly isCollectionAdminRemoved: boolean;1145 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1146 readonly isCollectionLimitSet: boolean;1147 readonly asCollectionLimitSet: u32;1148 readonly isCollectionOwnerChanged: boolean;1149 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1150 readonly isCollectionPermissionSet: boolean;1151 readonly asCollectionPermissionSet: u32;1152 readonly isCollectionSponsorSet: boolean;1153 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1154 readonly isSponsorshipConfirmed: boolean;1155 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1156 readonly isCollectionSponsorRemoved: boolean;1157 readonly asCollectionSponsorRemoved: u32;1158 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1159 }11601161 /** @name PalletEvmAccountBasicCrossAccountIdRepr (92) */1162 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1163 readonly isSubstrate: boolean;1164 readonly asSubstrate: AccountId32;1165 readonly isEthereum: boolean;1166 readonly asEthereum: H160;1167 readonly type: 'Substrate' | 'Ethereum';1168 }11691170 /** @name PalletStructureEvent (96) */1171 interface PalletStructureEvent extends Enum {1172 readonly isExecuted: boolean;1173 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1174 readonly type: 'Executed';1175 }11761177 /** @name PalletRmrkCoreEvent (97) */1178 interface PalletRmrkCoreEvent extends Enum {1179 readonly isCollectionCreated: boolean;1180 readonly asCollectionCreated: {1181 readonly issuer: AccountId32;1182 readonly collectionId: u32;1183 } & Struct;1184 readonly isCollectionDestroyed: boolean;1185 readonly asCollectionDestroyed: {1186 readonly issuer: AccountId32;1187 readonly collectionId: u32;1188 } & Struct;1189 readonly isIssuerChanged: boolean;1190 readonly asIssuerChanged: {1191 readonly oldIssuer: AccountId32;1192 readonly newIssuer: AccountId32;1193 readonly collectionId: u32;1194 } & Struct;1195 readonly isCollectionLocked: boolean;1196 readonly asCollectionLocked: {1197 readonly issuer: AccountId32;1198 readonly collectionId: u32;1199 } & Struct;1200 readonly isNftMinted: boolean;1201 readonly asNftMinted: {1202 readonly owner: AccountId32;1203 readonly collectionId: u32;1204 readonly nftId: u32;1205 } & Struct;1206 readonly isNftBurned: boolean;1207 readonly asNftBurned: {1208 readonly owner: AccountId32;1209 readonly nftId: u32;1210 } & Struct;1211 readonly isNftSent: boolean;1212 readonly asNftSent: {1213 readonly sender: AccountId32;1214 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1215 readonly collectionId: u32;1216 readonly nftId: u32;1217 readonly approvalRequired: bool;1218 } & Struct;1219 readonly isNftAccepted: boolean;1220 readonly asNftAccepted: {1221 readonly sender: AccountId32;1222 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1223 readonly collectionId: u32;1224 readonly nftId: u32;1225 } & Struct;1226 readonly isNftRejected: boolean;1227 readonly asNftRejected: {1228 readonly sender: AccountId32;1229 readonly collectionId: u32;1230 readonly nftId: u32;1231 } & Struct;1232 readonly isPropertySet: boolean;1233 readonly asPropertySet: {1234 readonly collectionId: u32;1235 readonly maybeNftId: Option<u32>;1236 readonly key: Bytes;1237 readonly value: Bytes;1238 } & Struct;1239 readonly isResourceAdded: boolean;1240 readonly asResourceAdded: {1241 readonly nftId: u32;1242 readonly resourceId: u32;1243 } & Struct;1244 readonly isResourceRemoval: boolean;1245 readonly asResourceRemoval: {1246 readonly nftId: u32;1247 readonly resourceId: u32;1248 } & Struct;1249 readonly isResourceAccepted: boolean;1250 readonly asResourceAccepted: {1251 readonly nftId: u32;1252 readonly resourceId: u32;1253 } & Struct;1254 readonly isResourceRemovalAccepted: boolean;1255 readonly asResourceRemovalAccepted: {1256 readonly nftId: u32;1257 readonly resourceId: u32;1258 } & Struct;1259 readonly isPrioritySet: boolean;1260 readonly asPrioritySet: {1261 readonly collectionId: u32;1262 readonly nftId: u32;1263 } & Struct;1264 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1265 }12661267 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */1268 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1269 readonly isAccountId: boolean;1270 readonly asAccountId: AccountId32;1271 readonly isCollectionAndNftTuple: boolean;1272 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1273 readonly type: 'AccountId' | 'CollectionAndNftTuple';1274 }12751276 /** @name PalletRmrkEquipEvent (102) */1277 interface PalletRmrkEquipEvent extends Enum {1278 readonly isBaseCreated: boolean;1279 readonly asBaseCreated: {1280 readonly issuer: AccountId32;1281 readonly baseId: u32;1282 } & Struct;1283 readonly isEquippablesUpdated: boolean;1284 readonly asEquippablesUpdated: {1285 readonly baseId: u32;1286 readonly slotId: u32;1287 } & Struct;1288 readonly type: 'BaseCreated' | 'EquippablesUpdated';1289 }12901291 /** @name PalletAppPromotionEvent (103) */1292 interface PalletAppPromotionEvent extends Enum {1293 readonly isStakingRecalculation: boolean;1294 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1295 readonly isStake: boolean;1296 readonly asStake: ITuple<[AccountId32, u128]>;1297 readonly isUnstake: boolean;1298 readonly asUnstake: ITuple<[AccountId32, u128]>;1299 readonly isSetAdmin: boolean;1300 readonly asSetAdmin: AccountId32;1301 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1302 }13031304 /** @name PalletForeignAssetsModuleEvent (104) */1305 interface PalletForeignAssetsModuleEvent extends Enum {1306 readonly isForeignAssetRegistered: boolean;1307 readonly asForeignAssetRegistered: {1308 readonly assetId: u32;1309 readonly assetAddress: XcmV1MultiLocation;1310 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1311 } & Struct;1312 readonly isForeignAssetUpdated: boolean;1313 readonly asForeignAssetUpdated: {1314 readonly assetId: u32;1315 readonly assetAddress: XcmV1MultiLocation;1316 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1317 } & Struct;1318 readonly isAssetRegistered: boolean;1319 readonly asAssetRegistered: {1320 readonly assetId: PalletForeignAssetsAssetIds;1321 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1322 } & Struct;1323 readonly isAssetUpdated: boolean;1324 readonly asAssetUpdated: {1325 readonly assetId: PalletForeignAssetsAssetIds;1326 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1327 } & Struct;1328 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1329 }13301331 /** @name PalletForeignAssetsModuleAssetMetadata (105) */1332 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1333 readonly name: Bytes;1334 readonly symbol: Bytes;1335 readonly decimals: u8;1336 readonly minimalBalance: u128;1337 }13381339 /** @name PalletEvmEvent (106) */1340 interface PalletEvmEvent extends Enum {1341 readonly isLog: boolean;1342 readonly asLog: {1343 readonly log: EthereumLog;1344 } & Struct;1345 readonly isCreated: boolean;1346 readonly asCreated: {1347 readonly address: H160;1348 } & Struct;1349 readonly isCreatedFailed: boolean;1350 readonly asCreatedFailed: {1351 readonly address: H160;1352 } & Struct;1353 readonly isExecuted: boolean;1354 readonly asExecuted: {1355 readonly address: H160;1356 } & Struct;1357 readonly isExecutedFailed: boolean;1358 readonly asExecutedFailed: {1359 readonly address: H160;1360 } & Struct;1361 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1362 }13631364 /** @name EthereumLog (107) */1365 interface EthereumLog extends Struct {1366 readonly address: H160;1367 readonly topics: Vec<H256>;1368 readonly data: Bytes;1369 }13701371 /** @name PalletEthereumEvent (109) */1372 interface PalletEthereumEvent extends Enum {1373 readonly isExecuted: boolean;1374 readonly asExecuted: {1375 readonly from: H160;1376 readonly to: H160;1377 readonly transactionHash: H256;1378 readonly exitReason: EvmCoreErrorExitReason;1379 } & Struct;1380 readonly type: 'Executed';1381 }13821383 /** @name EvmCoreErrorExitReason (110) */1384 interface EvmCoreErrorExitReason extends Enum {1385 readonly isSucceed: boolean;1386 readonly asSucceed: EvmCoreErrorExitSucceed;1387 readonly isError: boolean;1388 readonly asError: EvmCoreErrorExitError;1389 readonly isRevert: boolean;1390 readonly asRevert: EvmCoreErrorExitRevert;1391 readonly isFatal: boolean;1392 readonly asFatal: EvmCoreErrorExitFatal;1393 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1394 }13951396 /** @name EvmCoreErrorExitSucceed (111) */1397 interface EvmCoreErrorExitSucceed extends Enum {1398 readonly isStopped: boolean;1399 readonly isReturned: boolean;1400 readonly isSuicided: boolean;1401 readonly type: 'Stopped' | 'Returned' | 'Suicided';1402 }14031404 /** @name EvmCoreErrorExitError (112) */1405 interface EvmCoreErrorExitError extends Enum {1406 readonly isStackUnderflow: boolean;1407 readonly isStackOverflow: boolean;1408 readonly isInvalidJump: boolean;1409 readonly isInvalidRange: boolean;1410 readonly isDesignatedInvalid: boolean;1411 readonly isCallTooDeep: boolean;1412 readonly isCreateCollision: boolean;1413 readonly isCreateContractLimit: boolean;1414 readonly isOutOfOffset: boolean;1415 readonly isOutOfGas: boolean;1416 readonly isOutOfFund: boolean;1417 readonly isPcUnderflow: boolean;1418 readonly isCreateEmpty: boolean;1419 readonly isOther: boolean;1420 readonly asOther: Text;1421 readonly isInvalidCode: boolean;1422 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1423 }14241425 /** @name EvmCoreErrorExitRevert (115) */1426 interface EvmCoreErrorExitRevert extends Enum {1427 readonly isReverted: boolean;1428 readonly type: 'Reverted';1429 }14301431 /** @name EvmCoreErrorExitFatal (116) */1432 interface EvmCoreErrorExitFatal extends Enum {1433 readonly isNotSupported: boolean;1434 readonly isUnhandledInterrupt: boolean;1435 readonly isCallErrorAsFatal: boolean;1436 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1437 readonly isOther: boolean;1438 readonly asOther: Text;1439 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1440 }14411442 /** @name PalletEvmContractHelpersEvent (117) */1443 interface PalletEvmContractHelpersEvent extends Enum {1444 readonly isContractSponsorSet: boolean;1445 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1446 readonly isContractSponsorshipConfirmed: boolean;1447 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1448 readonly isContractSponsorRemoved: boolean;1449 readonly asContractSponsorRemoved: H160;1450 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1451 }14521453 /** @name PalletEvmMigrationEvent (118) */1454 interface PalletEvmMigrationEvent extends Enum {1455 readonly isTestEvent: boolean;1456 readonly type: 'TestEvent';1457 }14581459 /** @name PalletMaintenanceEvent (119) */1460 interface PalletMaintenanceEvent extends Enum {1461 readonly isMaintenanceEnabled: boolean;1462 readonly isMaintenanceDisabled: boolean;1463 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1464 }14651466 /** @name PalletTestUtilsEvent (120) */1467 interface PalletTestUtilsEvent extends Enum {1468 readonly isValueIsSet: boolean;1469 readonly isShouldRollback: boolean;1470 readonly isBatchCompleted: boolean;1471 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1472 }14731474 /** @name FrameSystemPhase (121) */1475 interface FrameSystemPhase extends Enum {1476 readonly isApplyExtrinsic: boolean;1477 readonly asApplyExtrinsic: u32;1478 readonly isFinalization: boolean;1479 readonly isInitialization: boolean;1480 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1481 }14821483 /** @name FrameSystemLastRuntimeUpgradeInfo (124) */1484 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1485 readonly specVersion: Compact<u32>;1486 readonly specName: Text;1487 }14881489 /** @name FrameSystemCall (125) */1490 interface FrameSystemCall extends Enum {1491 readonly isFillBlock: boolean;1492 readonly asFillBlock: {1493 readonly ratio: Perbill;1494 } & Struct;1495 readonly isRemark: boolean;1496 readonly asRemark: {1497 readonly remark: Bytes;1498 } & Struct;1499 readonly isSetHeapPages: boolean;1500 readonly asSetHeapPages: {1501 readonly pages: u64;1502 } & Struct;1503 readonly isSetCode: boolean;1504 readonly asSetCode: {1505 readonly code: Bytes;1506 } & Struct;1507 readonly isSetCodeWithoutChecks: boolean;1508 readonly asSetCodeWithoutChecks: {1509 readonly code: Bytes;1510 } & Struct;1511 readonly isSetStorage: boolean;1512 readonly asSetStorage: {1513 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1514 } & Struct;1515 readonly isKillStorage: boolean;1516 readonly asKillStorage: {1517 readonly keys_: Vec<Bytes>;1518 } & Struct;1519 readonly isKillPrefix: boolean;1520 readonly asKillPrefix: {1521 readonly prefix: Bytes;1522 readonly subkeys: u32;1523 } & Struct;1524 readonly isRemarkWithEvent: boolean;1525 readonly asRemarkWithEvent: {1526 readonly remark: Bytes;1527 } & Struct;1528 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1529 }15301531 /** @name FrameSystemLimitsBlockWeights (130) */1532 interface FrameSystemLimitsBlockWeights extends Struct {1533 readonly baseBlock: SpWeightsWeightV2Weight;1534 readonly maxBlock: SpWeightsWeightV2Weight;1535 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1536 }15371538 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */1539 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1540 readonly normal: FrameSystemLimitsWeightsPerClass;1541 readonly operational: FrameSystemLimitsWeightsPerClass;1542 readonly mandatory: FrameSystemLimitsWeightsPerClass;1543 }15441545 /** @name FrameSystemLimitsWeightsPerClass (132) */1546 interface FrameSystemLimitsWeightsPerClass extends Struct {1547 readonly baseExtrinsic: SpWeightsWeightV2Weight;1548 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1549 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1550 readonly reserved: Option<SpWeightsWeightV2Weight>;1551 }15521553 /** @name FrameSystemLimitsBlockLength (134) */1554 interface FrameSystemLimitsBlockLength extends Struct {1555 readonly max: FrameSupportDispatchPerDispatchClassU32;1556 }15571558 /** @name FrameSupportDispatchPerDispatchClassU32 (135) */1559 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1560 readonly normal: u32;1561 readonly operational: u32;1562 readonly mandatory: u32;1563 }15641565 /** @name SpWeightsRuntimeDbWeight (136) */1566 interface SpWeightsRuntimeDbWeight extends Struct {1567 readonly read: u64;1568 readonly write: u64;1569 }15701571 /** @name SpVersionRuntimeVersion (137) */1572 interface SpVersionRuntimeVersion extends Struct {1573 readonly specName: Text;1574 readonly implName: Text;1575 readonly authoringVersion: u32;1576 readonly specVersion: u32;1577 readonly implVersion: u32;1578 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1579 readonly transactionVersion: u32;1580 readonly stateVersion: u8;1581 }15821583 /** @name FrameSystemError (142) */1584 interface FrameSystemError extends Enum {1585 readonly isInvalidSpecName: boolean;1586 readonly isSpecVersionNeedsToIncrease: boolean;1587 readonly isFailedToExtractRuntimeVersion: boolean;1588 readonly isNonDefaultComposite: boolean;1589 readonly isNonZeroRefCount: boolean;1590 readonly isCallFiltered: boolean;1591 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1592 }15931594 /** @name PolkadotPrimitivesV2PersistedValidationData (143) */1595 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1596 readonly parentHead: Bytes;1597 readonly relayParentNumber: u32;1598 readonly relayParentStorageRoot: H256;1599 readonly maxPovSize: u32;1600 }16011602 /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */1603 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1604 readonly isPresent: boolean;1605 readonly type: 'Present';1606 }16071608 /** @name SpTrieStorageProof (147) */1609 interface SpTrieStorageProof extends Struct {1610 readonly trieNodes: BTreeSet<Bytes>;1611 }16121613 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */1614 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1615 readonly dmqMqcHead: H256;1616 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1617 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1618 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1619 }16201621 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */1622 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1623 readonly maxCapacity: u32;1624 readonly maxTotalSize: u32;1625 readonly maxMessageSize: u32;1626 readonly msgCount: u32;1627 readonly totalSize: u32;1628 readonly mqcHead: Option<H256>;1629 }16301631 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */1632 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1633 readonly maxCodeSize: u32;1634 readonly maxHeadDataSize: u32;1635 readonly maxUpwardQueueCount: u32;1636 readonly maxUpwardQueueSize: u32;1637 readonly maxUpwardMessageSize: u32;1638 readonly maxUpwardMessageNumPerCandidate: u32;1639 readonly hrmpMaxMessageNumPerCandidate: u32;1640 readonly validationUpgradeCooldown: u32;1641 readonly validationUpgradeDelay: u32;1642 }16431644 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */1645 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1646 readonly recipient: u32;1647 readonly data: Bytes;1648 }16491650 /** @name CumulusPalletParachainSystemCall (160) */1651 interface CumulusPalletParachainSystemCall extends Enum {1652 readonly isSetValidationData: boolean;1653 readonly asSetValidationData: {1654 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1655 } & Struct;1656 readonly isSudoSendUpwardMessage: boolean;1657 readonly asSudoSendUpwardMessage: {1658 readonly message: Bytes;1659 } & Struct;1660 readonly isAuthorizeUpgrade: boolean;1661 readonly asAuthorizeUpgrade: {1662 readonly codeHash: H256;1663 } & Struct;1664 readonly isEnactAuthorizedUpgrade: boolean;1665 readonly asEnactAuthorizedUpgrade: {1666 readonly code: Bytes;1667 } & Struct;1668 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1669 }16701671 /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */1672 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1673 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1674 readonly relayChainState: SpTrieStorageProof;1675 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1676 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1677 }16781679 /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */1680 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1681 readonly sentAt: u32;1682 readonly msg: Bytes;1683 }16841685 /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */1686 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1687 readonly sentAt: u32;1688 readonly data: Bytes;1689 }16901691 /** @name CumulusPalletParachainSystemError (169) */1692 interface CumulusPalletParachainSystemError extends Enum {1693 readonly isOverlappingUpgrades: boolean;1694 readonly isProhibitedByPolkadot: boolean;1695 readonly isTooBig: boolean;1696 readonly isValidationDataNotAvailable: boolean;1697 readonly isHostConfigurationNotAvailable: boolean;1698 readonly isNotScheduled: boolean;1699 readonly isNothingAuthorized: boolean;1700 readonly isUnauthorized: boolean;1701 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1702 }17031704 /** @name PalletBalancesBalanceLock (171) */1705 interface PalletBalancesBalanceLock extends Struct {1706 readonly id: U8aFixed;1707 readonly amount: u128;1708 readonly reasons: PalletBalancesReasons;1709 }17101711 /** @name PalletBalancesReasons (172) */1712 interface PalletBalancesReasons extends Enum {1713 readonly isFee: boolean;1714 readonly isMisc: boolean;1715 readonly isAll: boolean;1716 readonly type: 'Fee' | 'Misc' | 'All';1717 }17181719 /** @name PalletBalancesReserveData (175) */1720 interface PalletBalancesReserveData extends Struct {1721 readonly id: U8aFixed;1722 readonly amount: u128;1723 }17241725 /** @name PalletBalancesReleases (177) */1726 interface PalletBalancesReleases extends Enum {1727 readonly isV100: boolean;1728 readonly isV200: boolean;1729 readonly type: 'V100' | 'V200';1730 }17311732 /** @name PalletBalancesCall (178) */1733 interface PalletBalancesCall extends Enum {1734 readonly isTransfer: boolean;1735 readonly asTransfer: {1736 readonly dest: MultiAddress;1737 readonly value: Compact<u128>;1738 } & Struct;1739 readonly isSetBalance: boolean;1740 readonly asSetBalance: {1741 readonly who: MultiAddress;1742 readonly newFree: Compact<u128>;1743 readonly newReserved: Compact<u128>;1744 } & Struct;1745 readonly isForceTransfer: boolean;1746 readonly asForceTransfer: {1747 readonly source: MultiAddress;1748 readonly dest: MultiAddress;1749 readonly value: Compact<u128>;1750 } & Struct;1751 readonly isTransferKeepAlive: boolean;1752 readonly asTransferKeepAlive: {1753 readonly dest: MultiAddress;1754 readonly value: Compact<u128>;1755 } & Struct;1756 readonly isTransferAll: boolean;1757 readonly asTransferAll: {1758 readonly dest: MultiAddress;1759 readonly keepAlive: bool;1760 } & Struct;1761 readonly isForceUnreserve: boolean;1762 readonly asForceUnreserve: {1763 readonly who: MultiAddress;1764 readonly amount: u128;1765 } & Struct;1766 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1767 }17681769 /** @name PalletBalancesError (181) */1770 interface PalletBalancesError extends Enum {1771 readonly isVestingBalance: boolean;1772 readonly isLiquidityRestrictions: boolean;1773 readonly isInsufficientBalance: boolean;1774 readonly isExistentialDeposit: boolean;1775 readonly isKeepAlive: boolean;1776 readonly isExistingVestingSchedule: boolean;1777 readonly isDeadAccount: boolean;1778 readonly isTooManyReserves: boolean;1779 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1780 }17811782 /** @name PalletTimestampCall (183) */1783 interface PalletTimestampCall extends Enum {1784 readonly isSet: boolean;1785 readonly asSet: {1786 readonly now: Compact<u64>;1787 } & Struct;1788 readonly type: 'Set';1789 }17901791 /** @name PalletTransactionPaymentReleases (185) */1792 interface PalletTransactionPaymentReleases extends Enum {1793 readonly isV1Ancient: boolean;1794 readonly isV2: boolean;1795 readonly type: 'V1Ancient' | 'V2';1796 }17971798 /** @name PalletTreasuryProposal (186) */1799 interface PalletTreasuryProposal extends Struct {1800 readonly proposer: AccountId32;1801 readonly value: u128;1802 readonly beneficiary: AccountId32;1803 readonly bond: u128;1804 }18051806 /** @name PalletTreasuryCall (189) */1807 interface PalletTreasuryCall extends Enum {1808 readonly isProposeSpend: boolean;1809 readonly asProposeSpend: {1810 readonly value: Compact<u128>;1811 readonly beneficiary: MultiAddress;1812 } & Struct;1813 readonly isRejectProposal: boolean;1814 readonly asRejectProposal: {1815 readonly proposalId: Compact<u32>;1816 } & Struct;1817 readonly isApproveProposal: boolean;1818 readonly asApproveProposal: {1819 readonly proposalId: Compact<u32>;1820 } & Struct;1821 readonly isSpend: boolean;1822 readonly asSpend: {1823 readonly amount: Compact<u128>;1824 readonly beneficiary: MultiAddress;1825 } & Struct;1826 readonly isRemoveApproval: boolean;1827 readonly asRemoveApproval: {1828 readonly proposalId: Compact<u32>;1829 } & Struct;1830 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1831 }18321833 /** @name FrameSupportPalletId (192) */1834 interface FrameSupportPalletId extends U8aFixed {}18351836 /** @name PalletTreasuryError (193) */1837 interface PalletTreasuryError extends Enum {1838 readonly isInsufficientProposersBalance: boolean;1839 readonly isInvalidIndex: boolean;1840 readonly isTooManyApprovals: boolean;1841 readonly isInsufficientPermission: boolean;1842 readonly isProposalNotApproved: boolean;1843 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1844 }18451846 /** @name PalletSudoCall (194) */1847 interface PalletSudoCall extends Enum {1848 readonly isSudo: boolean;1849 readonly asSudo: {1850 readonly call: Call;1851 } & Struct;1852 readonly isSudoUncheckedWeight: boolean;1853 readonly asSudoUncheckedWeight: {1854 readonly call: Call;1855 readonly weight: SpWeightsWeightV2Weight;1856 } & Struct;1857 readonly isSetKey: boolean;1858 readonly asSetKey: {1859 readonly new_: MultiAddress;1860 } & Struct;1861 readonly isSudoAs: boolean;1862 readonly asSudoAs: {1863 readonly who: MultiAddress;1864 readonly call: Call;1865 } & Struct;1866 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1867 }18681869 /** @name OrmlVestingModuleCall (196) */1870 interface OrmlVestingModuleCall extends Enum {1871 readonly isClaim: boolean;1872 readonly isVestedTransfer: boolean;1873 readonly asVestedTransfer: {1874 readonly dest: MultiAddress;1875 readonly schedule: OrmlVestingVestingSchedule;1876 } & Struct;1877 readonly isUpdateVestingSchedules: boolean;1878 readonly asUpdateVestingSchedules: {1879 readonly who: MultiAddress;1880 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1881 } & Struct;1882 readonly isClaimFor: boolean;1883 readonly asClaimFor: {1884 readonly dest: MultiAddress;1885 } & Struct;1886 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1887 }18881889 /** @name OrmlXtokensModuleCall (198) */1890 interface OrmlXtokensModuleCall extends Enum {1891 readonly isTransfer: boolean;1892 readonly asTransfer: {1893 readonly currencyId: PalletForeignAssetsAssetIds;1894 readonly amount: u128;1895 readonly dest: XcmVersionedMultiLocation;1896 readonly destWeightLimit: XcmV2WeightLimit;1897 } & Struct;1898 readonly isTransferMultiasset: boolean;1899 readonly asTransferMultiasset: {1900 readonly asset: XcmVersionedMultiAsset;1901 readonly dest: XcmVersionedMultiLocation;1902 readonly destWeightLimit: XcmV2WeightLimit;1903 } & Struct;1904 readonly isTransferWithFee: boolean;1905 readonly asTransferWithFee: {1906 readonly currencyId: PalletForeignAssetsAssetIds;1907 readonly amount: u128;1908 readonly fee: u128;1909 readonly dest: XcmVersionedMultiLocation;1910 readonly destWeightLimit: XcmV2WeightLimit;1911 } & Struct;1912 readonly isTransferMultiassetWithFee: boolean;1913 readonly asTransferMultiassetWithFee: {1914 readonly asset: XcmVersionedMultiAsset;1915 readonly fee: XcmVersionedMultiAsset;1916 readonly dest: XcmVersionedMultiLocation;1917 readonly destWeightLimit: XcmV2WeightLimit;1918 } & Struct;1919 readonly isTransferMulticurrencies: boolean;1920 readonly asTransferMulticurrencies: {1921 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1922 readonly feeItem: u32;1923 readonly dest: XcmVersionedMultiLocation;1924 readonly destWeightLimit: XcmV2WeightLimit;1925 } & Struct;1926 readonly isTransferMultiassets: boolean;1927 readonly asTransferMultiassets: {1928 readonly assets: XcmVersionedMultiAssets;1929 readonly feeItem: u32;1930 readonly dest: XcmVersionedMultiLocation;1931 readonly destWeightLimit: XcmV2WeightLimit;1932 } & Struct;1933 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1934 }19351936 /** @name XcmVersionedMultiAsset (199) */1937 interface XcmVersionedMultiAsset extends Enum {1938 readonly isV0: boolean;1939 readonly asV0: XcmV0MultiAsset;1940 readonly isV1: boolean;1941 readonly asV1: XcmV1MultiAsset;1942 readonly type: 'V0' | 'V1';1943 }19441945 /** @name OrmlTokensModuleCall (202) */1946 interface OrmlTokensModuleCall extends Enum {1947 readonly isTransfer: boolean;1948 readonly asTransfer: {1949 readonly dest: MultiAddress;1950 readonly currencyId: PalletForeignAssetsAssetIds;1951 readonly amount: Compact<u128>;1952 } & Struct;1953 readonly isTransferAll: boolean;1954 readonly asTransferAll: {1955 readonly dest: MultiAddress;1956 readonly currencyId: PalletForeignAssetsAssetIds;1957 readonly keepAlive: bool;1958 } & Struct;1959 readonly isTransferKeepAlive: boolean;1960 readonly asTransferKeepAlive: {1961 readonly dest: MultiAddress;1962 readonly currencyId: PalletForeignAssetsAssetIds;1963 readonly amount: Compact<u128>;1964 } & Struct;1965 readonly isForceTransfer: boolean;1966 readonly asForceTransfer: {1967 readonly source: MultiAddress;1968 readonly dest: MultiAddress;1969 readonly currencyId: PalletForeignAssetsAssetIds;1970 readonly amount: Compact<u128>;1971 } & Struct;1972 readonly isSetBalance: boolean;1973 readonly asSetBalance: {1974 readonly who: MultiAddress;1975 readonly currencyId: PalletForeignAssetsAssetIds;1976 readonly newFree: Compact<u128>;1977 readonly newReserved: Compact<u128>;1978 } & Struct;1979 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1980 }19811982 /** @name CumulusPalletXcmpQueueCall (203) */1983 interface CumulusPalletXcmpQueueCall extends Enum {1984 readonly isServiceOverweight: boolean;1985 readonly asServiceOverweight: {1986 readonly index: u64;1987 readonly weightLimit: u64;1988 } & Struct;1989 readonly isSuspendXcmExecution: boolean;1990 readonly isResumeXcmExecution: boolean;1991 readonly isUpdateSuspendThreshold: boolean;1992 readonly asUpdateSuspendThreshold: {1993 readonly new_: u32;1994 } & Struct;1995 readonly isUpdateDropThreshold: boolean;1996 readonly asUpdateDropThreshold: {1997 readonly new_: u32;1998 } & Struct;1999 readonly isUpdateResumeThreshold: boolean;2000 readonly asUpdateResumeThreshold: {2001 readonly new_: u32;2002 } & Struct;2003 readonly isUpdateThresholdWeight: boolean;2004 readonly asUpdateThresholdWeight: {2005 readonly new_: u64;2006 } & Struct;2007 readonly isUpdateWeightRestrictDecay: boolean;2008 readonly asUpdateWeightRestrictDecay: {2009 readonly new_: u64;2010 } & Struct;2011 readonly isUpdateXcmpMaxIndividualWeight: boolean;2012 readonly asUpdateXcmpMaxIndividualWeight: {2013 readonly new_: u64;2014 } & Struct;2015 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2016 }20172018 /** @name PalletXcmCall (204) */2019 interface PalletXcmCall extends Enum {2020 readonly isSend: boolean;2021 readonly asSend: {2022 readonly dest: XcmVersionedMultiLocation;2023 readonly message: XcmVersionedXcm;2024 } & Struct;2025 readonly isTeleportAssets: boolean;2026 readonly asTeleportAssets: {2027 readonly dest: XcmVersionedMultiLocation;2028 readonly beneficiary: XcmVersionedMultiLocation;2029 readonly assets: XcmVersionedMultiAssets;2030 readonly feeAssetItem: u32;2031 } & Struct;2032 readonly isReserveTransferAssets: boolean;2033 readonly asReserveTransferAssets: {2034 readonly dest: XcmVersionedMultiLocation;2035 readonly beneficiary: XcmVersionedMultiLocation;2036 readonly assets: XcmVersionedMultiAssets;2037 readonly feeAssetItem: u32;2038 } & Struct;2039 readonly isExecute: boolean;2040 readonly asExecute: {2041 readonly message: XcmVersionedXcm;2042 readonly maxWeight: u64;2043 } & Struct;2044 readonly isForceXcmVersion: boolean;2045 readonly asForceXcmVersion: {2046 readonly location: XcmV1MultiLocation;2047 readonly xcmVersion: u32;2048 } & Struct;2049 readonly isForceDefaultXcmVersion: boolean;2050 readonly asForceDefaultXcmVersion: {2051 readonly maybeXcmVersion: Option<u32>;2052 } & Struct;2053 readonly isForceSubscribeVersionNotify: boolean;2054 readonly asForceSubscribeVersionNotify: {2055 readonly location: XcmVersionedMultiLocation;2056 } & Struct;2057 readonly isForceUnsubscribeVersionNotify: boolean;2058 readonly asForceUnsubscribeVersionNotify: {2059 readonly location: XcmVersionedMultiLocation;2060 } & Struct;2061 readonly isLimitedReserveTransferAssets: boolean;2062 readonly asLimitedReserveTransferAssets: {2063 readonly dest: XcmVersionedMultiLocation;2064 readonly beneficiary: XcmVersionedMultiLocation;2065 readonly assets: XcmVersionedMultiAssets;2066 readonly feeAssetItem: u32;2067 readonly weightLimit: XcmV2WeightLimit;2068 } & Struct;2069 readonly isLimitedTeleportAssets: boolean;2070 readonly asLimitedTeleportAssets: {2071 readonly dest: XcmVersionedMultiLocation;2072 readonly beneficiary: XcmVersionedMultiLocation;2073 readonly assets: XcmVersionedMultiAssets;2074 readonly feeAssetItem: u32;2075 readonly weightLimit: XcmV2WeightLimit;2076 } & Struct;2077 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2078 }20792080 /** @name XcmVersionedXcm (205) */2081 interface XcmVersionedXcm extends Enum {2082 readonly isV0: boolean;2083 readonly asV0: XcmV0Xcm;2084 readonly isV1: boolean;2085 readonly asV1: XcmV1Xcm;2086 readonly isV2: boolean;2087 readonly asV2: XcmV2Xcm;2088 readonly type: 'V0' | 'V1' | 'V2';2089 }20902091 /** @name XcmV0Xcm (206) */2092 interface XcmV0Xcm extends Enum {2093 readonly isWithdrawAsset: boolean;2094 readonly asWithdrawAsset: {2095 readonly assets: Vec<XcmV0MultiAsset>;2096 readonly effects: Vec<XcmV0Order>;2097 } & Struct;2098 readonly isReserveAssetDeposit: boolean;2099 readonly asReserveAssetDeposit: {2100 readonly assets: Vec<XcmV0MultiAsset>;2101 readonly effects: Vec<XcmV0Order>;2102 } & Struct;2103 readonly isTeleportAsset: boolean;2104 readonly asTeleportAsset: {2105 readonly assets: Vec<XcmV0MultiAsset>;2106 readonly effects: Vec<XcmV0Order>;2107 } & Struct;2108 readonly isQueryResponse: boolean;2109 readonly asQueryResponse: {2110 readonly queryId: Compact<u64>;2111 readonly response: XcmV0Response;2112 } & Struct;2113 readonly isTransferAsset: boolean;2114 readonly asTransferAsset: {2115 readonly assets: Vec<XcmV0MultiAsset>;2116 readonly dest: XcmV0MultiLocation;2117 } & Struct;2118 readonly isTransferReserveAsset: boolean;2119 readonly asTransferReserveAsset: {2120 readonly assets: Vec<XcmV0MultiAsset>;2121 readonly dest: XcmV0MultiLocation;2122 readonly effects: Vec<XcmV0Order>;2123 } & Struct;2124 readonly isTransact: boolean;2125 readonly asTransact: {2126 readonly originType: XcmV0OriginKind;2127 readonly requireWeightAtMost: u64;2128 readonly call: XcmDoubleEncoded;2129 } & Struct;2130 readonly isHrmpNewChannelOpenRequest: boolean;2131 readonly asHrmpNewChannelOpenRequest: {2132 readonly sender: Compact<u32>;2133 readonly maxMessageSize: Compact<u32>;2134 readonly maxCapacity: Compact<u32>;2135 } & Struct;2136 readonly isHrmpChannelAccepted: boolean;2137 readonly asHrmpChannelAccepted: {2138 readonly recipient: Compact<u32>;2139 } & Struct;2140 readonly isHrmpChannelClosing: boolean;2141 readonly asHrmpChannelClosing: {2142 readonly initiator: Compact<u32>;2143 readonly sender: Compact<u32>;2144 readonly recipient: Compact<u32>;2145 } & Struct;2146 readonly isRelayedFrom: boolean;2147 readonly asRelayedFrom: {2148 readonly who: XcmV0MultiLocation;2149 readonly message: XcmV0Xcm;2150 } & Struct;2151 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2152 }21532154 /** @name XcmV0Order (208) */2155 interface XcmV0Order extends Enum {2156 readonly isNull: boolean;2157 readonly isDepositAsset: boolean;2158 readonly asDepositAsset: {2159 readonly assets: Vec<XcmV0MultiAsset>;2160 readonly dest: XcmV0MultiLocation;2161 } & Struct;2162 readonly isDepositReserveAsset: boolean;2163 readonly asDepositReserveAsset: {2164 readonly assets: Vec<XcmV0MultiAsset>;2165 readonly dest: XcmV0MultiLocation;2166 readonly effects: Vec<XcmV0Order>;2167 } & Struct;2168 readonly isExchangeAsset: boolean;2169 readonly asExchangeAsset: {2170 readonly give: Vec<XcmV0MultiAsset>;2171 readonly receive: Vec<XcmV0MultiAsset>;2172 } & Struct;2173 readonly isInitiateReserveWithdraw: boolean;2174 readonly asInitiateReserveWithdraw: {2175 readonly assets: Vec<XcmV0MultiAsset>;2176 readonly reserve: XcmV0MultiLocation;2177 readonly effects: Vec<XcmV0Order>;2178 } & Struct;2179 readonly isInitiateTeleport: boolean;2180 readonly asInitiateTeleport: {2181 readonly assets: Vec<XcmV0MultiAsset>;2182 readonly dest: XcmV0MultiLocation;2183 readonly effects: Vec<XcmV0Order>;2184 } & Struct;2185 readonly isQueryHolding: boolean;2186 readonly asQueryHolding: {2187 readonly queryId: Compact<u64>;2188 readonly dest: XcmV0MultiLocation;2189 readonly assets: Vec<XcmV0MultiAsset>;2190 } & Struct;2191 readonly isBuyExecution: boolean;2192 readonly asBuyExecution: {2193 readonly fees: XcmV0MultiAsset;2194 readonly weight: u64;2195 readonly debt: u64;2196 readonly haltOnError: bool;2197 readonly xcm: Vec<XcmV0Xcm>;2198 } & Struct;2199 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2200 }22012202 /** @name XcmV0Response (210) */2203 interface XcmV0Response extends Enum {2204 readonly isAssets: boolean;2205 readonly asAssets: Vec<XcmV0MultiAsset>;2206 readonly type: 'Assets';2207 }22082209 /** @name XcmV1Xcm (211) */2210 interface XcmV1Xcm extends Enum {2211 readonly isWithdrawAsset: boolean;2212 readonly asWithdrawAsset: {2213 readonly assets: XcmV1MultiassetMultiAssets;2214 readonly effects: Vec<XcmV1Order>;2215 } & Struct;2216 readonly isReserveAssetDeposited: boolean;2217 readonly asReserveAssetDeposited: {2218 readonly assets: XcmV1MultiassetMultiAssets;2219 readonly effects: Vec<XcmV1Order>;2220 } & Struct;2221 readonly isReceiveTeleportedAsset: boolean;2222 readonly asReceiveTeleportedAsset: {2223 readonly assets: XcmV1MultiassetMultiAssets;2224 readonly effects: Vec<XcmV1Order>;2225 } & Struct;2226 readonly isQueryResponse: boolean;2227 readonly asQueryResponse: {2228 readonly queryId: Compact<u64>;2229 readonly response: XcmV1Response;2230 } & Struct;2231 readonly isTransferAsset: boolean;2232 readonly asTransferAsset: {2233 readonly assets: XcmV1MultiassetMultiAssets;2234 readonly beneficiary: XcmV1MultiLocation;2235 } & Struct;2236 readonly isTransferReserveAsset: boolean;2237 readonly asTransferReserveAsset: {2238 readonly assets: XcmV1MultiassetMultiAssets;2239 readonly dest: XcmV1MultiLocation;2240 readonly effects: Vec<XcmV1Order>;2241 } & Struct;2242 readonly isTransact: boolean;2243 readonly asTransact: {2244 readonly originType: XcmV0OriginKind;2245 readonly requireWeightAtMost: u64;2246 readonly call: XcmDoubleEncoded;2247 } & Struct;2248 readonly isHrmpNewChannelOpenRequest: boolean;2249 readonly asHrmpNewChannelOpenRequest: {2250 readonly sender: Compact<u32>;2251 readonly maxMessageSize: Compact<u32>;2252 readonly maxCapacity: Compact<u32>;2253 } & Struct;2254 readonly isHrmpChannelAccepted: boolean;2255 readonly asHrmpChannelAccepted: {2256 readonly recipient: Compact<u32>;2257 } & Struct;2258 readonly isHrmpChannelClosing: boolean;2259 readonly asHrmpChannelClosing: {2260 readonly initiator: Compact<u32>;2261 readonly sender: Compact<u32>;2262 readonly recipient: Compact<u32>;2263 } & Struct;2264 readonly isRelayedFrom: boolean;2265 readonly asRelayedFrom: {2266 readonly who: XcmV1MultilocationJunctions;2267 readonly message: XcmV1Xcm;2268 } & Struct;2269 readonly isSubscribeVersion: boolean;2270 readonly asSubscribeVersion: {2271 readonly queryId: Compact<u64>;2272 readonly maxResponseWeight: Compact<u64>;2273 } & Struct;2274 readonly isUnsubscribeVersion: boolean;2275 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2276 }22772278 /** @name XcmV1Order (213) */2279 interface XcmV1Order extends Enum {2280 readonly isNoop: boolean;2281 readonly isDepositAsset: boolean;2282 readonly asDepositAsset: {2283 readonly assets: XcmV1MultiassetMultiAssetFilter;2284 readonly maxAssets: u32;2285 readonly beneficiary: XcmV1MultiLocation;2286 } & Struct;2287 readonly isDepositReserveAsset: boolean;2288 readonly asDepositReserveAsset: {2289 readonly assets: XcmV1MultiassetMultiAssetFilter;2290 readonly maxAssets: u32;2291 readonly dest: XcmV1MultiLocation;2292 readonly effects: Vec<XcmV1Order>;2293 } & Struct;2294 readonly isExchangeAsset: boolean;2295 readonly asExchangeAsset: {2296 readonly give: XcmV1MultiassetMultiAssetFilter;2297 readonly receive: XcmV1MultiassetMultiAssets;2298 } & Struct;2299 readonly isInitiateReserveWithdraw: boolean;2300 readonly asInitiateReserveWithdraw: {2301 readonly assets: XcmV1MultiassetMultiAssetFilter;2302 readonly reserve: XcmV1MultiLocation;2303 readonly effects: Vec<XcmV1Order>;2304 } & Struct;2305 readonly isInitiateTeleport: boolean;2306 readonly asInitiateTeleport: {2307 readonly assets: XcmV1MultiassetMultiAssetFilter;2308 readonly dest: XcmV1MultiLocation;2309 readonly effects: Vec<XcmV1Order>;2310 } & Struct;2311 readonly isQueryHolding: boolean;2312 readonly asQueryHolding: {2313 readonly queryId: Compact<u64>;2314 readonly dest: XcmV1MultiLocation;2315 readonly assets: XcmV1MultiassetMultiAssetFilter;2316 } & Struct;2317 readonly isBuyExecution: boolean;2318 readonly asBuyExecution: {2319 readonly fees: XcmV1MultiAsset;2320 readonly weight: u64;2321 readonly debt: u64;2322 readonly haltOnError: bool;2323 readonly instructions: Vec<XcmV1Xcm>;2324 } & Struct;2325 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2326 }23272328 /** @name XcmV1Response (215) */2329 interface XcmV1Response extends Enum {2330 readonly isAssets: boolean;2331 readonly asAssets: XcmV1MultiassetMultiAssets;2332 readonly isVersion: boolean;2333 readonly asVersion: u32;2334 readonly type: 'Assets' | 'Version';2335 }23362337 /** @name CumulusPalletXcmCall (229) */2338 type CumulusPalletXcmCall = Null;23392340 /** @name CumulusPalletDmpQueueCall (230) */2341 interface CumulusPalletDmpQueueCall extends Enum {2342 readonly isServiceOverweight: boolean;2343 readonly asServiceOverweight: {2344 readonly index: u64;2345 readonly weightLimit: u64;2346 } & Struct;2347 readonly type: 'ServiceOverweight';2348 }23492350 /** @name PalletInflationCall (231) */2351 interface PalletInflationCall extends Enum {2352 readonly isStartInflation: boolean;2353 readonly asStartInflation: {2354 readonly inflationStartRelayBlock: u32;2355 } & Struct;2356 readonly type: 'StartInflation';2357 }23582359 /** @name PalletUniqueCall (232) */2360 interface PalletUniqueCall extends Enum {2361 readonly isCreateCollection: boolean;2362 readonly asCreateCollection: {2363 readonly collectionName: Vec<u16>;2364 readonly collectionDescription: Vec<u16>;2365 readonly tokenPrefix: Bytes;2366 readonly mode: UpDataStructsCollectionMode;2367 } & Struct;2368 readonly isCreateCollectionEx: boolean;2369 readonly asCreateCollectionEx: {2370 readonly data: UpDataStructsCreateCollectionData;2371 } & Struct;2372 readonly isDestroyCollection: boolean;2373 readonly asDestroyCollection: {2374 readonly collectionId: u32;2375 } & Struct;2376 readonly isAddToAllowList: boolean;2377 readonly asAddToAllowList: {2378 readonly collectionId: u32;2379 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2380 } & Struct;2381 readonly isRemoveFromAllowList: boolean;2382 readonly asRemoveFromAllowList: {2383 readonly collectionId: u32;2384 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2385 } & Struct;2386 readonly isChangeCollectionOwner: boolean;2387 readonly asChangeCollectionOwner: {2388 readonly collectionId: u32;2389 readonly newOwner: AccountId32;2390 } & Struct;2391 readonly isAddCollectionAdmin: boolean;2392 readonly asAddCollectionAdmin: {2393 readonly collectionId: u32;2394 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2395 } & Struct;2396 readonly isRemoveCollectionAdmin: boolean;2397 readonly asRemoveCollectionAdmin: {2398 readonly collectionId: u32;2399 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2400 } & Struct;2401 readonly isSetCollectionSponsor: boolean;2402 readonly asSetCollectionSponsor: {2403 readonly collectionId: u32;2404 readonly newSponsor: AccountId32;2405 } & Struct;2406 readonly isConfirmSponsorship: boolean;2407 readonly asConfirmSponsorship: {2408 readonly collectionId: u32;2409 } & Struct;2410 readonly isRemoveCollectionSponsor: boolean;2411 readonly asRemoveCollectionSponsor: {2412 readonly collectionId: u32;2413 } & Struct;2414 readonly isCreateItem: boolean;2415 readonly asCreateItem: {2416 readonly collectionId: u32;2417 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2418 readonly data: UpDataStructsCreateItemData;2419 } & Struct;2420 readonly isCreateMultipleItems: boolean;2421 readonly asCreateMultipleItems: {2422 readonly collectionId: u32;2423 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2424 readonly itemsData: Vec<UpDataStructsCreateItemData>;2425 } & Struct;2426 readonly isSetCollectionProperties: boolean;2427 readonly asSetCollectionProperties: {2428 readonly collectionId: u32;2429 readonly properties: Vec<UpDataStructsProperty>;2430 } & Struct;2431 readonly isDeleteCollectionProperties: boolean;2432 readonly asDeleteCollectionProperties: {2433 readonly collectionId: u32;2434 readonly propertyKeys: Vec<Bytes>;2435 } & Struct;2436 readonly isSetTokenProperties: boolean;2437 readonly asSetTokenProperties: {2438 readonly collectionId: u32;2439 readonly tokenId: u32;2440 readonly properties: Vec<UpDataStructsProperty>;2441 } & Struct;2442 readonly isDeleteTokenProperties: boolean;2443 readonly asDeleteTokenProperties: {2444 readonly collectionId: u32;2445 readonly tokenId: u32;2446 readonly propertyKeys: Vec<Bytes>;2447 } & Struct;2448 readonly isSetTokenPropertyPermissions: boolean;2449 readonly asSetTokenPropertyPermissions: {2450 readonly collectionId: u32;2451 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2452 } & Struct;2453 readonly isCreateMultipleItemsEx: boolean;2454 readonly asCreateMultipleItemsEx: {2455 readonly collectionId: u32;2456 readonly data: UpDataStructsCreateItemExData;2457 } & Struct;2458 readonly isSetTransfersEnabledFlag: boolean;2459 readonly asSetTransfersEnabledFlag: {2460 readonly collectionId: u32;2461 readonly value: bool;2462 } & Struct;2463 readonly isBurnItem: boolean;2464 readonly asBurnItem: {2465 readonly collectionId: u32;2466 readonly itemId: u32;2467 readonly value: u128;2468 } & Struct;2469 readonly isBurnFrom: boolean;2470 readonly asBurnFrom: {2471 readonly collectionId: u32;2472 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2473 readonly itemId: u32;2474 readonly value: u128;2475 } & Struct;2476 readonly isTransfer: boolean;2477 readonly asTransfer: {2478 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2479 readonly collectionId: u32;2480 readonly itemId: u32;2481 readonly value: u128;2482 } & Struct;2483 readonly isApprove: boolean;2484 readonly asApprove: {2485 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2486 readonly collectionId: u32;2487 readonly itemId: u32;2488 readonly amount: u128;2489 } & Struct;2490 readonly isTransferFrom: boolean;2491 readonly asTransferFrom: {2492 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2493 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2494 readonly collectionId: u32;2495 readonly itemId: u32;2496 readonly value: u128;2497 } & Struct;2498 readonly isSetCollectionLimits: boolean;2499 readonly asSetCollectionLimits: {2500 readonly collectionId: u32;2501 readonly newLimit: UpDataStructsCollectionLimits;2502 } & Struct;2503 readonly isSetCollectionPermissions: boolean;2504 readonly asSetCollectionPermissions: {2505 readonly collectionId: u32;2506 readonly newPermission: UpDataStructsCollectionPermissions;2507 } & Struct;2508 readonly isRepartition: boolean;2509 readonly asRepartition: {2510 readonly collectionId: u32;2511 readonly tokenId: u32;2512 readonly amount: u128;2513 } & Struct;2514 readonly isSetAllowanceForAll: boolean;2515 readonly asSetAllowanceForAll: {2516 readonly collectionId: u32;2517 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2518 readonly approve: bool;2519 } & Struct;2520 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';2521 }25222523 /** @name UpDataStructsCollectionMode (237) */2524 interface UpDataStructsCollectionMode extends Enum {2525 readonly isNft: boolean;2526 readonly isFungible: boolean;2527 readonly asFungible: u8;2528 readonly isReFungible: boolean;2529 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2530 }25312532 /** @name UpDataStructsCreateCollectionData (238) */2533 interface UpDataStructsCreateCollectionData extends Struct {2534 readonly mode: UpDataStructsCollectionMode;2535 readonly access: Option<UpDataStructsAccessMode>;2536 readonly name: Vec<u16>;2537 readonly description: Vec<u16>;2538 readonly tokenPrefix: Bytes;2539 readonly pendingSponsor: Option<AccountId32>;2540 readonly limits: Option<UpDataStructsCollectionLimits>;2541 readonly permissions: Option<UpDataStructsCollectionPermissions>;2542 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2543 readonly properties: Vec<UpDataStructsProperty>;2544 }25452546 /** @name UpDataStructsAccessMode (240) */2547 interface UpDataStructsAccessMode extends Enum {2548 readonly isNormal: boolean;2549 readonly isAllowList: boolean;2550 readonly type: 'Normal' | 'AllowList';2551 }25522553 /** @name UpDataStructsCollectionLimits (242) */2554 interface UpDataStructsCollectionLimits extends Struct {2555 readonly accountTokenOwnershipLimit: Option<u32>;2556 readonly sponsoredDataSize: Option<u32>;2557 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2558 readonly tokenLimit: Option<u32>;2559 readonly sponsorTransferTimeout: Option<u32>;2560 readonly sponsorApproveTimeout: Option<u32>;2561 readonly ownerCanTransfer: Option<bool>;2562 readonly ownerCanDestroy: Option<bool>;2563 readonly transfersEnabled: Option<bool>;2564 }25652566 /** @name UpDataStructsSponsoringRateLimit (244) */2567 interface UpDataStructsSponsoringRateLimit extends Enum {2568 readonly isSponsoringDisabled: boolean;2569 readonly isBlocks: boolean;2570 readonly asBlocks: u32;2571 readonly type: 'SponsoringDisabled' | 'Blocks';2572 }25732574 /** @name UpDataStructsCollectionPermissions (247) */2575 interface UpDataStructsCollectionPermissions extends Struct {2576 readonly access: Option<UpDataStructsAccessMode>;2577 readonly mintMode: Option<bool>;2578 readonly nesting: Option<UpDataStructsNestingPermissions>;2579 }25802581 /** @name UpDataStructsNestingPermissions (249) */2582 interface UpDataStructsNestingPermissions extends Struct {2583 readonly tokenOwner: bool;2584 readonly collectionAdmin: bool;2585 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2586 }25872588 /** @name UpDataStructsOwnerRestrictedSet (251) */2589 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}25902591 /** @name UpDataStructsPropertyKeyPermission (256) */2592 interface UpDataStructsPropertyKeyPermission extends Struct {2593 readonly key: Bytes;2594 readonly permission: UpDataStructsPropertyPermission;2595 }25962597 /** @name UpDataStructsPropertyPermission (257) */2598 interface UpDataStructsPropertyPermission extends Struct {2599 readonly mutable: bool;2600 readonly collectionAdmin: bool;2601 readonly tokenOwner: bool;2602 }26032604 /** @name UpDataStructsProperty (260) */2605 interface UpDataStructsProperty extends Struct {2606 readonly key: Bytes;2607 readonly value: Bytes;2608 }26092610 /** @name UpDataStructsCreateItemData (263) */2611 interface UpDataStructsCreateItemData extends Enum {2612 readonly isNft: boolean;2613 readonly asNft: UpDataStructsCreateNftData;2614 readonly isFungible: boolean;2615 readonly asFungible: UpDataStructsCreateFungibleData;2616 readonly isReFungible: boolean;2617 readonly asReFungible: UpDataStructsCreateReFungibleData;2618 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2619 }26202621 /** @name UpDataStructsCreateNftData (264) */2622 interface UpDataStructsCreateNftData extends Struct {2623 readonly properties: Vec<UpDataStructsProperty>;2624 }26252626 /** @name UpDataStructsCreateFungibleData (265) */2627 interface UpDataStructsCreateFungibleData extends Struct {2628 readonly value: u128;2629 }26302631 /** @name UpDataStructsCreateReFungibleData (266) */2632 interface UpDataStructsCreateReFungibleData extends Struct {2633 readonly pieces: u128;2634 readonly properties: Vec<UpDataStructsProperty>;2635 }26362637 /** @name UpDataStructsCreateItemExData (269) */2638 interface UpDataStructsCreateItemExData extends Enum {2639 readonly isNft: boolean;2640 readonly asNft: Vec<UpDataStructsCreateNftExData>;2641 readonly isFungible: boolean;2642 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2643 readonly isRefungibleMultipleItems: boolean;2644 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2645 readonly isRefungibleMultipleOwners: boolean;2646 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2647 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2648 }26492650 /** @name UpDataStructsCreateNftExData (271) */2651 interface UpDataStructsCreateNftExData extends Struct {2652 readonly properties: Vec<UpDataStructsProperty>;2653 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2654 }26552656 /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */2657 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2658 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2659 readonly pieces: u128;2660 readonly properties: Vec<UpDataStructsProperty>;2661 }26622663 /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */2664 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2665 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2666 readonly properties: Vec<UpDataStructsProperty>;2667 }26682669 /** @name PalletConfigurationCall (281) */2670 interface PalletConfigurationCall extends Enum {2671 readonly isSetWeightToFeeCoefficientOverride: boolean;2672 readonly asSetWeightToFeeCoefficientOverride: {2673 readonly coeff: Option<u32>;2674 } & Struct;2675 readonly isSetMinGasPriceOverride: boolean;2676 readonly asSetMinGasPriceOverride: {2677 readonly coeff: Option<u64>;2678 } & Struct;2679 readonly isSetXcmAllowedLocations: boolean;2680 readonly asSetXcmAllowedLocations: {2681 readonly locations: Option<Vec<XcmV1MultiLocation>>;2682 } & Struct;2683 readonly isSetAppPromotionConfigurationOverride: boolean;2684 readonly asSetAppPromotionConfigurationOverride: {2685 readonly configuration: PalletConfigurationAppPromotionConfiguration;2686 } & Struct;2687 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';2688 }26892690 /** @name PalletConfigurationAppPromotionConfiguration (286) */2691 interface PalletConfigurationAppPromotionConfiguration extends Struct {2692 readonly recalculationInterval: Option<u32>;2693 readonly pendingInterval: Option<u32>;2694 readonly intervalIncome: Option<Perbill>;2695 readonly maxStakersPerCalculation: Option<u8>;2696 }26972698 /** @name PalletTemplateTransactionPaymentCall (289) */2699 type PalletTemplateTransactionPaymentCall = Null;27002701 /** @name PalletStructureCall (290) */2702 type PalletStructureCall = Null;27032704 /** @name PalletRmrkCoreCall (291) */2705 interface PalletRmrkCoreCall extends Enum {2706 readonly isCreateCollection: boolean;2707 readonly asCreateCollection: {2708 readonly metadata: Bytes;2709 readonly max: Option<u32>;2710 readonly symbol: Bytes;2711 } & Struct;2712 readonly isDestroyCollection: boolean;2713 readonly asDestroyCollection: {2714 readonly collectionId: u32;2715 } & Struct;2716 readonly isChangeCollectionIssuer: boolean;2717 readonly asChangeCollectionIssuer: {2718 readonly collectionId: u32;2719 readonly newIssuer: MultiAddress;2720 } & Struct;2721 readonly isLockCollection: boolean;2722 readonly asLockCollection: {2723 readonly collectionId: u32;2724 } & Struct;2725 readonly isMintNft: boolean;2726 readonly asMintNft: {2727 readonly owner: Option<AccountId32>;2728 readonly collectionId: u32;2729 readonly recipient: Option<AccountId32>;2730 readonly royaltyAmount: Option<Permill>;2731 readonly metadata: Bytes;2732 readonly transferable: bool;2733 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2734 } & Struct;2735 readonly isBurnNft: boolean;2736 readonly asBurnNft: {2737 readonly collectionId: u32;2738 readonly nftId: u32;2739 readonly maxBurns: u32;2740 } & Struct;2741 readonly isSend: boolean;2742 readonly asSend: {2743 readonly rmrkCollectionId: u32;2744 readonly rmrkNftId: u32;2745 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2746 } & Struct;2747 readonly isAcceptNft: boolean;2748 readonly asAcceptNft: {2749 readonly rmrkCollectionId: u32;2750 readonly rmrkNftId: u32;2751 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2752 } & Struct;2753 readonly isRejectNft: boolean;2754 readonly asRejectNft: {2755 readonly rmrkCollectionId: u32;2756 readonly rmrkNftId: u32;2757 } & Struct;2758 readonly isAcceptResource: boolean;2759 readonly asAcceptResource: {2760 readonly rmrkCollectionId: u32;2761 readonly rmrkNftId: u32;2762 readonly resourceId: u32;2763 } & Struct;2764 readonly isAcceptResourceRemoval: boolean;2765 readonly asAcceptResourceRemoval: {2766 readonly rmrkCollectionId: u32;2767 readonly rmrkNftId: u32;2768 readonly resourceId: u32;2769 } & Struct;2770 readonly isSetProperty: boolean;2771 readonly asSetProperty: {2772 readonly rmrkCollectionId: Compact<u32>;2773 readonly maybeNftId: Option<u32>;2774 readonly key: Bytes;2775 readonly value: Bytes;2776 } & Struct;2777 readonly isSetPriority: boolean;2778 readonly asSetPriority: {2779 readonly rmrkCollectionId: u32;2780 readonly rmrkNftId: u32;2781 readonly priorities: Vec<u32>;2782 } & Struct;2783 readonly isAddBasicResource: boolean;2784 readonly asAddBasicResource: {2785 readonly rmrkCollectionId: u32;2786 readonly nftId: u32;2787 readonly resource: RmrkTraitsResourceBasicResource;2788 } & Struct;2789 readonly isAddComposableResource: boolean;2790 readonly asAddComposableResource: {2791 readonly rmrkCollectionId: u32;2792 readonly nftId: u32;2793 readonly resource: RmrkTraitsResourceComposableResource;2794 } & Struct;2795 readonly isAddSlotResource: boolean;2796 readonly asAddSlotResource: {2797 readonly rmrkCollectionId: u32;2798 readonly nftId: u32;2799 readonly resource: RmrkTraitsResourceSlotResource;2800 } & Struct;2801 readonly isRemoveResource: boolean;2802 readonly asRemoveResource: {2803 readonly rmrkCollectionId: u32;2804 readonly nftId: u32;2805 readonly resourceId: u32;2806 } & Struct;2807 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2808 }28092810 /** @name RmrkTraitsResourceResourceTypes (297) */2811 interface RmrkTraitsResourceResourceTypes extends Enum {2812 readonly isBasic: boolean;2813 readonly asBasic: RmrkTraitsResourceBasicResource;2814 readonly isComposable: boolean;2815 readonly asComposable: RmrkTraitsResourceComposableResource;2816 readonly isSlot: boolean;2817 readonly asSlot: RmrkTraitsResourceSlotResource;2818 readonly type: 'Basic' | 'Composable' | 'Slot';2819 }28202821 /** @name RmrkTraitsResourceBasicResource (299) */2822 interface RmrkTraitsResourceBasicResource extends Struct {2823 readonly src: Option<Bytes>;2824 readonly metadata: Option<Bytes>;2825 readonly license: Option<Bytes>;2826 readonly thumb: Option<Bytes>;2827 }28282829 /** @name RmrkTraitsResourceComposableResource (301) */2830 interface RmrkTraitsResourceComposableResource extends Struct {2831 readonly parts: Vec<u32>;2832 readonly base: u32;2833 readonly src: Option<Bytes>;2834 readonly metadata: Option<Bytes>;2835 readonly license: Option<Bytes>;2836 readonly thumb: Option<Bytes>;2837 }28382839 /** @name RmrkTraitsResourceSlotResource (302) */2840 interface RmrkTraitsResourceSlotResource extends Struct {2841 readonly base: u32;2842 readonly src: Option<Bytes>;2843 readonly metadata: Option<Bytes>;2844 readonly slot: u32;2845 readonly license: Option<Bytes>;2846 readonly thumb: Option<Bytes>;2847 }28482849 /** @name PalletRmrkEquipCall (305) */2850 interface PalletRmrkEquipCall extends Enum {2851 readonly isCreateBase: boolean;2852 readonly asCreateBase: {2853 readonly baseType: Bytes;2854 readonly symbol: Bytes;2855 readonly parts: Vec<RmrkTraitsPartPartType>;2856 } & Struct;2857 readonly isThemeAdd: boolean;2858 readonly asThemeAdd: {2859 readonly baseId: u32;2860 readonly theme: RmrkTraitsTheme;2861 } & Struct;2862 readonly isEquippable: boolean;2863 readonly asEquippable: {2864 readonly baseId: u32;2865 readonly slotId: u32;2866 readonly equippables: RmrkTraitsPartEquippableList;2867 } & Struct;2868 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2869 }28702871 /** @name RmrkTraitsPartPartType (308) */2872 interface RmrkTraitsPartPartType extends Enum {2873 readonly isFixedPart: boolean;2874 readonly asFixedPart: RmrkTraitsPartFixedPart;2875 readonly isSlotPart: boolean;2876 readonly asSlotPart: RmrkTraitsPartSlotPart;2877 readonly type: 'FixedPart' | 'SlotPart';2878 }28792880 /** @name RmrkTraitsPartFixedPart (310) */2881 interface RmrkTraitsPartFixedPart extends Struct {2882 readonly id: u32;2883 readonly z: u32;2884 readonly src: Bytes;2885 }28862887 /** @name RmrkTraitsPartSlotPart (311) */2888 interface RmrkTraitsPartSlotPart extends Struct {2889 readonly id: u32;2890 readonly equippable: RmrkTraitsPartEquippableList;2891 readonly src: Bytes;2892 readonly z: u32;2893 }28942895 /** @name RmrkTraitsPartEquippableList (312) */2896 interface RmrkTraitsPartEquippableList extends Enum {2897 readonly isAll: boolean;2898 readonly isEmpty: boolean;2899 readonly isCustom: boolean;2900 readonly asCustom: Vec<u32>;2901 readonly type: 'All' | 'Empty' | 'Custom';2902 }29032904 /** @name RmrkTraitsTheme (314) */2905 interface RmrkTraitsTheme extends Struct {2906 readonly name: Bytes;2907 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2908 readonly inherit: bool;2909 }29102911 /** @name RmrkTraitsThemeThemeProperty (316) */2912 interface RmrkTraitsThemeThemeProperty extends Struct {2913 readonly key: Bytes;2914 readonly value: Bytes;2915 }29162917 /** @name PalletAppPromotionCall (318) */2918 interface PalletAppPromotionCall extends Enum {2919 readonly isSetAdminAddress: boolean;2920 readonly asSetAdminAddress: {2921 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2922 } & Struct;2923 readonly isStake: boolean;2924 readonly asStake: {2925 readonly amount: u128;2926 } & Struct;2927 readonly isUnstake: boolean;2928 readonly isSponsorCollection: boolean;2929 readonly asSponsorCollection: {2930 readonly collectionId: u32;2931 } & Struct;2932 readonly isStopSponsoringCollection: boolean;2933 readonly asStopSponsoringCollection: {2934 readonly collectionId: u32;2935 } & Struct;2936 readonly isSponsorContract: boolean;2937 readonly asSponsorContract: {2938 readonly contractId: H160;2939 } & Struct;2940 readonly isStopSponsoringContract: boolean;2941 readonly asStopSponsoringContract: {2942 readonly contractId: H160;2943 } & Struct;2944 readonly isPayoutStakers: boolean;2945 readonly asPayoutStakers: {2946 readonly stakersNumber: Option<u8>;2947 } & Struct;2948 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2949 }29502951 /** @name PalletForeignAssetsModuleCall (319) */2952 interface PalletForeignAssetsModuleCall extends Enum {2953 readonly isRegisterForeignAsset: boolean;2954 readonly asRegisterForeignAsset: {2955 readonly owner: AccountId32;2956 readonly location: XcmVersionedMultiLocation;2957 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2958 } & Struct;2959 readonly isUpdateForeignAsset: boolean;2960 readonly asUpdateForeignAsset: {2961 readonly foreignAssetId: u32;2962 readonly location: XcmVersionedMultiLocation;2963 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2964 } & Struct;2965 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2966 }29672968 /** @name PalletEvmCall (320) */2969 interface PalletEvmCall extends Enum {2970 readonly isWithdraw: boolean;2971 readonly asWithdraw: {2972 readonly address: H160;2973 readonly value: u128;2974 } & Struct;2975 readonly isCall: boolean;2976 readonly asCall: {2977 readonly source: H160;2978 readonly target: H160;2979 readonly input: Bytes;2980 readonly value: U256;2981 readonly gasLimit: u64;2982 readonly maxFeePerGas: U256;2983 readonly maxPriorityFeePerGas: Option<U256>;2984 readonly nonce: Option<U256>;2985 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2986 } & Struct;2987 readonly isCreate: boolean;2988 readonly asCreate: {2989 readonly source: H160;2990 readonly init: Bytes;2991 readonly value: U256;2992 readonly gasLimit: u64;2993 readonly maxFeePerGas: U256;2994 readonly maxPriorityFeePerGas: Option<U256>;2995 readonly nonce: Option<U256>;2996 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2997 } & Struct;2998 readonly isCreate2: boolean;2999 readonly asCreate2: {3000 readonly source: H160;3001 readonly init: Bytes;3002 readonly salt: H256;3003 readonly value: U256;3004 readonly gasLimit: u64;3005 readonly maxFeePerGas: U256;3006 readonly maxPriorityFeePerGas: Option<U256>;3007 readonly nonce: Option<U256>;3008 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3009 } & Struct;3010 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3011 }30123013 /** @name PalletEthereumCall (326) */3014 interface PalletEthereumCall extends Enum {3015 readonly isTransact: boolean;3016 readonly asTransact: {3017 readonly transaction: EthereumTransactionTransactionV2;3018 } & Struct;3019 readonly type: 'Transact';3020 }30213022 /** @name EthereumTransactionTransactionV2 (327) */3023 interface EthereumTransactionTransactionV2 extends Enum {3024 readonly isLegacy: boolean;3025 readonly asLegacy: EthereumTransactionLegacyTransaction;3026 readonly isEip2930: boolean;3027 readonly asEip2930: EthereumTransactionEip2930Transaction;3028 readonly isEip1559: boolean;3029 readonly asEip1559: EthereumTransactionEip1559Transaction;3030 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3031 }30323033 /** @name EthereumTransactionLegacyTransaction (328) */3034 interface EthereumTransactionLegacyTransaction extends Struct {3035 readonly nonce: U256;3036 readonly gasPrice: U256;3037 readonly gasLimit: U256;3038 readonly action: EthereumTransactionTransactionAction;3039 readonly value: U256;3040 readonly input: Bytes;3041 readonly signature: EthereumTransactionTransactionSignature;3042 }30433044 /** @name EthereumTransactionTransactionAction (329) */3045 interface EthereumTransactionTransactionAction extends Enum {3046 readonly isCall: boolean;3047 readonly asCall: H160;3048 readonly isCreate: boolean;3049 readonly type: 'Call' | 'Create';3050 }30513052 /** @name EthereumTransactionTransactionSignature (330) */3053 interface EthereumTransactionTransactionSignature extends Struct {3054 readonly v: u64;3055 readonly r: H256;3056 readonly s: H256;3057 }30583059 /** @name EthereumTransactionEip2930Transaction (332) */3060 interface EthereumTransactionEip2930Transaction extends Struct {3061 readonly chainId: u64;3062 readonly nonce: U256;3063 readonly gasPrice: U256;3064 readonly gasLimit: U256;3065 readonly action: EthereumTransactionTransactionAction;3066 readonly value: U256;3067 readonly input: Bytes;3068 readonly accessList: Vec<EthereumTransactionAccessListItem>;3069 readonly oddYParity: bool;3070 readonly r: H256;3071 readonly s: H256;3072 }30733074 /** @name EthereumTransactionAccessListItem (334) */3075 interface EthereumTransactionAccessListItem extends Struct {3076 readonly address: H160;3077 readonly storageKeys: Vec<H256>;3078 }30793080 /** @name EthereumTransactionEip1559Transaction (335) */3081 interface EthereumTransactionEip1559Transaction extends Struct {3082 readonly chainId: u64;3083 readonly nonce: U256;3084 readonly maxPriorityFeePerGas: U256;3085 readonly maxFeePerGas: U256;3086 readonly gasLimit: U256;3087 readonly action: EthereumTransactionTransactionAction;3088 readonly value: U256;3089 readonly input: Bytes;3090 readonly accessList: Vec<EthereumTransactionAccessListItem>;3091 readonly oddYParity: bool;3092 readonly r: H256;3093 readonly s: H256;3094 }30953096 /** @name PalletEvmMigrationCall (336) */3097 interface PalletEvmMigrationCall extends Enum {3098 readonly isBegin: boolean;3099 readonly asBegin: {3100 readonly address: H160;3101 } & Struct;3102 readonly isSetData: boolean;3103 readonly asSetData: {3104 readonly address: H160;3105 readonly data: Vec<ITuple<[H256, H256]>>;3106 } & Struct;3107 readonly isFinish: boolean;3108 readonly asFinish: {3109 readonly address: H160;3110 readonly code: Bytes;3111 } & Struct;3112 readonly isInsertEthLogs: boolean;3113 readonly asInsertEthLogs: {3114 readonly logs: Vec<EthereumLog>;3115 } & Struct;3116 readonly isInsertEvents: boolean;3117 readonly asInsertEvents: {3118 readonly events: Vec<Bytes>;3119 } & Struct;3120 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3121 }31223123 /** @name PalletMaintenanceCall (340) */3124 interface PalletMaintenanceCall extends Enum {3125 readonly isEnable: boolean;3126 readonly isDisable: boolean;3127 readonly type: 'Enable' | 'Disable';3128 }31293130 /** @name PalletTestUtilsCall (341) */3131 interface PalletTestUtilsCall extends Enum {3132 readonly isEnable: boolean;3133 readonly isSetTestValue: boolean;3134 readonly asSetTestValue: {3135 readonly value: u32;3136 } & Struct;3137 readonly isSetTestValueAndRollback: boolean;3138 readonly asSetTestValueAndRollback: {3139 readonly value: u32;3140 } & Struct;3141 readonly isIncTestValue: boolean;3142 readonly isJustTakeFee: boolean;3143 readonly isBatchAll: boolean;3144 readonly asBatchAll: {3145 readonly calls: Vec<Call>;3146 } & Struct;3147 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3148 }31493150 /** @name PalletSudoError (343) */3151 interface PalletSudoError extends Enum {3152 readonly isRequireSudo: boolean;3153 readonly type: 'RequireSudo';3154 }31553156 /** @name OrmlVestingModuleError (345) */3157 interface OrmlVestingModuleError extends Enum {3158 readonly isZeroVestingPeriod: boolean;3159 readonly isZeroVestingPeriodCount: boolean;3160 readonly isInsufficientBalanceToLock: boolean;3161 readonly isTooManyVestingSchedules: boolean;3162 readonly isAmountLow: boolean;3163 readonly isMaxVestingSchedulesExceeded: boolean;3164 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3165 }31663167 /** @name OrmlXtokensModuleError (346) */3168 interface OrmlXtokensModuleError extends Enum {3169 readonly isAssetHasNoReserve: boolean;3170 readonly isNotCrossChainTransfer: boolean;3171 readonly isInvalidDest: boolean;3172 readonly isNotCrossChainTransferableCurrency: boolean;3173 readonly isUnweighableMessage: boolean;3174 readonly isXcmExecutionFailed: boolean;3175 readonly isCannotReanchor: boolean;3176 readonly isInvalidAncestry: boolean;3177 readonly isInvalidAsset: boolean;3178 readonly isDestinationNotInvertible: boolean;3179 readonly isBadVersion: boolean;3180 readonly isDistinctReserveForAssetAndFee: boolean;3181 readonly isZeroFee: boolean;3182 readonly isZeroAmount: boolean;3183 readonly isTooManyAssetsBeingSent: boolean;3184 readonly isAssetIndexNonExistent: boolean;3185 readonly isFeeNotEnough: boolean;3186 readonly isNotSupportedMultiLocation: boolean;3187 readonly isMinXcmFeeNotDefined: boolean;3188 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3189 }31903191 /** @name OrmlTokensBalanceLock (349) */3192 interface OrmlTokensBalanceLock extends Struct {3193 readonly id: U8aFixed;3194 readonly amount: u128;3195 }31963197 /** @name OrmlTokensAccountData (351) */3198 interface OrmlTokensAccountData extends Struct {3199 readonly free: u128;3200 readonly reserved: u128;3201 readonly frozen: u128;3202 }32033204 /** @name OrmlTokensReserveData (353) */3205 interface OrmlTokensReserveData extends Struct {3206 readonly id: Null;3207 readonly amount: u128;3208 }32093210 /** @name OrmlTokensModuleError (355) */3211 interface OrmlTokensModuleError extends Enum {3212 readonly isBalanceTooLow: boolean;3213 readonly isAmountIntoBalanceFailed: boolean;3214 readonly isLiquidityRestrictions: boolean;3215 readonly isMaxLocksExceeded: boolean;3216 readonly isKeepAlive: boolean;3217 readonly isExistentialDeposit: boolean;3218 readonly isDeadAccount: boolean;3219 readonly isTooManyReserves: boolean;3220 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3221 }32223223 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3224 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3225 readonly sender: u32;3226 readonly state: CumulusPalletXcmpQueueInboundState;3227 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3228 }32293230 /** @name CumulusPalletXcmpQueueInboundState (358) */3231 interface CumulusPalletXcmpQueueInboundState extends Enum {3232 readonly isOk: boolean;3233 readonly isSuspended: boolean;3234 readonly type: 'Ok' | 'Suspended';3235 }32363237 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3238 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3239 readonly isConcatenatedVersionedXcm: boolean;3240 readonly isConcatenatedEncodedBlob: boolean;3241 readonly isSignals: boolean;3242 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3243 }32443245 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3246 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3247 readonly recipient: u32;3248 readonly state: CumulusPalletXcmpQueueOutboundState;3249 readonly signalsExist: bool;3250 readonly firstIndex: u16;3251 readonly lastIndex: u16;3252 }32533254 /** @name CumulusPalletXcmpQueueOutboundState (365) */3255 interface CumulusPalletXcmpQueueOutboundState extends Enum {3256 readonly isOk: boolean;3257 readonly isSuspended: boolean;3258 readonly type: 'Ok' | 'Suspended';3259 }32603261 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3262 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3263 readonly suspendThreshold: u32;3264 readonly dropThreshold: u32;3265 readonly resumeThreshold: u32;3266 readonly thresholdWeight: SpWeightsWeightV2Weight;3267 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3268 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3269 }32703271 /** @name CumulusPalletXcmpQueueError (369) */3272 interface CumulusPalletXcmpQueueError extends Enum {3273 readonly isFailedToSend: boolean;3274 readonly isBadXcmOrigin: boolean;3275 readonly isBadXcm: boolean;3276 readonly isBadOverweightIndex: boolean;3277 readonly isWeightOverLimit: boolean;3278 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3279 }32803281 /** @name PalletXcmError (370) */3282 interface PalletXcmError extends Enum {3283 readonly isUnreachable: boolean;3284 readonly isSendFailure: boolean;3285 readonly isFiltered: boolean;3286 readonly isUnweighableMessage: boolean;3287 readonly isDestinationNotInvertible: boolean;3288 readonly isEmpty: boolean;3289 readonly isCannotReanchor: boolean;3290 readonly isTooManyAssets: boolean;3291 readonly isInvalidOrigin: boolean;3292 readonly isBadVersion: boolean;3293 readonly isBadLocation: boolean;3294 readonly isNoSubscription: boolean;3295 readonly isAlreadySubscribed: boolean;3296 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3297 }32983299 /** @name CumulusPalletXcmError (371) */3300 type CumulusPalletXcmError = Null;33013302 /** @name CumulusPalletDmpQueueConfigData (372) */3303 interface CumulusPalletDmpQueueConfigData extends Struct {3304 readonly maxIndividual: SpWeightsWeightV2Weight;3305 }33063307 /** @name CumulusPalletDmpQueuePageIndexData (373) */3308 interface CumulusPalletDmpQueuePageIndexData extends Struct {3309 readonly beginUsed: u32;3310 readonly endUsed: u32;3311 readonly overweightCount: u64;3312 }33133314 /** @name CumulusPalletDmpQueueError (376) */3315 interface CumulusPalletDmpQueueError extends Enum {3316 readonly isUnknown: boolean;3317 readonly isOverLimit: boolean;3318 readonly type: 'Unknown' | 'OverLimit';3319 }33203321 /** @name PalletUniqueError (380) */3322 interface PalletUniqueError extends Enum {3323 readonly isCollectionDecimalPointLimitExceeded: boolean;3324 readonly isEmptyArgument: boolean;3325 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3326 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3327 }33283329 /** @name PalletConfigurationError (381) */3330 interface PalletConfigurationError extends Enum {3331 readonly isInconsistentConfiguration: boolean;3332 readonly type: 'InconsistentConfiguration';3333 }33343335 /** @name UpDataStructsCollection (382) */3336 interface UpDataStructsCollection extends Struct {3337 readonly owner: AccountId32;3338 readonly mode: UpDataStructsCollectionMode;3339 readonly name: Vec<u16>;3340 readonly description: Vec<u16>;3341 readonly tokenPrefix: Bytes;3342 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3343 readonly limits: UpDataStructsCollectionLimits;3344 readonly permissions: UpDataStructsCollectionPermissions;3345 readonly flags: U8aFixed;3346 }33473348 /** @name UpDataStructsSponsorshipStateAccountId32 (383) */3349 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3350 readonly isDisabled: boolean;3351 readonly isUnconfirmed: boolean;3352 readonly asUnconfirmed: AccountId32;3353 readonly isConfirmed: boolean;3354 readonly asConfirmed: AccountId32;3355 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3356 }33573358 /** @name UpDataStructsProperties (385) */3359 interface UpDataStructsProperties extends Struct {3360 readonly map: UpDataStructsPropertiesMapBoundedVec;3361 readonly consumedSpace: u32;3362 readonly spaceLimit: u32;3363 }33643365 /** @name UpDataStructsPropertiesMapBoundedVec (386) */3366 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}33673368 /** @name UpDataStructsPropertiesMapPropertyPermission (391) */3369 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}33703371 /** @name UpDataStructsCollectionStats (398) */3372 interface UpDataStructsCollectionStats extends Struct {3373 readonly created: u32;3374 readonly destroyed: u32;3375 readonly alive: u32;3376 }33773378 /** @name UpDataStructsTokenChild (399) */3379 interface UpDataStructsTokenChild extends Struct {3380 readonly token: u32;3381 readonly collection: u32;3382 }33833384 /** @name PhantomTypeUpDataStructs (400) */3385 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}33863387 /** @name UpDataStructsTokenData (402) */3388 interface UpDataStructsTokenData extends Struct {3389 readonly properties: Vec<UpDataStructsProperty>;3390 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3391 readonly pieces: u128;3392 }33933394 /** @name UpDataStructsRpcCollection (404) */3395 interface UpDataStructsRpcCollection extends Struct {3396 readonly owner: AccountId32;3397 readonly mode: UpDataStructsCollectionMode;3398 readonly name: Vec<u16>;3399 readonly description: Vec<u16>;3400 readonly tokenPrefix: Bytes;3401 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3402 readonly limits: UpDataStructsCollectionLimits;3403 readonly permissions: UpDataStructsCollectionPermissions;3404 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3405 readonly properties: Vec<UpDataStructsProperty>;3406 readonly readOnly: bool;3407 readonly flags: UpDataStructsRpcCollectionFlags;3408 }34093410 /** @name UpDataStructsRpcCollectionFlags (405) */3411 interface UpDataStructsRpcCollectionFlags extends Struct {3412 readonly foreign: bool;3413 readonly erc721metadata: bool;3414 }34153416 /** @name RmrkTraitsCollectionCollectionInfo (406) */3417 interface RmrkTraitsCollectionCollectionInfo extends Struct {3418 readonly issuer: AccountId32;3419 readonly metadata: Bytes;3420 readonly max: Option<u32>;3421 readonly symbol: Bytes;3422 readonly nftsCount: u32;3423 }34243425 /** @name RmrkTraitsNftNftInfo (407) */3426 interface RmrkTraitsNftNftInfo extends Struct {3427 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3428 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3429 readonly metadata: Bytes;3430 readonly equipped: bool;3431 readonly pending: bool;3432 }34333434 /** @name RmrkTraitsNftRoyaltyInfo (409) */3435 interface RmrkTraitsNftRoyaltyInfo extends Struct {3436 readonly recipient: AccountId32;3437 readonly amount: Permill;3438 }34393440 /** @name RmrkTraitsResourceResourceInfo (410) */3441 interface RmrkTraitsResourceResourceInfo extends Struct {3442 readonly id: u32;3443 readonly resource: RmrkTraitsResourceResourceTypes;3444 readonly pending: bool;3445 readonly pendingRemoval: bool;3446 }34473448 /** @name RmrkTraitsPropertyPropertyInfo (411) */3449 interface RmrkTraitsPropertyPropertyInfo extends Struct {3450 readonly key: Bytes;3451 readonly value: Bytes;3452 }34533454 /** @name RmrkTraitsBaseBaseInfo (412) */3455 interface RmrkTraitsBaseBaseInfo extends Struct {3456 readonly issuer: AccountId32;3457 readonly baseType: Bytes;3458 readonly symbol: Bytes;3459 }34603461 /** @name RmrkTraitsNftNftChild (413) */3462 interface RmrkTraitsNftNftChild extends Struct {3463 readonly collectionId: u32;3464 readonly nftId: u32;3465 }34663467 /** @name PalletCommonError (415) */3468 interface PalletCommonError extends Enum {3469 readonly isCollectionNotFound: boolean;3470 readonly isMustBeTokenOwner: boolean;3471 readonly isNoPermission: boolean;3472 readonly isCantDestroyNotEmptyCollection: boolean;3473 readonly isPublicMintingNotAllowed: boolean;3474 readonly isAddressNotInAllowlist: boolean;3475 readonly isCollectionNameLimitExceeded: boolean;3476 readonly isCollectionDescriptionLimitExceeded: boolean;3477 readonly isCollectionTokenPrefixLimitExceeded: boolean;3478 readonly isTotalCollectionsLimitExceeded: boolean;3479 readonly isCollectionAdminCountExceeded: boolean;3480 readonly isCollectionLimitBoundsExceeded: boolean;3481 readonly isOwnerPermissionsCantBeReverted: boolean;3482 readonly isTransferNotAllowed: boolean;3483 readonly isAccountTokenLimitExceeded: boolean;3484 readonly isCollectionTokenLimitExceeded: boolean;3485 readonly isMetadataFlagFrozen: boolean;3486 readonly isTokenNotFound: boolean;3487 readonly isTokenValueTooLow: boolean;3488 readonly isApprovedValueTooLow: boolean;3489 readonly isCantApproveMoreThanOwned: boolean;3490 readonly isAddressIsZero: boolean;3491 readonly isUnsupportedOperation: boolean;3492 readonly isNotSufficientFounds: boolean;3493 readonly isUserIsNotAllowedToNest: boolean;3494 readonly isSourceCollectionIsNotAllowedToNest: boolean;3495 readonly isCollectionFieldSizeExceeded: boolean;3496 readonly isNoSpaceForProperty: boolean;3497 readonly isPropertyLimitReached: boolean;3498 readonly isPropertyKeyIsTooLong: boolean;3499 readonly isInvalidCharacterInPropertyKey: boolean;3500 readonly isEmptyPropertyKey: boolean;3501 readonly isCollectionIsExternal: boolean;3502 readonly isCollectionIsInternal: boolean;3503 readonly isConfirmSponsorshipFail: boolean;3504 readonly isUserIsNotCollectionAdmin: boolean;3505 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';3506 }35073508 /** @name PalletFungibleError (417) */3509 interface PalletFungibleError extends Enum {3510 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3511 readonly isFungibleItemsHaveNoId: boolean;3512 readonly isFungibleItemsDontHaveData: boolean;3513 readonly isFungibleDisallowsNesting: boolean;3514 readonly isSettingPropertiesNotAllowed: boolean;3515 readonly isSettingAllowanceForAllNotAllowed: boolean;3516 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3517 }35183519 /** @name PalletRefungibleItemData (418) */3520 interface PalletRefungibleItemData extends Struct {3521 readonly constData: Bytes;3522 }35233524 /** @name PalletRefungibleError (423) */3525 interface PalletRefungibleError extends Enum {3526 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3527 readonly isWrongRefungiblePieces: boolean;3528 readonly isRepartitionWhileNotOwningAllPieces: boolean;3529 readonly isRefungibleDisallowsNesting: boolean;3530 readonly isSettingPropertiesNotAllowed: boolean;3531 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3532 }35333534 /** @name PalletNonfungibleItemData (424) */3535 interface PalletNonfungibleItemData extends Struct {3536 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3537 }35383539 /** @name UpDataStructsPropertyScope (426) */3540 interface UpDataStructsPropertyScope extends Enum {3541 readonly isNone: boolean;3542 readonly isRmrk: boolean;3543 readonly type: 'None' | 'Rmrk';3544 }35453546 /** @name PalletNonfungibleError (428) */3547 interface PalletNonfungibleError extends Enum {3548 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3549 readonly isNonfungibleItemsHaveNoAmount: boolean;3550 readonly isCantBurnNftWithChildren: boolean;3551 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3552 }35533554 /** @name PalletStructureError (429) */3555 interface PalletStructureError extends Enum {3556 readonly isOuroborosDetected: boolean;3557 readonly isDepthLimit: boolean;3558 readonly isBreadthLimit: boolean;3559 readonly isTokenNotFound: boolean;3560 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3561 }35623563 /** @name PalletRmrkCoreError (430) */3564 interface PalletRmrkCoreError extends Enum {3565 readonly isCorruptedCollectionType: boolean;3566 readonly isRmrkPropertyKeyIsTooLong: boolean;3567 readonly isRmrkPropertyValueIsTooLong: boolean;3568 readonly isRmrkPropertyIsNotFound: boolean;3569 readonly isUnableToDecodeRmrkData: boolean;3570 readonly isCollectionNotEmpty: boolean;3571 readonly isNoAvailableCollectionId: boolean;3572 readonly isNoAvailableNftId: boolean;3573 readonly isCollectionUnknown: boolean;3574 readonly isNoPermission: boolean;3575 readonly isNonTransferable: boolean;3576 readonly isCollectionFullOrLocked: boolean;3577 readonly isResourceDoesntExist: boolean;3578 readonly isCannotSendToDescendentOrSelf: boolean;3579 readonly isCannotAcceptNonOwnedNft: boolean;3580 readonly isCannotRejectNonOwnedNft: boolean;3581 readonly isCannotRejectNonPendingNft: boolean;3582 readonly isResourceNotPending: boolean;3583 readonly isNoAvailableResourceId: boolean;3584 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3585 }35863587 /** @name PalletRmrkEquipError (432) */3588 interface PalletRmrkEquipError extends Enum {3589 readonly isPermissionError: boolean;3590 readonly isNoAvailableBaseId: boolean;3591 readonly isNoAvailablePartId: boolean;3592 readonly isBaseDoesntExist: boolean;3593 readonly isNeedsDefaultThemeFirst: boolean;3594 readonly isPartDoesntExist: boolean;3595 readonly isNoEquippableOnFixedPart: boolean;3596 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3597 }35983599 /** @name PalletAppPromotionError (438) */3600 interface PalletAppPromotionError extends Enum {3601 readonly isAdminNotSet: boolean;3602 readonly isNoPermission: boolean;3603 readonly isNotSufficientFunds: boolean;3604 readonly isPendingForBlockOverflow: boolean;3605 readonly isSponsorNotSet: boolean;3606 readonly isIncorrectLockedBalanceOperation: boolean;3607 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3608 }36093610 /** @name PalletForeignAssetsModuleError (439) */3611 interface PalletForeignAssetsModuleError extends Enum {3612 readonly isBadLocation: boolean;3613 readonly isMultiLocationExisted: boolean;3614 readonly isAssetIdNotExists: boolean;3615 readonly isAssetIdExisted: boolean;3616 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3617 }36183619 /** @name PalletEvmError (441) */3620 interface PalletEvmError extends Enum {3621 readonly isBalanceLow: boolean;3622 readonly isFeeOverflow: boolean;3623 readonly isPaymentOverflow: boolean;3624 readonly isWithdrawFailed: boolean;3625 readonly isGasPriceTooLow: boolean;3626 readonly isInvalidNonce: boolean;3627 readonly isGasLimitTooLow: boolean;3628 readonly isGasLimitTooHigh: boolean;3629 readonly isUndefined: boolean;3630 readonly isReentrancy: boolean;3631 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3632 }36333634 /** @name FpRpcTransactionStatus (444) */3635 interface FpRpcTransactionStatus extends Struct {3636 readonly transactionHash: H256;3637 readonly transactionIndex: u32;3638 readonly from: H160;3639 readonly to: Option<H160>;3640 readonly contractAddress: Option<H160>;3641 readonly logs: Vec<EthereumLog>;3642 readonly logsBloom: EthbloomBloom;3643 }36443645 /** @name EthbloomBloom (446) */3646 interface EthbloomBloom extends U8aFixed {}36473648 /** @name EthereumReceiptReceiptV3 (448) */3649 interface EthereumReceiptReceiptV3 extends Enum {3650 readonly isLegacy: boolean;3651 readonly asLegacy: EthereumReceiptEip658ReceiptData;3652 readonly isEip2930: boolean;3653 readonly asEip2930: EthereumReceiptEip658ReceiptData;3654 readonly isEip1559: boolean;3655 readonly asEip1559: EthereumReceiptEip658ReceiptData;3656 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3657 }36583659 /** @name EthereumReceiptEip658ReceiptData (449) */3660 interface EthereumReceiptEip658ReceiptData extends Struct {3661 readonly statusCode: u8;3662 readonly usedGas: U256;3663 readonly logsBloom: EthbloomBloom;3664 readonly logs: Vec<EthereumLog>;3665 }36663667 /** @name EthereumBlock (450) */3668 interface EthereumBlock extends Struct {3669 readonly header: EthereumHeader;3670 readonly transactions: Vec<EthereumTransactionTransactionV2>;3671 readonly ommers: Vec<EthereumHeader>;3672 }36733674 /** @name EthereumHeader (451) */3675 interface EthereumHeader extends Struct {3676 readonly parentHash: H256;3677 readonly ommersHash: H256;3678 readonly beneficiary: H160;3679 readonly stateRoot: H256;3680 readonly transactionsRoot: H256;3681 readonly receiptsRoot: H256;3682 readonly logsBloom: EthbloomBloom;3683 readonly difficulty: U256;3684 readonly number: U256;3685 readonly gasLimit: U256;3686 readonly gasUsed: U256;3687 readonly timestamp: u64;3688 readonly extraData: Bytes;3689 readonly mixHash: H256;3690 readonly nonce: EthereumTypesHashH64;3691 }36923693 /** @name EthereumTypesHashH64 (452) */3694 interface EthereumTypesHashH64 extends U8aFixed {}36953696 /** @name PalletEthereumError (457) */3697 interface PalletEthereumError extends Enum {3698 readonly isInvalidSignature: boolean;3699 readonly isPreLogExists: boolean;3700 readonly type: 'InvalidSignature' | 'PreLogExists';3701 }37023703 /** @name PalletEvmCoderSubstrateError (458) */3704 interface PalletEvmCoderSubstrateError extends Enum {3705 readonly isOutOfGas: boolean;3706 readonly isOutOfFund: boolean;3707 readonly type: 'OutOfGas' | 'OutOfFund';3708 }37093710 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (459) */3711 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3712 readonly isDisabled: boolean;3713 readonly isUnconfirmed: boolean;3714 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3715 readonly isConfirmed: boolean;3716 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3717 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3718 }37193720 /** @name PalletEvmContractHelpersSponsoringModeT (460) */3721 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3722 readonly isDisabled: boolean;3723 readonly isAllowlisted: boolean;3724 readonly isGenerous: boolean;3725 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3726 }37273728 /** @name PalletEvmContractHelpersError (466) */3729 interface PalletEvmContractHelpersError extends Enum {3730 readonly isNoPermission: boolean;3731 readonly isNoPendingSponsor: boolean;3732 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3733 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3734 }37353736 /** @name PalletEvmMigrationError (467) */3737 interface PalletEvmMigrationError extends Enum {3738 readonly isAccountNotEmpty: boolean;3739 readonly isAccountIsNotMigrating: boolean;3740 readonly isBadEvent: boolean;3741 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3742 }37433744 /** @name PalletMaintenanceError (468) */3745 type PalletMaintenanceError = Null;37463747 /** @name PalletTestUtilsError (469) */3748 interface PalletTestUtilsError extends Enum {3749 readonly isTestPalletDisabled: boolean;3750 readonly isTriggerRollback: boolean;3751 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3752 }37533754 /** @name SpRuntimeMultiSignature (471) */3755 interface SpRuntimeMultiSignature extends Enum {3756 readonly isEd25519: boolean;3757 readonly asEd25519: SpCoreEd25519Signature;3758 readonly isSr25519: boolean;3759 readonly asSr25519: SpCoreSr25519Signature;3760 readonly isEcdsa: boolean;3761 readonly asEcdsa: SpCoreEcdsaSignature;3762 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3763 }37643765 /** @name SpCoreEd25519Signature (472) */3766 interface SpCoreEd25519Signature extends U8aFixed {}37673768 /** @name SpCoreSr25519Signature (474) */3769 interface SpCoreSr25519Signature extends U8aFixed {}37703771 /** @name SpCoreEcdsaSignature (475) */3772 interface SpCoreEcdsaSignature extends U8aFixed {}37733774 /** @name FrameSystemExtensionsCheckSpecVersion (478) */3775 type FrameSystemExtensionsCheckSpecVersion = Null;37763777 /** @name FrameSystemExtensionsCheckTxVersion (479) */3778 type FrameSystemExtensionsCheckTxVersion = Null;37793780 /** @name FrameSystemExtensionsCheckGenesis (480) */3781 type FrameSystemExtensionsCheckGenesis = Null;37823783 /** @name FrameSystemExtensionsCheckNonce (483) */3784 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}37853786 /** @name FrameSystemExtensionsCheckWeight (484) */3787 type FrameSystemExtensionsCheckWeight = Null;37883789 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (485) */3790 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;37913792 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (486) */3793 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}37943795 /** @name OpalRuntimeRuntime (487) */3796 type OpalRuntimeRuntime = Null;37973798 /** @name PalletEthereumFakeTransactionFinalizer (488) */3799 type PalletEthereumFakeTransactionFinalizer = Null;38003801} // declare module1// 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 PalletCommonEvent (89) */1113 interface PalletCommonEvent extends Enum {1114 readonly isCollectionCreated: boolean;1115 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1116 readonly isCollectionDestroyed: boolean;1117 readonly asCollectionDestroyed: u32;1118 readonly isItemCreated: boolean;1119 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1120 readonly isItemDestroyed: boolean;1121 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1122 readonly isTransfer: boolean;1123 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1124 readonly isApproved: boolean;1125 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1126 readonly isApprovedForAll: boolean;1127 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1128 readonly isCollectionPropertySet: boolean;1129 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1130 readonly isCollectionPropertyDeleted: boolean;1131 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1132 readonly isTokenPropertySet: boolean;1133 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1134 readonly isTokenPropertyDeleted: boolean;1135 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1136 readonly isPropertyPermissionSet: boolean;1137 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1138 readonly isAllowListAddressAdded: boolean;1139 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1140 readonly isAllowListAddressRemoved: boolean;1141 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1142 readonly isCollectionAdminAdded: boolean;1143 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1144 readonly isCollectionAdminRemoved: boolean;1145 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1146 readonly isCollectionLimitSet: boolean;1147 readonly asCollectionLimitSet: u32;1148 readonly isCollectionOwnerChanged: boolean;1149 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1150 readonly isCollectionPermissionSet: boolean;1151 readonly asCollectionPermissionSet: u32;1152 readonly isCollectionSponsorSet: boolean;1153 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1154 readonly isSponsorshipConfirmed: boolean;1155 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1156 readonly isCollectionSponsorRemoved: boolean;1157 readonly asCollectionSponsorRemoved: u32;1158 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1159 }11601161 /** @name PalletEvmAccountBasicCrossAccountIdRepr (92) */1162 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1163 readonly isSubstrate: boolean;1164 readonly asSubstrate: AccountId32;1165 readonly isEthereum: boolean;1166 readonly asEthereum: H160;1167 readonly type: 'Substrate' | 'Ethereum';1168 }11691170 /** @name PalletStructureEvent (96) */1171 interface PalletStructureEvent extends Enum {1172 readonly isExecuted: boolean;1173 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1174 readonly type: 'Executed';1175 }11761177 /** @name PalletRmrkCoreEvent (97) */1178 interface PalletRmrkCoreEvent extends Enum {1179 readonly isCollectionCreated: boolean;1180 readonly asCollectionCreated: {1181 readonly issuer: AccountId32;1182 readonly collectionId: u32;1183 } & Struct;1184 readonly isCollectionDestroyed: boolean;1185 readonly asCollectionDestroyed: {1186 readonly issuer: AccountId32;1187 readonly collectionId: u32;1188 } & Struct;1189 readonly isIssuerChanged: boolean;1190 readonly asIssuerChanged: {1191 readonly oldIssuer: AccountId32;1192 readonly newIssuer: AccountId32;1193 readonly collectionId: u32;1194 } & Struct;1195 readonly isCollectionLocked: boolean;1196 readonly asCollectionLocked: {1197 readonly issuer: AccountId32;1198 readonly collectionId: u32;1199 } & Struct;1200 readonly isNftMinted: boolean;1201 readonly asNftMinted: {1202 readonly owner: AccountId32;1203 readonly collectionId: u32;1204 readonly nftId: u32;1205 } & Struct;1206 readonly isNftBurned: boolean;1207 readonly asNftBurned: {1208 readonly owner: AccountId32;1209 readonly nftId: u32;1210 } & Struct;1211 readonly isNftSent: boolean;1212 readonly asNftSent: {1213 readonly sender: AccountId32;1214 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1215 readonly collectionId: u32;1216 readonly nftId: u32;1217 readonly approvalRequired: bool;1218 } & Struct;1219 readonly isNftAccepted: boolean;1220 readonly asNftAccepted: {1221 readonly sender: AccountId32;1222 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1223 readonly collectionId: u32;1224 readonly nftId: u32;1225 } & Struct;1226 readonly isNftRejected: boolean;1227 readonly asNftRejected: {1228 readonly sender: AccountId32;1229 readonly collectionId: u32;1230 readonly nftId: u32;1231 } & Struct;1232 readonly isPropertySet: boolean;1233 readonly asPropertySet: {1234 readonly collectionId: u32;1235 readonly maybeNftId: Option<u32>;1236 readonly key: Bytes;1237 readonly value: Bytes;1238 } & Struct;1239 readonly isResourceAdded: boolean;1240 readonly asResourceAdded: {1241 readonly nftId: u32;1242 readonly resourceId: u32;1243 } & Struct;1244 readonly isResourceRemoval: boolean;1245 readonly asResourceRemoval: {1246 readonly nftId: u32;1247 readonly resourceId: u32;1248 } & Struct;1249 readonly isResourceAccepted: boolean;1250 readonly asResourceAccepted: {1251 readonly nftId: u32;1252 readonly resourceId: u32;1253 } & Struct;1254 readonly isResourceRemovalAccepted: boolean;1255 readonly asResourceRemovalAccepted: {1256 readonly nftId: u32;1257 readonly resourceId: u32;1258 } & Struct;1259 readonly isPrioritySet: boolean;1260 readonly asPrioritySet: {1261 readonly collectionId: u32;1262 readonly nftId: u32;1263 } & Struct;1264 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1265 }12661267 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */1268 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1269 readonly isAccountId: boolean;1270 readonly asAccountId: AccountId32;1271 readonly isCollectionAndNftTuple: boolean;1272 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1273 readonly type: 'AccountId' | 'CollectionAndNftTuple';1274 }12751276 /** @name PalletRmrkEquipEvent (102) */1277 interface PalletRmrkEquipEvent extends Enum {1278 readonly isBaseCreated: boolean;1279 readonly asBaseCreated: {1280 readonly issuer: AccountId32;1281 readonly baseId: u32;1282 } & Struct;1283 readonly isEquippablesUpdated: boolean;1284 readonly asEquippablesUpdated: {1285 readonly baseId: u32;1286 readonly slotId: u32;1287 } & Struct;1288 readonly type: 'BaseCreated' | 'EquippablesUpdated';1289 }12901291 /** @name PalletAppPromotionEvent (103) */1292 interface PalletAppPromotionEvent extends Enum {1293 readonly isStakingRecalculation: boolean;1294 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1295 readonly isStake: boolean;1296 readonly asStake: ITuple<[AccountId32, u128]>;1297 readonly isUnstake: boolean;1298 readonly asUnstake: ITuple<[AccountId32, u128]>;1299 readonly isSetAdmin: boolean;1300 readonly asSetAdmin: AccountId32;1301 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1302 }13031304 /** @name PalletForeignAssetsModuleEvent (104) */1305 interface PalletForeignAssetsModuleEvent extends Enum {1306 readonly isForeignAssetRegistered: boolean;1307 readonly asForeignAssetRegistered: {1308 readonly assetId: u32;1309 readonly assetAddress: XcmV1MultiLocation;1310 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1311 } & Struct;1312 readonly isForeignAssetUpdated: boolean;1313 readonly asForeignAssetUpdated: {1314 readonly assetId: u32;1315 readonly assetAddress: XcmV1MultiLocation;1316 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1317 } & Struct;1318 readonly isAssetRegistered: boolean;1319 readonly asAssetRegistered: {1320 readonly assetId: PalletForeignAssetsAssetIds;1321 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1322 } & Struct;1323 readonly isAssetUpdated: boolean;1324 readonly asAssetUpdated: {1325 readonly assetId: PalletForeignAssetsAssetIds;1326 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1327 } & Struct;1328 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1329 }13301331 /** @name PalletForeignAssetsModuleAssetMetadata (105) */1332 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1333 readonly name: Bytes;1334 readonly symbol: Bytes;1335 readonly decimals: u8;1336 readonly minimalBalance: u128;1337 }13381339 /** @name PalletEvmEvent (106) */1340 interface PalletEvmEvent extends Enum {1341 readonly isLog: boolean;1342 readonly asLog: {1343 readonly log: EthereumLog;1344 } & Struct;1345 readonly isCreated: boolean;1346 readonly asCreated: {1347 readonly address: H160;1348 } & Struct;1349 readonly isCreatedFailed: boolean;1350 readonly asCreatedFailed: {1351 readonly address: H160;1352 } & Struct;1353 readonly isExecuted: boolean;1354 readonly asExecuted: {1355 readonly address: H160;1356 } & Struct;1357 readonly isExecutedFailed: boolean;1358 readonly asExecutedFailed: {1359 readonly address: H160;1360 } & Struct;1361 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1362 }13631364 /** @name EthereumLog (107) */1365 interface EthereumLog extends Struct {1366 readonly address: H160;1367 readonly topics: Vec<H256>;1368 readonly data: Bytes;1369 }13701371 /** @name PalletEthereumEvent (109) */1372 interface PalletEthereumEvent extends Enum {1373 readonly isExecuted: boolean;1374 readonly asExecuted: {1375 readonly from: H160;1376 readonly to: H160;1377 readonly transactionHash: H256;1378 readonly exitReason: EvmCoreErrorExitReason;1379 } & Struct;1380 readonly type: 'Executed';1381 }13821383 /** @name EvmCoreErrorExitReason (110) */1384 interface EvmCoreErrorExitReason extends Enum {1385 readonly isSucceed: boolean;1386 readonly asSucceed: EvmCoreErrorExitSucceed;1387 readonly isError: boolean;1388 readonly asError: EvmCoreErrorExitError;1389 readonly isRevert: boolean;1390 readonly asRevert: EvmCoreErrorExitRevert;1391 readonly isFatal: boolean;1392 readonly asFatal: EvmCoreErrorExitFatal;1393 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1394 }13951396 /** @name EvmCoreErrorExitSucceed (111) */1397 interface EvmCoreErrorExitSucceed extends Enum {1398 readonly isStopped: boolean;1399 readonly isReturned: boolean;1400 readonly isSuicided: boolean;1401 readonly type: 'Stopped' | 'Returned' | 'Suicided';1402 }14031404 /** @name EvmCoreErrorExitError (112) */1405 interface EvmCoreErrorExitError extends Enum {1406 readonly isStackUnderflow: boolean;1407 readonly isStackOverflow: boolean;1408 readonly isInvalidJump: boolean;1409 readonly isInvalidRange: boolean;1410 readonly isDesignatedInvalid: boolean;1411 readonly isCallTooDeep: boolean;1412 readonly isCreateCollision: boolean;1413 readonly isCreateContractLimit: boolean;1414 readonly isOutOfOffset: boolean;1415 readonly isOutOfGas: boolean;1416 readonly isOutOfFund: boolean;1417 readonly isPcUnderflow: boolean;1418 readonly isCreateEmpty: boolean;1419 readonly isOther: boolean;1420 readonly asOther: Text;1421 readonly isInvalidCode: boolean;1422 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1423 }14241425 /** @name EvmCoreErrorExitRevert (115) */1426 interface EvmCoreErrorExitRevert extends Enum {1427 readonly isReverted: boolean;1428 readonly type: 'Reverted';1429 }14301431 /** @name EvmCoreErrorExitFatal (116) */1432 interface EvmCoreErrorExitFatal extends Enum {1433 readonly isNotSupported: boolean;1434 readonly isUnhandledInterrupt: boolean;1435 readonly isCallErrorAsFatal: boolean;1436 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1437 readonly isOther: boolean;1438 readonly asOther: Text;1439 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1440 }14411442 /** @name PalletEvmContractHelpersEvent (117) */1443 interface PalletEvmContractHelpersEvent extends Enum {1444 readonly isContractSponsorSet: boolean;1445 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1446 readonly isContractSponsorshipConfirmed: boolean;1447 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1448 readonly isContractSponsorRemoved: boolean;1449 readonly asContractSponsorRemoved: H160;1450 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1451 }14521453 /** @name PalletEvmMigrationEvent (118) */1454 interface PalletEvmMigrationEvent extends Enum {1455 readonly isTestEvent: boolean;1456 readonly type: 'TestEvent';1457 }14581459 /** @name PalletMaintenanceEvent (119) */1460 interface PalletMaintenanceEvent extends Enum {1461 readonly isMaintenanceEnabled: boolean;1462 readonly isMaintenanceDisabled: boolean;1463 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1464 }14651466 /** @name PalletTestUtilsEvent (120) */1467 interface PalletTestUtilsEvent extends Enum {1468 readonly isValueIsSet: boolean;1469 readonly isShouldRollback: boolean;1470 readonly isBatchCompleted: boolean;1471 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1472 }14731474 /** @name FrameSystemPhase (121) */1475 interface FrameSystemPhase extends Enum {1476 readonly isApplyExtrinsic: boolean;1477 readonly asApplyExtrinsic: u32;1478 readonly isFinalization: boolean;1479 readonly isInitialization: boolean;1480 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1481 }14821483 /** @name FrameSystemLastRuntimeUpgradeInfo (124) */1484 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1485 readonly specVersion: Compact<u32>;1486 readonly specName: Text;1487 }14881489 /** @name FrameSystemCall (125) */1490 interface FrameSystemCall extends Enum {1491 readonly isFillBlock: boolean;1492 readonly asFillBlock: {1493 readonly ratio: Perbill;1494 } & Struct;1495 readonly isRemark: boolean;1496 readonly asRemark: {1497 readonly remark: Bytes;1498 } & Struct;1499 readonly isSetHeapPages: boolean;1500 readonly asSetHeapPages: {1501 readonly pages: u64;1502 } & Struct;1503 readonly isSetCode: boolean;1504 readonly asSetCode: {1505 readonly code: Bytes;1506 } & Struct;1507 readonly isSetCodeWithoutChecks: boolean;1508 readonly asSetCodeWithoutChecks: {1509 readonly code: Bytes;1510 } & Struct;1511 readonly isSetStorage: boolean;1512 readonly asSetStorage: {1513 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1514 } & Struct;1515 readonly isKillStorage: boolean;1516 readonly asKillStorage: {1517 readonly keys_: Vec<Bytes>;1518 } & Struct;1519 readonly isKillPrefix: boolean;1520 readonly asKillPrefix: {1521 readonly prefix: Bytes;1522 readonly subkeys: u32;1523 } & Struct;1524 readonly isRemarkWithEvent: boolean;1525 readonly asRemarkWithEvent: {1526 readonly remark: Bytes;1527 } & Struct;1528 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1529 }15301531 /** @name FrameSystemLimitsBlockWeights (130) */1532 interface FrameSystemLimitsBlockWeights extends Struct {1533 readonly baseBlock: SpWeightsWeightV2Weight;1534 readonly maxBlock: SpWeightsWeightV2Weight;1535 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1536 }15371538 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */1539 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1540 readonly normal: FrameSystemLimitsWeightsPerClass;1541 readonly operational: FrameSystemLimitsWeightsPerClass;1542 readonly mandatory: FrameSystemLimitsWeightsPerClass;1543 }15441545 /** @name FrameSystemLimitsWeightsPerClass (132) */1546 interface FrameSystemLimitsWeightsPerClass extends Struct {1547 readonly baseExtrinsic: SpWeightsWeightV2Weight;1548 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1549 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1550 readonly reserved: Option<SpWeightsWeightV2Weight>;1551 }15521553 /** @name FrameSystemLimitsBlockLength (134) */1554 interface FrameSystemLimitsBlockLength extends Struct {1555 readonly max: FrameSupportDispatchPerDispatchClassU32;1556 }15571558 /** @name FrameSupportDispatchPerDispatchClassU32 (135) */1559 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1560 readonly normal: u32;1561 readonly operational: u32;1562 readonly mandatory: u32;1563 }15641565 /** @name SpWeightsRuntimeDbWeight (136) */1566 interface SpWeightsRuntimeDbWeight extends Struct {1567 readonly read: u64;1568 readonly write: u64;1569 }15701571 /** @name SpVersionRuntimeVersion (137) */1572 interface SpVersionRuntimeVersion extends Struct {1573 readonly specName: Text;1574 readonly implName: Text;1575 readonly authoringVersion: u32;1576 readonly specVersion: u32;1577 readonly implVersion: u32;1578 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1579 readonly transactionVersion: u32;1580 readonly stateVersion: u8;1581 }15821583 /** @name FrameSystemError (142) */1584 interface FrameSystemError extends Enum {1585 readonly isInvalidSpecName: boolean;1586 readonly isSpecVersionNeedsToIncrease: boolean;1587 readonly isFailedToExtractRuntimeVersion: boolean;1588 readonly isNonDefaultComposite: boolean;1589 readonly isNonZeroRefCount: boolean;1590 readonly isCallFiltered: boolean;1591 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1592 }15931594 /** @name PolkadotPrimitivesV2PersistedValidationData (143) */1595 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1596 readonly parentHead: Bytes;1597 readonly relayParentNumber: u32;1598 readonly relayParentStorageRoot: H256;1599 readonly maxPovSize: u32;1600 }16011602 /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */1603 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1604 readonly isPresent: boolean;1605 readonly type: 'Present';1606 }16071608 /** @name SpTrieStorageProof (147) */1609 interface SpTrieStorageProof extends Struct {1610 readonly trieNodes: BTreeSet<Bytes>;1611 }16121613 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */1614 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1615 readonly dmqMqcHead: H256;1616 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1617 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1618 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1619 }16201621 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */1622 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1623 readonly maxCapacity: u32;1624 readonly maxTotalSize: u32;1625 readonly maxMessageSize: u32;1626 readonly msgCount: u32;1627 readonly totalSize: u32;1628 readonly mqcHead: Option<H256>;1629 }16301631 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */1632 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1633 readonly maxCodeSize: u32;1634 readonly maxHeadDataSize: u32;1635 readonly maxUpwardQueueCount: u32;1636 readonly maxUpwardQueueSize: u32;1637 readonly maxUpwardMessageSize: u32;1638 readonly maxUpwardMessageNumPerCandidate: u32;1639 readonly hrmpMaxMessageNumPerCandidate: u32;1640 readonly validationUpgradeCooldown: u32;1641 readonly validationUpgradeDelay: u32;1642 }16431644 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */1645 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1646 readonly recipient: u32;1647 readonly data: Bytes;1648 }16491650 /** @name CumulusPalletParachainSystemCall (160) */1651 interface CumulusPalletParachainSystemCall extends Enum {1652 readonly isSetValidationData: boolean;1653 readonly asSetValidationData: {1654 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1655 } & Struct;1656 readonly isSudoSendUpwardMessage: boolean;1657 readonly asSudoSendUpwardMessage: {1658 readonly message: Bytes;1659 } & Struct;1660 readonly isAuthorizeUpgrade: boolean;1661 readonly asAuthorizeUpgrade: {1662 readonly codeHash: H256;1663 } & Struct;1664 readonly isEnactAuthorizedUpgrade: boolean;1665 readonly asEnactAuthorizedUpgrade: {1666 readonly code: Bytes;1667 } & Struct;1668 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1669 }16701671 /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */1672 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1673 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1674 readonly relayChainState: SpTrieStorageProof;1675 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1676 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1677 }16781679 /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */1680 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1681 readonly sentAt: u32;1682 readonly msg: Bytes;1683 }16841685 /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */1686 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1687 readonly sentAt: u32;1688 readonly data: Bytes;1689 }16901691 /** @name CumulusPalletParachainSystemError (169) */1692 interface CumulusPalletParachainSystemError extends Enum {1693 readonly isOverlappingUpgrades: boolean;1694 readonly isProhibitedByPolkadot: boolean;1695 readonly isTooBig: boolean;1696 readonly isValidationDataNotAvailable: boolean;1697 readonly isHostConfigurationNotAvailable: boolean;1698 readonly isNotScheduled: boolean;1699 readonly isNothingAuthorized: boolean;1700 readonly isUnauthorized: boolean;1701 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1702 }17031704 /** @name PalletBalancesBalanceLock (171) */1705 interface PalletBalancesBalanceLock extends Struct {1706 readonly id: U8aFixed;1707 readonly amount: u128;1708 readonly reasons: PalletBalancesReasons;1709 }17101711 /** @name PalletBalancesReasons (172) */1712 interface PalletBalancesReasons extends Enum {1713 readonly isFee: boolean;1714 readonly isMisc: boolean;1715 readonly isAll: boolean;1716 readonly type: 'Fee' | 'Misc' | 'All';1717 }17181719 /** @name PalletBalancesReserveData (175) */1720 interface PalletBalancesReserveData extends Struct {1721 readonly id: U8aFixed;1722 readonly amount: u128;1723 }17241725 /** @name PalletBalancesReleases (177) */1726 interface PalletBalancesReleases extends Enum {1727 readonly isV100: boolean;1728 readonly isV200: boolean;1729 readonly type: 'V100' | 'V200';1730 }17311732 /** @name PalletBalancesCall (178) */1733 interface PalletBalancesCall extends Enum {1734 readonly isTransfer: boolean;1735 readonly asTransfer: {1736 readonly dest: MultiAddress;1737 readonly value: Compact<u128>;1738 } & Struct;1739 readonly isSetBalance: boolean;1740 readonly asSetBalance: {1741 readonly who: MultiAddress;1742 readonly newFree: Compact<u128>;1743 readonly newReserved: Compact<u128>;1744 } & Struct;1745 readonly isForceTransfer: boolean;1746 readonly asForceTransfer: {1747 readonly source: MultiAddress;1748 readonly dest: MultiAddress;1749 readonly value: Compact<u128>;1750 } & Struct;1751 readonly isTransferKeepAlive: boolean;1752 readonly asTransferKeepAlive: {1753 readonly dest: MultiAddress;1754 readonly value: Compact<u128>;1755 } & Struct;1756 readonly isTransferAll: boolean;1757 readonly asTransferAll: {1758 readonly dest: MultiAddress;1759 readonly keepAlive: bool;1760 } & Struct;1761 readonly isForceUnreserve: boolean;1762 readonly asForceUnreserve: {1763 readonly who: MultiAddress;1764 readonly amount: u128;1765 } & Struct;1766 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1767 }17681769 /** @name PalletBalancesError (181) */1770 interface PalletBalancesError extends Enum {1771 readonly isVestingBalance: boolean;1772 readonly isLiquidityRestrictions: boolean;1773 readonly isInsufficientBalance: boolean;1774 readonly isExistentialDeposit: boolean;1775 readonly isKeepAlive: boolean;1776 readonly isExistingVestingSchedule: boolean;1777 readonly isDeadAccount: boolean;1778 readonly isTooManyReserves: boolean;1779 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1780 }17811782 /** @name PalletTimestampCall (183) */1783 interface PalletTimestampCall extends Enum {1784 readonly isSet: boolean;1785 readonly asSet: {1786 readonly now: Compact<u64>;1787 } & Struct;1788 readonly type: 'Set';1789 }17901791 /** @name PalletTransactionPaymentReleases (185) */1792 interface PalletTransactionPaymentReleases extends Enum {1793 readonly isV1Ancient: boolean;1794 readonly isV2: boolean;1795 readonly type: 'V1Ancient' | 'V2';1796 }17971798 /** @name PalletTreasuryProposal (186) */1799 interface PalletTreasuryProposal extends Struct {1800 readonly proposer: AccountId32;1801 readonly value: u128;1802 readonly beneficiary: AccountId32;1803 readonly bond: u128;1804 }18051806 /** @name PalletTreasuryCall (189) */1807 interface PalletTreasuryCall extends Enum {1808 readonly isProposeSpend: boolean;1809 readonly asProposeSpend: {1810 readonly value: Compact<u128>;1811 readonly beneficiary: MultiAddress;1812 } & Struct;1813 readonly isRejectProposal: boolean;1814 readonly asRejectProposal: {1815 readonly proposalId: Compact<u32>;1816 } & Struct;1817 readonly isApproveProposal: boolean;1818 readonly asApproveProposal: {1819 readonly proposalId: Compact<u32>;1820 } & Struct;1821 readonly isSpend: boolean;1822 readonly asSpend: {1823 readonly amount: Compact<u128>;1824 readonly beneficiary: MultiAddress;1825 } & Struct;1826 readonly isRemoveApproval: boolean;1827 readonly asRemoveApproval: {1828 readonly proposalId: Compact<u32>;1829 } & Struct;1830 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1831 }18321833 /** @name FrameSupportPalletId (192) */1834 interface FrameSupportPalletId extends U8aFixed {}18351836 /** @name PalletTreasuryError (193) */1837 interface PalletTreasuryError extends Enum {1838 readonly isInsufficientProposersBalance: boolean;1839 readonly isInvalidIndex: boolean;1840 readonly isTooManyApprovals: boolean;1841 readonly isInsufficientPermission: boolean;1842 readonly isProposalNotApproved: boolean;1843 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1844 }18451846 /** @name PalletSudoCall (194) */1847 interface PalletSudoCall extends Enum {1848 readonly isSudo: boolean;1849 readonly asSudo: {1850 readonly call: Call;1851 } & Struct;1852 readonly isSudoUncheckedWeight: boolean;1853 readonly asSudoUncheckedWeight: {1854 readonly call: Call;1855 readonly weight: SpWeightsWeightV2Weight;1856 } & Struct;1857 readonly isSetKey: boolean;1858 readonly asSetKey: {1859 readonly new_: MultiAddress;1860 } & Struct;1861 readonly isSudoAs: boolean;1862 readonly asSudoAs: {1863 readonly who: MultiAddress;1864 readonly call: Call;1865 } & Struct;1866 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1867 }18681869 /** @name OrmlVestingModuleCall (196) */1870 interface OrmlVestingModuleCall extends Enum {1871 readonly isClaim: boolean;1872 readonly isVestedTransfer: boolean;1873 readonly asVestedTransfer: {1874 readonly dest: MultiAddress;1875 readonly schedule: OrmlVestingVestingSchedule;1876 } & Struct;1877 readonly isUpdateVestingSchedules: boolean;1878 readonly asUpdateVestingSchedules: {1879 readonly who: MultiAddress;1880 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1881 } & Struct;1882 readonly isClaimFor: boolean;1883 readonly asClaimFor: {1884 readonly dest: MultiAddress;1885 } & Struct;1886 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1887 }18881889 /** @name OrmlXtokensModuleCall (198) */1890 interface OrmlXtokensModuleCall extends Enum {1891 readonly isTransfer: boolean;1892 readonly asTransfer: {1893 readonly currencyId: PalletForeignAssetsAssetIds;1894 readonly amount: u128;1895 readonly dest: XcmVersionedMultiLocation;1896 readonly destWeightLimit: XcmV2WeightLimit;1897 } & Struct;1898 readonly isTransferMultiasset: boolean;1899 readonly asTransferMultiasset: {1900 readonly asset: XcmVersionedMultiAsset;1901 readonly dest: XcmVersionedMultiLocation;1902 readonly destWeightLimit: XcmV2WeightLimit;1903 } & Struct;1904 readonly isTransferWithFee: boolean;1905 readonly asTransferWithFee: {1906 readonly currencyId: PalletForeignAssetsAssetIds;1907 readonly amount: u128;1908 readonly fee: u128;1909 readonly dest: XcmVersionedMultiLocation;1910 readonly destWeightLimit: XcmV2WeightLimit;1911 } & Struct;1912 readonly isTransferMultiassetWithFee: boolean;1913 readonly asTransferMultiassetWithFee: {1914 readonly asset: XcmVersionedMultiAsset;1915 readonly fee: XcmVersionedMultiAsset;1916 readonly dest: XcmVersionedMultiLocation;1917 readonly destWeightLimit: XcmV2WeightLimit;1918 } & Struct;1919 readonly isTransferMulticurrencies: boolean;1920 readonly asTransferMulticurrencies: {1921 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1922 readonly feeItem: u32;1923 readonly dest: XcmVersionedMultiLocation;1924 readonly destWeightLimit: XcmV2WeightLimit;1925 } & Struct;1926 readonly isTransferMultiassets: boolean;1927 readonly asTransferMultiassets: {1928 readonly assets: XcmVersionedMultiAssets;1929 readonly feeItem: u32;1930 readonly dest: XcmVersionedMultiLocation;1931 readonly destWeightLimit: XcmV2WeightLimit;1932 } & Struct;1933 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1934 }19351936 /** @name XcmVersionedMultiAsset (199) */1937 interface XcmVersionedMultiAsset extends Enum {1938 readonly isV0: boolean;1939 readonly asV0: XcmV0MultiAsset;1940 readonly isV1: boolean;1941 readonly asV1: XcmV1MultiAsset;1942 readonly type: 'V0' | 'V1';1943 }19441945 /** @name OrmlTokensModuleCall (202) */1946 interface OrmlTokensModuleCall extends Enum {1947 readonly isTransfer: boolean;1948 readonly asTransfer: {1949 readonly dest: MultiAddress;1950 readonly currencyId: PalletForeignAssetsAssetIds;1951 readonly amount: Compact<u128>;1952 } & Struct;1953 readonly isTransferAll: boolean;1954 readonly asTransferAll: {1955 readonly dest: MultiAddress;1956 readonly currencyId: PalletForeignAssetsAssetIds;1957 readonly keepAlive: bool;1958 } & Struct;1959 readonly isTransferKeepAlive: boolean;1960 readonly asTransferKeepAlive: {1961 readonly dest: MultiAddress;1962 readonly currencyId: PalletForeignAssetsAssetIds;1963 readonly amount: Compact<u128>;1964 } & Struct;1965 readonly isForceTransfer: boolean;1966 readonly asForceTransfer: {1967 readonly source: MultiAddress;1968 readonly dest: MultiAddress;1969 readonly currencyId: PalletForeignAssetsAssetIds;1970 readonly amount: Compact<u128>;1971 } & Struct;1972 readonly isSetBalance: boolean;1973 readonly asSetBalance: {1974 readonly who: MultiAddress;1975 readonly currencyId: PalletForeignAssetsAssetIds;1976 readonly newFree: Compact<u128>;1977 readonly newReserved: Compact<u128>;1978 } & Struct;1979 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1980 }19811982 /** @name CumulusPalletXcmpQueueCall (203) */1983 interface CumulusPalletXcmpQueueCall extends Enum {1984 readonly isServiceOverweight: boolean;1985 readonly asServiceOverweight: {1986 readonly index: u64;1987 readonly weightLimit: u64;1988 } & Struct;1989 readonly isSuspendXcmExecution: boolean;1990 readonly isResumeXcmExecution: boolean;1991 readonly isUpdateSuspendThreshold: boolean;1992 readonly asUpdateSuspendThreshold: {1993 readonly new_: u32;1994 } & Struct;1995 readonly isUpdateDropThreshold: boolean;1996 readonly asUpdateDropThreshold: {1997 readonly new_: u32;1998 } & Struct;1999 readonly isUpdateResumeThreshold: boolean;2000 readonly asUpdateResumeThreshold: {2001 readonly new_: u32;2002 } & Struct;2003 readonly isUpdateThresholdWeight: boolean;2004 readonly asUpdateThresholdWeight: {2005 readonly new_: u64;2006 } & Struct;2007 readonly isUpdateWeightRestrictDecay: boolean;2008 readonly asUpdateWeightRestrictDecay: {2009 readonly new_: u64;2010 } & Struct;2011 readonly isUpdateXcmpMaxIndividualWeight: boolean;2012 readonly asUpdateXcmpMaxIndividualWeight: {2013 readonly new_: u64;2014 } & Struct;2015 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2016 }20172018 /** @name PalletXcmCall (204) */2019 interface PalletXcmCall extends Enum {2020 readonly isSend: boolean;2021 readonly asSend: {2022 readonly dest: XcmVersionedMultiLocation;2023 readonly message: XcmVersionedXcm;2024 } & Struct;2025 readonly isTeleportAssets: boolean;2026 readonly asTeleportAssets: {2027 readonly dest: XcmVersionedMultiLocation;2028 readonly beneficiary: XcmVersionedMultiLocation;2029 readonly assets: XcmVersionedMultiAssets;2030 readonly feeAssetItem: u32;2031 } & Struct;2032 readonly isReserveTransferAssets: boolean;2033 readonly asReserveTransferAssets: {2034 readonly dest: XcmVersionedMultiLocation;2035 readonly beneficiary: XcmVersionedMultiLocation;2036 readonly assets: XcmVersionedMultiAssets;2037 readonly feeAssetItem: u32;2038 } & Struct;2039 readonly isExecute: boolean;2040 readonly asExecute: {2041 readonly message: XcmVersionedXcm;2042 readonly maxWeight: u64;2043 } & Struct;2044 readonly isForceXcmVersion: boolean;2045 readonly asForceXcmVersion: {2046 readonly location: XcmV1MultiLocation;2047 readonly xcmVersion: u32;2048 } & Struct;2049 readonly isForceDefaultXcmVersion: boolean;2050 readonly asForceDefaultXcmVersion: {2051 readonly maybeXcmVersion: Option<u32>;2052 } & Struct;2053 readonly isForceSubscribeVersionNotify: boolean;2054 readonly asForceSubscribeVersionNotify: {2055 readonly location: XcmVersionedMultiLocation;2056 } & Struct;2057 readonly isForceUnsubscribeVersionNotify: boolean;2058 readonly asForceUnsubscribeVersionNotify: {2059 readonly location: XcmVersionedMultiLocation;2060 } & Struct;2061 readonly isLimitedReserveTransferAssets: boolean;2062 readonly asLimitedReserveTransferAssets: {2063 readonly dest: XcmVersionedMultiLocation;2064 readonly beneficiary: XcmVersionedMultiLocation;2065 readonly assets: XcmVersionedMultiAssets;2066 readonly feeAssetItem: u32;2067 readonly weightLimit: XcmV2WeightLimit;2068 } & Struct;2069 readonly isLimitedTeleportAssets: boolean;2070 readonly asLimitedTeleportAssets: {2071 readonly dest: XcmVersionedMultiLocation;2072 readonly beneficiary: XcmVersionedMultiLocation;2073 readonly assets: XcmVersionedMultiAssets;2074 readonly feeAssetItem: u32;2075 readonly weightLimit: XcmV2WeightLimit;2076 } & Struct;2077 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2078 }20792080 /** @name XcmVersionedXcm (205) */2081 interface XcmVersionedXcm extends Enum {2082 readonly isV0: boolean;2083 readonly asV0: XcmV0Xcm;2084 readonly isV1: boolean;2085 readonly asV1: XcmV1Xcm;2086 readonly isV2: boolean;2087 readonly asV2: XcmV2Xcm;2088 readonly type: 'V0' | 'V1' | 'V2';2089 }20902091 /** @name XcmV0Xcm (206) */2092 interface XcmV0Xcm extends Enum {2093 readonly isWithdrawAsset: boolean;2094 readonly asWithdrawAsset: {2095 readonly assets: Vec<XcmV0MultiAsset>;2096 readonly effects: Vec<XcmV0Order>;2097 } & Struct;2098 readonly isReserveAssetDeposit: boolean;2099 readonly asReserveAssetDeposit: {2100 readonly assets: Vec<XcmV0MultiAsset>;2101 readonly effects: Vec<XcmV0Order>;2102 } & Struct;2103 readonly isTeleportAsset: boolean;2104 readonly asTeleportAsset: {2105 readonly assets: Vec<XcmV0MultiAsset>;2106 readonly effects: Vec<XcmV0Order>;2107 } & Struct;2108 readonly isQueryResponse: boolean;2109 readonly asQueryResponse: {2110 readonly queryId: Compact<u64>;2111 readonly response: XcmV0Response;2112 } & Struct;2113 readonly isTransferAsset: boolean;2114 readonly asTransferAsset: {2115 readonly assets: Vec<XcmV0MultiAsset>;2116 readonly dest: XcmV0MultiLocation;2117 } & Struct;2118 readonly isTransferReserveAsset: boolean;2119 readonly asTransferReserveAsset: {2120 readonly assets: Vec<XcmV0MultiAsset>;2121 readonly dest: XcmV0MultiLocation;2122 readonly effects: Vec<XcmV0Order>;2123 } & Struct;2124 readonly isTransact: boolean;2125 readonly asTransact: {2126 readonly originType: XcmV0OriginKind;2127 readonly requireWeightAtMost: u64;2128 readonly call: XcmDoubleEncoded;2129 } & Struct;2130 readonly isHrmpNewChannelOpenRequest: boolean;2131 readonly asHrmpNewChannelOpenRequest: {2132 readonly sender: Compact<u32>;2133 readonly maxMessageSize: Compact<u32>;2134 readonly maxCapacity: Compact<u32>;2135 } & Struct;2136 readonly isHrmpChannelAccepted: boolean;2137 readonly asHrmpChannelAccepted: {2138 readonly recipient: Compact<u32>;2139 } & Struct;2140 readonly isHrmpChannelClosing: boolean;2141 readonly asHrmpChannelClosing: {2142 readonly initiator: Compact<u32>;2143 readonly sender: Compact<u32>;2144 readonly recipient: Compact<u32>;2145 } & Struct;2146 readonly isRelayedFrom: boolean;2147 readonly asRelayedFrom: {2148 readonly who: XcmV0MultiLocation;2149 readonly message: XcmV0Xcm;2150 } & Struct;2151 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2152 }21532154 /** @name XcmV0Order (208) */2155 interface XcmV0Order extends Enum {2156 readonly isNull: boolean;2157 readonly isDepositAsset: boolean;2158 readonly asDepositAsset: {2159 readonly assets: Vec<XcmV0MultiAsset>;2160 readonly dest: XcmV0MultiLocation;2161 } & Struct;2162 readonly isDepositReserveAsset: boolean;2163 readonly asDepositReserveAsset: {2164 readonly assets: Vec<XcmV0MultiAsset>;2165 readonly dest: XcmV0MultiLocation;2166 readonly effects: Vec<XcmV0Order>;2167 } & Struct;2168 readonly isExchangeAsset: boolean;2169 readonly asExchangeAsset: {2170 readonly give: Vec<XcmV0MultiAsset>;2171 readonly receive: Vec<XcmV0MultiAsset>;2172 } & Struct;2173 readonly isInitiateReserveWithdraw: boolean;2174 readonly asInitiateReserveWithdraw: {2175 readonly assets: Vec<XcmV0MultiAsset>;2176 readonly reserve: XcmV0MultiLocation;2177 readonly effects: Vec<XcmV0Order>;2178 } & Struct;2179 readonly isInitiateTeleport: boolean;2180 readonly asInitiateTeleport: {2181 readonly assets: Vec<XcmV0MultiAsset>;2182 readonly dest: XcmV0MultiLocation;2183 readonly effects: Vec<XcmV0Order>;2184 } & Struct;2185 readonly isQueryHolding: boolean;2186 readonly asQueryHolding: {2187 readonly queryId: Compact<u64>;2188 readonly dest: XcmV0MultiLocation;2189 readonly assets: Vec<XcmV0MultiAsset>;2190 } & Struct;2191 readonly isBuyExecution: boolean;2192 readonly asBuyExecution: {2193 readonly fees: XcmV0MultiAsset;2194 readonly weight: u64;2195 readonly debt: u64;2196 readonly haltOnError: bool;2197 readonly xcm: Vec<XcmV0Xcm>;2198 } & Struct;2199 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2200 }22012202 /** @name XcmV0Response (210) */2203 interface XcmV0Response extends Enum {2204 readonly isAssets: boolean;2205 readonly asAssets: Vec<XcmV0MultiAsset>;2206 readonly type: 'Assets';2207 }22082209 /** @name XcmV1Xcm (211) */2210 interface XcmV1Xcm extends Enum {2211 readonly isWithdrawAsset: boolean;2212 readonly asWithdrawAsset: {2213 readonly assets: XcmV1MultiassetMultiAssets;2214 readonly effects: Vec<XcmV1Order>;2215 } & Struct;2216 readonly isReserveAssetDeposited: boolean;2217 readonly asReserveAssetDeposited: {2218 readonly assets: XcmV1MultiassetMultiAssets;2219 readonly effects: Vec<XcmV1Order>;2220 } & Struct;2221 readonly isReceiveTeleportedAsset: boolean;2222 readonly asReceiveTeleportedAsset: {2223 readonly assets: XcmV1MultiassetMultiAssets;2224 readonly effects: Vec<XcmV1Order>;2225 } & Struct;2226 readonly isQueryResponse: boolean;2227 readonly asQueryResponse: {2228 readonly queryId: Compact<u64>;2229 readonly response: XcmV1Response;2230 } & Struct;2231 readonly isTransferAsset: boolean;2232 readonly asTransferAsset: {2233 readonly assets: XcmV1MultiassetMultiAssets;2234 readonly beneficiary: XcmV1MultiLocation;2235 } & Struct;2236 readonly isTransferReserveAsset: boolean;2237 readonly asTransferReserveAsset: {2238 readonly assets: XcmV1MultiassetMultiAssets;2239 readonly dest: XcmV1MultiLocation;2240 readonly effects: Vec<XcmV1Order>;2241 } & Struct;2242 readonly isTransact: boolean;2243 readonly asTransact: {2244 readonly originType: XcmV0OriginKind;2245 readonly requireWeightAtMost: u64;2246 readonly call: XcmDoubleEncoded;2247 } & Struct;2248 readonly isHrmpNewChannelOpenRequest: boolean;2249 readonly asHrmpNewChannelOpenRequest: {2250 readonly sender: Compact<u32>;2251 readonly maxMessageSize: Compact<u32>;2252 readonly maxCapacity: Compact<u32>;2253 } & Struct;2254 readonly isHrmpChannelAccepted: boolean;2255 readonly asHrmpChannelAccepted: {2256 readonly recipient: Compact<u32>;2257 } & Struct;2258 readonly isHrmpChannelClosing: boolean;2259 readonly asHrmpChannelClosing: {2260 readonly initiator: Compact<u32>;2261 readonly sender: Compact<u32>;2262 readonly recipient: Compact<u32>;2263 } & Struct;2264 readonly isRelayedFrom: boolean;2265 readonly asRelayedFrom: {2266 readonly who: XcmV1MultilocationJunctions;2267 readonly message: XcmV1Xcm;2268 } & Struct;2269 readonly isSubscribeVersion: boolean;2270 readonly asSubscribeVersion: {2271 readonly queryId: Compact<u64>;2272 readonly maxResponseWeight: Compact<u64>;2273 } & Struct;2274 readonly isUnsubscribeVersion: boolean;2275 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2276 }22772278 /** @name XcmV1Order (213) */2279 interface XcmV1Order extends Enum {2280 readonly isNoop: boolean;2281 readonly isDepositAsset: boolean;2282 readonly asDepositAsset: {2283 readonly assets: XcmV1MultiassetMultiAssetFilter;2284 readonly maxAssets: u32;2285 readonly beneficiary: XcmV1MultiLocation;2286 } & Struct;2287 readonly isDepositReserveAsset: boolean;2288 readonly asDepositReserveAsset: {2289 readonly assets: XcmV1MultiassetMultiAssetFilter;2290 readonly maxAssets: u32;2291 readonly dest: XcmV1MultiLocation;2292 readonly effects: Vec<XcmV1Order>;2293 } & Struct;2294 readonly isExchangeAsset: boolean;2295 readonly asExchangeAsset: {2296 readonly give: XcmV1MultiassetMultiAssetFilter;2297 readonly receive: XcmV1MultiassetMultiAssets;2298 } & Struct;2299 readonly isInitiateReserveWithdraw: boolean;2300 readonly asInitiateReserveWithdraw: {2301 readonly assets: XcmV1MultiassetMultiAssetFilter;2302 readonly reserve: XcmV1MultiLocation;2303 readonly effects: Vec<XcmV1Order>;2304 } & Struct;2305 readonly isInitiateTeleport: boolean;2306 readonly asInitiateTeleport: {2307 readonly assets: XcmV1MultiassetMultiAssetFilter;2308 readonly dest: XcmV1MultiLocation;2309 readonly effects: Vec<XcmV1Order>;2310 } & Struct;2311 readonly isQueryHolding: boolean;2312 readonly asQueryHolding: {2313 readonly queryId: Compact<u64>;2314 readonly dest: XcmV1MultiLocation;2315 readonly assets: XcmV1MultiassetMultiAssetFilter;2316 } & Struct;2317 readonly isBuyExecution: boolean;2318 readonly asBuyExecution: {2319 readonly fees: XcmV1MultiAsset;2320 readonly weight: u64;2321 readonly debt: u64;2322 readonly haltOnError: bool;2323 readonly instructions: Vec<XcmV1Xcm>;2324 } & Struct;2325 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2326 }23272328 /** @name XcmV1Response (215) */2329 interface XcmV1Response extends Enum {2330 readonly isAssets: boolean;2331 readonly asAssets: XcmV1MultiassetMultiAssets;2332 readonly isVersion: boolean;2333 readonly asVersion: u32;2334 readonly type: 'Assets' | 'Version';2335 }23362337 /** @name CumulusPalletXcmCall (229) */2338 type CumulusPalletXcmCall = Null;23392340 /** @name CumulusPalletDmpQueueCall (230) */2341 interface CumulusPalletDmpQueueCall extends Enum {2342 readonly isServiceOverweight: boolean;2343 readonly asServiceOverweight: {2344 readonly index: u64;2345 readonly weightLimit: u64;2346 } & Struct;2347 readonly type: 'ServiceOverweight';2348 }23492350 /** @name PalletInflationCall (231) */2351 interface PalletInflationCall extends Enum {2352 readonly isStartInflation: boolean;2353 readonly asStartInflation: {2354 readonly inflationStartRelayBlock: u32;2355 } & Struct;2356 readonly type: 'StartInflation';2357 }23582359 /** @name PalletUniqueCall (232) */2360 interface PalletUniqueCall extends Enum {2361 readonly isCreateCollection: boolean;2362 readonly asCreateCollection: {2363 readonly collectionName: Vec<u16>;2364 readonly collectionDescription: Vec<u16>;2365 readonly tokenPrefix: Bytes;2366 readonly mode: UpDataStructsCollectionMode;2367 } & Struct;2368 readonly isCreateCollectionEx: boolean;2369 readonly asCreateCollectionEx: {2370 readonly data: UpDataStructsCreateCollectionData;2371 } & Struct;2372 readonly isDestroyCollection: boolean;2373 readonly asDestroyCollection: {2374 readonly collectionId: u32;2375 } & Struct;2376 readonly isAddToAllowList: boolean;2377 readonly asAddToAllowList: {2378 readonly collectionId: u32;2379 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2380 } & Struct;2381 readonly isRemoveFromAllowList: boolean;2382 readonly asRemoveFromAllowList: {2383 readonly collectionId: u32;2384 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2385 } & Struct;2386 readonly isChangeCollectionOwner: boolean;2387 readonly asChangeCollectionOwner: {2388 readonly collectionId: u32;2389 readonly newOwner: AccountId32;2390 } & Struct;2391 readonly isAddCollectionAdmin: boolean;2392 readonly asAddCollectionAdmin: {2393 readonly collectionId: u32;2394 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2395 } & Struct;2396 readonly isRemoveCollectionAdmin: boolean;2397 readonly asRemoveCollectionAdmin: {2398 readonly collectionId: u32;2399 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2400 } & Struct;2401 readonly isSetCollectionSponsor: boolean;2402 readonly asSetCollectionSponsor: {2403 readonly collectionId: u32;2404 readonly newSponsor: AccountId32;2405 } & Struct;2406 readonly isConfirmSponsorship: boolean;2407 readonly asConfirmSponsorship: {2408 readonly collectionId: u32;2409 } & Struct;2410 readonly isRemoveCollectionSponsor: boolean;2411 readonly asRemoveCollectionSponsor: {2412 readonly collectionId: u32;2413 } & Struct;2414 readonly isCreateItem: boolean;2415 readonly asCreateItem: {2416 readonly collectionId: u32;2417 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2418 readonly data: UpDataStructsCreateItemData;2419 } & Struct;2420 readonly isCreateMultipleItems: boolean;2421 readonly asCreateMultipleItems: {2422 readonly collectionId: u32;2423 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2424 readonly itemsData: Vec<UpDataStructsCreateItemData>;2425 } & Struct;2426 readonly isSetCollectionProperties: boolean;2427 readonly asSetCollectionProperties: {2428 readonly collectionId: u32;2429 readonly properties: Vec<UpDataStructsProperty>;2430 } & Struct;2431 readonly isDeleteCollectionProperties: boolean;2432 readonly asDeleteCollectionProperties: {2433 readonly collectionId: u32;2434 readonly propertyKeys: Vec<Bytes>;2435 } & Struct;2436 readonly isSetTokenProperties: boolean;2437 readonly asSetTokenProperties: {2438 readonly collectionId: u32;2439 readonly tokenId: u32;2440 readonly properties: Vec<UpDataStructsProperty>;2441 } & Struct;2442 readonly isDeleteTokenProperties: boolean;2443 readonly asDeleteTokenProperties: {2444 readonly collectionId: u32;2445 readonly tokenId: u32;2446 readonly propertyKeys: Vec<Bytes>;2447 } & Struct;2448 readonly isSetTokenPropertyPermissions: boolean;2449 readonly asSetTokenPropertyPermissions: {2450 readonly collectionId: u32;2451 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2452 } & Struct;2453 readonly isCreateMultipleItemsEx: boolean;2454 readonly asCreateMultipleItemsEx: {2455 readonly collectionId: u32;2456 readonly data: UpDataStructsCreateItemExData;2457 } & Struct;2458 readonly isSetTransfersEnabledFlag: boolean;2459 readonly asSetTransfersEnabledFlag: {2460 readonly collectionId: u32;2461 readonly value: bool;2462 } & Struct;2463 readonly isBurnItem: boolean;2464 readonly asBurnItem: {2465 readonly collectionId: u32;2466 readonly itemId: u32;2467 readonly value: u128;2468 } & Struct;2469 readonly isBurnFrom: boolean;2470 readonly asBurnFrom: {2471 readonly collectionId: u32;2472 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2473 readonly itemId: u32;2474 readonly value: u128;2475 } & Struct;2476 readonly isTransfer: boolean;2477 readonly asTransfer: {2478 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2479 readonly collectionId: u32;2480 readonly itemId: u32;2481 readonly value: u128;2482 } & Struct;2483 readonly isApprove: boolean;2484 readonly asApprove: {2485 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2486 readonly collectionId: u32;2487 readonly itemId: u32;2488 readonly amount: u128;2489 } & Struct;2490 readonly isTransferFrom: boolean;2491 readonly asTransferFrom: {2492 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2493 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2494 readonly collectionId: u32;2495 readonly itemId: u32;2496 readonly value: u128;2497 } & Struct;2498 readonly isSetCollectionLimits: boolean;2499 readonly asSetCollectionLimits: {2500 readonly collectionId: u32;2501 readonly newLimit: UpDataStructsCollectionLimits;2502 } & Struct;2503 readonly isSetCollectionPermissions: boolean;2504 readonly asSetCollectionPermissions: {2505 readonly collectionId: u32;2506 readonly newPermission: UpDataStructsCollectionPermissions;2507 } & Struct;2508 readonly isRepartition: boolean;2509 readonly asRepartition: {2510 readonly collectionId: u32;2511 readonly tokenId: u32;2512 readonly amount: u128;2513 } & Struct;2514 readonly isSetAllowanceForAll: boolean;2515 readonly asSetAllowanceForAll: {2516 readonly collectionId: u32;2517 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2518 readonly approve: bool;2519 } & Struct;2520 readonly isRepairItem: boolean;2521 readonly asRepairItem: {2522 readonly collectionId: u32;2523 readonly itemId: u32;2524 } & Struct;2525 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' | 'RepairItem';2526 }25272528 /** @name UpDataStructsCollectionMode (237) */2529 interface UpDataStructsCollectionMode extends Enum {2530 readonly isNft: boolean;2531 readonly isFungible: boolean;2532 readonly asFungible: u8;2533 readonly isReFungible: boolean;2534 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2535 }25362537 /** @name UpDataStructsCreateCollectionData (238) */2538 interface UpDataStructsCreateCollectionData extends Struct {2539 readonly mode: UpDataStructsCollectionMode;2540 readonly access: Option<UpDataStructsAccessMode>;2541 readonly name: Vec<u16>;2542 readonly description: Vec<u16>;2543 readonly tokenPrefix: Bytes;2544 readonly pendingSponsor: Option<AccountId32>;2545 readonly limits: Option<UpDataStructsCollectionLimits>;2546 readonly permissions: Option<UpDataStructsCollectionPermissions>;2547 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2548 readonly properties: Vec<UpDataStructsProperty>;2549 }25502551 /** @name UpDataStructsAccessMode (240) */2552 interface UpDataStructsAccessMode extends Enum {2553 readonly isNormal: boolean;2554 readonly isAllowList: boolean;2555 readonly type: 'Normal' | 'AllowList';2556 }25572558 /** @name UpDataStructsCollectionLimits (242) */2559 interface UpDataStructsCollectionLimits extends Struct {2560 readonly accountTokenOwnershipLimit: Option<u32>;2561 readonly sponsoredDataSize: Option<u32>;2562 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2563 readonly tokenLimit: Option<u32>;2564 readonly sponsorTransferTimeout: Option<u32>;2565 readonly sponsorApproveTimeout: Option<u32>;2566 readonly ownerCanTransfer: Option<bool>;2567 readonly ownerCanDestroy: Option<bool>;2568 readonly transfersEnabled: Option<bool>;2569 }25702571 /** @name UpDataStructsSponsoringRateLimit (244) */2572 interface UpDataStructsSponsoringRateLimit extends Enum {2573 readonly isSponsoringDisabled: boolean;2574 readonly isBlocks: boolean;2575 readonly asBlocks: u32;2576 readonly type: 'SponsoringDisabled' | 'Blocks';2577 }25782579 /** @name UpDataStructsCollectionPermissions (247) */2580 interface UpDataStructsCollectionPermissions extends Struct {2581 readonly access: Option<UpDataStructsAccessMode>;2582 readonly mintMode: Option<bool>;2583 readonly nesting: Option<UpDataStructsNestingPermissions>;2584 }25852586 /** @name UpDataStructsNestingPermissions (249) */2587 interface UpDataStructsNestingPermissions extends Struct {2588 readonly tokenOwner: bool;2589 readonly collectionAdmin: bool;2590 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2591 }25922593 /** @name UpDataStructsOwnerRestrictedSet (251) */2594 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}25952596 /** @name UpDataStructsPropertyKeyPermission (256) */2597 interface UpDataStructsPropertyKeyPermission extends Struct {2598 readonly key: Bytes;2599 readonly permission: UpDataStructsPropertyPermission;2600 }26012602 /** @name UpDataStructsPropertyPermission (257) */2603 interface UpDataStructsPropertyPermission extends Struct {2604 readonly mutable: bool;2605 readonly collectionAdmin: bool;2606 readonly tokenOwner: bool;2607 }26082609 /** @name UpDataStructsProperty (260) */2610 interface UpDataStructsProperty extends Struct {2611 readonly key: Bytes;2612 readonly value: Bytes;2613 }26142615 /** @name UpDataStructsCreateItemData (263) */2616 interface UpDataStructsCreateItemData extends Enum {2617 readonly isNft: boolean;2618 readonly asNft: UpDataStructsCreateNftData;2619 readonly isFungible: boolean;2620 readonly asFungible: UpDataStructsCreateFungibleData;2621 readonly isReFungible: boolean;2622 readonly asReFungible: UpDataStructsCreateReFungibleData;2623 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2624 }26252626 /** @name UpDataStructsCreateNftData (264) */2627 interface UpDataStructsCreateNftData extends Struct {2628 readonly properties: Vec<UpDataStructsProperty>;2629 }26302631 /** @name UpDataStructsCreateFungibleData (265) */2632 interface UpDataStructsCreateFungibleData extends Struct {2633 readonly value: u128;2634 }26352636 /** @name UpDataStructsCreateReFungibleData (266) */2637 interface UpDataStructsCreateReFungibleData extends Struct {2638 readonly pieces: u128;2639 readonly properties: Vec<UpDataStructsProperty>;2640 }26412642 /** @name UpDataStructsCreateItemExData (269) */2643 interface UpDataStructsCreateItemExData extends Enum {2644 readonly isNft: boolean;2645 readonly asNft: Vec<UpDataStructsCreateNftExData>;2646 readonly isFungible: boolean;2647 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2648 readonly isRefungibleMultipleItems: boolean;2649 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2650 readonly isRefungibleMultipleOwners: boolean;2651 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2652 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2653 }26542655 /** @name UpDataStructsCreateNftExData (271) */2656 interface UpDataStructsCreateNftExData extends Struct {2657 readonly properties: Vec<UpDataStructsProperty>;2658 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2659 }26602661 /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */2662 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2663 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2664 readonly pieces: u128;2665 readonly properties: Vec<UpDataStructsProperty>;2666 }26672668 /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */2669 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2670 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2671 readonly properties: Vec<UpDataStructsProperty>;2672 }26732674 /** @name PalletConfigurationCall (281) */2675 interface PalletConfigurationCall extends Enum {2676 readonly isSetWeightToFeeCoefficientOverride: boolean;2677 readonly asSetWeightToFeeCoefficientOverride: {2678 readonly coeff: Option<u32>;2679 } & Struct;2680 readonly isSetMinGasPriceOverride: boolean;2681 readonly asSetMinGasPriceOverride: {2682 readonly coeff: Option<u64>;2683 } & Struct;2684 readonly isSetXcmAllowedLocations: boolean;2685 readonly asSetXcmAllowedLocations: {2686 readonly locations: Option<Vec<XcmV1MultiLocation>>;2687 } & Struct;2688 readonly isSetAppPromotionConfigurationOverride: boolean;2689 readonly asSetAppPromotionConfigurationOverride: {2690 readonly configuration: PalletConfigurationAppPromotionConfiguration;2691 } & Struct;2692 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';2693 }26942695 /** @name PalletConfigurationAppPromotionConfiguration (286) */2696 interface PalletConfigurationAppPromotionConfiguration extends Struct {2697 readonly recalculationInterval: Option<u32>;2698 readonly pendingInterval: Option<u32>;2699 readonly intervalIncome: Option<Perbill>;2700 readonly maxStakersPerCalculation: Option<u8>;2701 }27022703 /** @name PalletTemplateTransactionPaymentCall (289) */2704 type PalletTemplateTransactionPaymentCall = Null;27052706 /** @name PalletStructureCall (290) */2707 type PalletStructureCall = Null;27082709 /** @name PalletRmrkCoreCall (291) */2710 interface PalletRmrkCoreCall extends Enum {2711 readonly isCreateCollection: boolean;2712 readonly asCreateCollection: {2713 readonly metadata: Bytes;2714 readonly max: Option<u32>;2715 readonly symbol: Bytes;2716 } & Struct;2717 readonly isDestroyCollection: boolean;2718 readonly asDestroyCollection: {2719 readonly collectionId: u32;2720 } & Struct;2721 readonly isChangeCollectionIssuer: boolean;2722 readonly asChangeCollectionIssuer: {2723 readonly collectionId: u32;2724 readonly newIssuer: MultiAddress;2725 } & Struct;2726 readonly isLockCollection: boolean;2727 readonly asLockCollection: {2728 readonly collectionId: u32;2729 } & Struct;2730 readonly isMintNft: boolean;2731 readonly asMintNft: {2732 readonly owner: Option<AccountId32>;2733 readonly collectionId: u32;2734 readonly recipient: Option<AccountId32>;2735 readonly royaltyAmount: Option<Permill>;2736 readonly metadata: Bytes;2737 readonly transferable: bool;2738 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2739 } & Struct;2740 readonly isBurnNft: boolean;2741 readonly asBurnNft: {2742 readonly collectionId: u32;2743 readonly nftId: u32;2744 readonly maxBurns: u32;2745 } & Struct;2746 readonly isSend: boolean;2747 readonly asSend: {2748 readonly rmrkCollectionId: u32;2749 readonly rmrkNftId: u32;2750 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2751 } & Struct;2752 readonly isAcceptNft: boolean;2753 readonly asAcceptNft: {2754 readonly rmrkCollectionId: u32;2755 readonly rmrkNftId: u32;2756 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2757 } & Struct;2758 readonly isRejectNft: boolean;2759 readonly asRejectNft: {2760 readonly rmrkCollectionId: u32;2761 readonly rmrkNftId: u32;2762 } & Struct;2763 readonly isAcceptResource: boolean;2764 readonly asAcceptResource: {2765 readonly rmrkCollectionId: u32;2766 readonly rmrkNftId: u32;2767 readonly resourceId: u32;2768 } & Struct;2769 readonly isAcceptResourceRemoval: boolean;2770 readonly asAcceptResourceRemoval: {2771 readonly rmrkCollectionId: u32;2772 readonly rmrkNftId: u32;2773 readonly resourceId: u32;2774 } & Struct;2775 readonly isSetProperty: boolean;2776 readonly asSetProperty: {2777 readonly rmrkCollectionId: Compact<u32>;2778 readonly maybeNftId: Option<u32>;2779 readonly key: Bytes;2780 readonly value: Bytes;2781 } & Struct;2782 readonly isSetPriority: boolean;2783 readonly asSetPriority: {2784 readonly rmrkCollectionId: u32;2785 readonly rmrkNftId: u32;2786 readonly priorities: Vec<u32>;2787 } & Struct;2788 readonly isAddBasicResource: boolean;2789 readonly asAddBasicResource: {2790 readonly rmrkCollectionId: u32;2791 readonly nftId: u32;2792 readonly resource: RmrkTraitsResourceBasicResource;2793 } & Struct;2794 readonly isAddComposableResource: boolean;2795 readonly asAddComposableResource: {2796 readonly rmrkCollectionId: u32;2797 readonly nftId: u32;2798 readonly resource: RmrkTraitsResourceComposableResource;2799 } & Struct;2800 readonly isAddSlotResource: boolean;2801 readonly asAddSlotResource: {2802 readonly rmrkCollectionId: u32;2803 readonly nftId: u32;2804 readonly resource: RmrkTraitsResourceSlotResource;2805 } & Struct;2806 readonly isRemoveResource: boolean;2807 readonly asRemoveResource: {2808 readonly rmrkCollectionId: u32;2809 readonly nftId: u32;2810 readonly resourceId: u32;2811 } & Struct;2812 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2813 }28142815 /** @name RmrkTraitsResourceResourceTypes (297) */2816 interface RmrkTraitsResourceResourceTypes extends Enum {2817 readonly isBasic: boolean;2818 readonly asBasic: RmrkTraitsResourceBasicResource;2819 readonly isComposable: boolean;2820 readonly asComposable: RmrkTraitsResourceComposableResource;2821 readonly isSlot: boolean;2822 readonly asSlot: RmrkTraitsResourceSlotResource;2823 readonly type: 'Basic' | 'Composable' | 'Slot';2824 }28252826 /** @name RmrkTraitsResourceBasicResource (299) */2827 interface RmrkTraitsResourceBasicResource extends Struct {2828 readonly src: Option<Bytes>;2829 readonly metadata: Option<Bytes>;2830 readonly license: Option<Bytes>;2831 readonly thumb: Option<Bytes>;2832 }28332834 /** @name RmrkTraitsResourceComposableResource (301) */2835 interface RmrkTraitsResourceComposableResource extends Struct {2836 readonly parts: Vec<u32>;2837 readonly base: u32;2838 readonly src: Option<Bytes>;2839 readonly metadata: Option<Bytes>;2840 readonly license: Option<Bytes>;2841 readonly thumb: Option<Bytes>;2842 }28432844 /** @name RmrkTraitsResourceSlotResource (302) */2845 interface RmrkTraitsResourceSlotResource extends Struct {2846 readonly base: u32;2847 readonly src: Option<Bytes>;2848 readonly metadata: Option<Bytes>;2849 readonly slot: u32;2850 readonly license: Option<Bytes>;2851 readonly thumb: Option<Bytes>;2852 }28532854 /** @name PalletRmrkEquipCall (305) */2855 interface PalletRmrkEquipCall extends Enum {2856 readonly isCreateBase: boolean;2857 readonly asCreateBase: {2858 readonly baseType: Bytes;2859 readonly symbol: Bytes;2860 readonly parts: Vec<RmrkTraitsPartPartType>;2861 } & Struct;2862 readonly isThemeAdd: boolean;2863 readonly asThemeAdd: {2864 readonly baseId: u32;2865 readonly theme: RmrkTraitsTheme;2866 } & Struct;2867 readonly isEquippable: boolean;2868 readonly asEquippable: {2869 readonly baseId: u32;2870 readonly slotId: u32;2871 readonly equippables: RmrkTraitsPartEquippableList;2872 } & Struct;2873 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2874 }28752876 /** @name RmrkTraitsPartPartType (308) */2877 interface RmrkTraitsPartPartType extends Enum {2878 readonly isFixedPart: boolean;2879 readonly asFixedPart: RmrkTraitsPartFixedPart;2880 readonly isSlotPart: boolean;2881 readonly asSlotPart: RmrkTraitsPartSlotPart;2882 readonly type: 'FixedPart' | 'SlotPart';2883 }28842885 /** @name RmrkTraitsPartFixedPart (310) */2886 interface RmrkTraitsPartFixedPart extends Struct {2887 readonly id: u32;2888 readonly z: u32;2889 readonly src: Bytes;2890 }28912892 /** @name RmrkTraitsPartSlotPart (311) */2893 interface RmrkTraitsPartSlotPart extends Struct {2894 readonly id: u32;2895 readonly equippable: RmrkTraitsPartEquippableList;2896 readonly src: Bytes;2897 readonly z: u32;2898 }28992900 /** @name RmrkTraitsPartEquippableList (312) */2901 interface RmrkTraitsPartEquippableList extends Enum {2902 readonly isAll: boolean;2903 readonly isEmpty: boolean;2904 readonly isCustom: boolean;2905 readonly asCustom: Vec<u32>;2906 readonly type: 'All' | 'Empty' | 'Custom';2907 }29082909 /** @name RmrkTraitsTheme (314) */2910 interface RmrkTraitsTheme extends Struct {2911 readonly name: Bytes;2912 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2913 readonly inherit: bool;2914 }29152916 /** @name RmrkTraitsThemeThemeProperty (316) */2917 interface RmrkTraitsThemeThemeProperty extends Struct {2918 readonly key: Bytes;2919 readonly value: Bytes;2920 }29212922 /** @name PalletAppPromotionCall (318) */2923 interface PalletAppPromotionCall extends Enum {2924 readonly isSetAdminAddress: boolean;2925 readonly asSetAdminAddress: {2926 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2927 } & Struct;2928 readonly isStake: boolean;2929 readonly asStake: {2930 readonly amount: u128;2931 } & Struct;2932 readonly isUnstake: boolean;2933 readonly isSponsorCollection: boolean;2934 readonly asSponsorCollection: {2935 readonly collectionId: u32;2936 } & Struct;2937 readonly isStopSponsoringCollection: boolean;2938 readonly asStopSponsoringCollection: {2939 readonly collectionId: u32;2940 } & Struct;2941 readonly isSponsorContract: boolean;2942 readonly asSponsorContract: {2943 readonly contractId: H160;2944 } & Struct;2945 readonly isStopSponsoringContract: boolean;2946 readonly asStopSponsoringContract: {2947 readonly contractId: H160;2948 } & Struct;2949 readonly isPayoutStakers: boolean;2950 readonly asPayoutStakers: {2951 readonly stakersNumber: Option<u8>;2952 } & Struct;2953 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2954 }29552956 /** @name PalletForeignAssetsModuleCall (319) */2957 interface PalletForeignAssetsModuleCall extends Enum {2958 readonly isRegisterForeignAsset: boolean;2959 readonly asRegisterForeignAsset: {2960 readonly owner: AccountId32;2961 readonly location: XcmVersionedMultiLocation;2962 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2963 } & Struct;2964 readonly isUpdateForeignAsset: boolean;2965 readonly asUpdateForeignAsset: {2966 readonly foreignAssetId: u32;2967 readonly location: XcmVersionedMultiLocation;2968 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2969 } & Struct;2970 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2971 }29722973 /** @name PalletEvmCall (320) */2974 interface PalletEvmCall extends Enum {2975 readonly isWithdraw: boolean;2976 readonly asWithdraw: {2977 readonly address: H160;2978 readonly value: u128;2979 } & Struct;2980 readonly isCall: boolean;2981 readonly asCall: {2982 readonly source: H160;2983 readonly target: H160;2984 readonly input: Bytes;2985 readonly value: U256;2986 readonly gasLimit: u64;2987 readonly maxFeePerGas: U256;2988 readonly maxPriorityFeePerGas: Option<U256>;2989 readonly nonce: Option<U256>;2990 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2991 } & Struct;2992 readonly isCreate: boolean;2993 readonly asCreate: {2994 readonly source: H160;2995 readonly init: Bytes;2996 readonly value: U256;2997 readonly gasLimit: u64;2998 readonly maxFeePerGas: U256;2999 readonly maxPriorityFeePerGas: Option<U256>;3000 readonly nonce: Option<U256>;3001 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3002 } & Struct;3003 readonly isCreate2: boolean;3004 readonly asCreate2: {3005 readonly source: H160;3006 readonly init: Bytes;3007 readonly salt: H256;3008 readonly value: U256;3009 readonly gasLimit: u64;3010 readonly maxFeePerGas: U256;3011 readonly maxPriorityFeePerGas: Option<U256>;3012 readonly nonce: Option<U256>;3013 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3014 } & Struct;3015 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3016 }30173018 /** @name PalletEthereumCall (326) */3019 interface PalletEthereumCall extends Enum {3020 readonly isTransact: boolean;3021 readonly asTransact: {3022 readonly transaction: EthereumTransactionTransactionV2;3023 } & Struct;3024 readonly type: 'Transact';3025 }30263027 /** @name EthereumTransactionTransactionV2 (327) */3028 interface EthereumTransactionTransactionV2 extends Enum {3029 readonly isLegacy: boolean;3030 readonly asLegacy: EthereumTransactionLegacyTransaction;3031 readonly isEip2930: boolean;3032 readonly asEip2930: EthereumTransactionEip2930Transaction;3033 readonly isEip1559: boolean;3034 readonly asEip1559: EthereumTransactionEip1559Transaction;3035 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3036 }30373038 /** @name EthereumTransactionLegacyTransaction (328) */3039 interface EthereumTransactionLegacyTransaction extends Struct {3040 readonly nonce: U256;3041 readonly gasPrice: U256;3042 readonly gasLimit: U256;3043 readonly action: EthereumTransactionTransactionAction;3044 readonly value: U256;3045 readonly input: Bytes;3046 readonly signature: EthereumTransactionTransactionSignature;3047 }30483049 /** @name EthereumTransactionTransactionAction (329) */3050 interface EthereumTransactionTransactionAction extends Enum {3051 readonly isCall: boolean;3052 readonly asCall: H160;3053 readonly isCreate: boolean;3054 readonly type: 'Call' | 'Create';3055 }30563057 /** @name EthereumTransactionTransactionSignature (330) */3058 interface EthereumTransactionTransactionSignature extends Struct {3059 readonly v: u64;3060 readonly r: H256;3061 readonly s: H256;3062 }30633064 /** @name EthereumTransactionEip2930Transaction (332) */3065 interface EthereumTransactionEip2930Transaction extends Struct {3066 readonly chainId: u64;3067 readonly nonce: U256;3068 readonly gasPrice: U256;3069 readonly gasLimit: U256;3070 readonly action: EthereumTransactionTransactionAction;3071 readonly value: U256;3072 readonly input: Bytes;3073 readonly accessList: Vec<EthereumTransactionAccessListItem>;3074 readonly oddYParity: bool;3075 readonly r: H256;3076 readonly s: H256;3077 }30783079 /** @name EthereumTransactionAccessListItem (334) */3080 interface EthereumTransactionAccessListItem extends Struct {3081 readonly address: H160;3082 readonly storageKeys: Vec<H256>;3083 }30843085 /** @name EthereumTransactionEip1559Transaction (335) */3086 interface EthereumTransactionEip1559Transaction extends Struct {3087 readonly chainId: u64;3088 readonly nonce: U256;3089 readonly maxPriorityFeePerGas: U256;3090 readonly maxFeePerGas: U256;3091 readonly gasLimit: U256;3092 readonly action: EthereumTransactionTransactionAction;3093 readonly value: U256;3094 readonly input: Bytes;3095 readonly accessList: Vec<EthereumTransactionAccessListItem>;3096 readonly oddYParity: bool;3097 readonly r: H256;3098 readonly s: H256;3099 }31003101 /** @name PalletEvmMigrationCall (336) */3102 interface PalletEvmMigrationCall extends Enum {3103 readonly isBegin: boolean;3104 readonly asBegin: {3105 readonly address: H160;3106 } & Struct;3107 readonly isSetData: boolean;3108 readonly asSetData: {3109 readonly address: H160;3110 readonly data: Vec<ITuple<[H256, H256]>>;3111 } & Struct;3112 readonly isFinish: boolean;3113 readonly asFinish: {3114 readonly address: H160;3115 readonly code: Bytes;3116 } & Struct;3117 readonly isInsertEthLogs: boolean;3118 readonly asInsertEthLogs: {3119 readonly logs: Vec<EthereumLog>;3120 } & Struct;3121 readonly isInsertEvents: boolean;3122 readonly asInsertEvents: {3123 readonly events: Vec<Bytes>;3124 } & Struct;3125 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3126 }31273128 /** @name PalletMaintenanceCall (340) */3129 interface PalletMaintenanceCall extends Enum {3130 readonly isEnable: boolean;3131 readonly isDisable: boolean;3132 readonly type: 'Enable' | 'Disable';3133 }31343135 /** @name PalletTestUtilsCall (341) */3136 interface PalletTestUtilsCall extends Enum {3137 readonly isEnable: boolean;3138 readonly isSetTestValue: boolean;3139 readonly asSetTestValue: {3140 readonly value: u32;3141 } & Struct;3142 readonly isSetTestValueAndRollback: boolean;3143 readonly asSetTestValueAndRollback: {3144 readonly value: u32;3145 } & Struct;3146 readonly isIncTestValue: boolean;3147 readonly isJustTakeFee: boolean;3148 readonly isBatchAll: boolean;3149 readonly asBatchAll: {3150 readonly calls: Vec<Call>;3151 } & Struct;3152 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3153 }31543155 /** @name PalletSudoError (343) */3156 interface PalletSudoError extends Enum {3157 readonly isRequireSudo: boolean;3158 readonly type: 'RequireSudo';3159 }31603161 /** @name OrmlVestingModuleError (345) */3162 interface OrmlVestingModuleError extends Enum {3163 readonly isZeroVestingPeriod: boolean;3164 readonly isZeroVestingPeriodCount: boolean;3165 readonly isInsufficientBalanceToLock: boolean;3166 readonly isTooManyVestingSchedules: boolean;3167 readonly isAmountLow: boolean;3168 readonly isMaxVestingSchedulesExceeded: boolean;3169 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3170 }31713172 /** @name OrmlXtokensModuleError (346) */3173 interface OrmlXtokensModuleError extends Enum {3174 readonly isAssetHasNoReserve: boolean;3175 readonly isNotCrossChainTransfer: boolean;3176 readonly isInvalidDest: boolean;3177 readonly isNotCrossChainTransferableCurrency: boolean;3178 readonly isUnweighableMessage: boolean;3179 readonly isXcmExecutionFailed: boolean;3180 readonly isCannotReanchor: boolean;3181 readonly isInvalidAncestry: boolean;3182 readonly isInvalidAsset: boolean;3183 readonly isDestinationNotInvertible: boolean;3184 readonly isBadVersion: boolean;3185 readonly isDistinctReserveForAssetAndFee: boolean;3186 readonly isZeroFee: boolean;3187 readonly isZeroAmount: boolean;3188 readonly isTooManyAssetsBeingSent: boolean;3189 readonly isAssetIndexNonExistent: boolean;3190 readonly isFeeNotEnough: boolean;3191 readonly isNotSupportedMultiLocation: boolean;3192 readonly isMinXcmFeeNotDefined: boolean;3193 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3194 }31953196 /** @name OrmlTokensBalanceLock (349) */3197 interface OrmlTokensBalanceLock extends Struct {3198 readonly id: U8aFixed;3199 readonly amount: u128;3200 }32013202 /** @name OrmlTokensAccountData (351) */3203 interface OrmlTokensAccountData extends Struct {3204 readonly free: u128;3205 readonly reserved: u128;3206 readonly frozen: u128;3207 }32083209 /** @name OrmlTokensReserveData (353) */3210 interface OrmlTokensReserveData extends Struct {3211 readonly id: Null;3212 readonly amount: u128;3213 }32143215 /** @name OrmlTokensModuleError (355) */3216 interface OrmlTokensModuleError extends Enum {3217 readonly isBalanceTooLow: boolean;3218 readonly isAmountIntoBalanceFailed: boolean;3219 readonly isLiquidityRestrictions: boolean;3220 readonly isMaxLocksExceeded: boolean;3221 readonly isKeepAlive: boolean;3222 readonly isExistentialDeposit: boolean;3223 readonly isDeadAccount: boolean;3224 readonly isTooManyReserves: boolean;3225 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3226 }32273228 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3229 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3230 readonly sender: u32;3231 readonly state: CumulusPalletXcmpQueueInboundState;3232 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3233 }32343235 /** @name CumulusPalletXcmpQueueInboundState (358) */3236 interface CumulusPalletXcmpQueueInboundState extends Enum {3237 readonly isOk: boolean;3238 readonly isSuspended: boolean;3239 readonly type: 'Ok' | 'Suspended';3240 }32413242 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3243 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3244 readonly isConcatenatedVersionedXcm: boolean;3245 readonly isConcatenatedEncodedBlob: boolean;3246 readonly isSignals: boolean;3247 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3248 }32493250 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3251 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3252 readonly recipient: u32;3253 readonly state: CumulusPalletXcmpQueueOutboundState;3254 readonly signalsExist: bool;3255 readonly firstIndex: u16;3256 readonly lastIndex: u16;3257 }32583259 /** @name CumulusPalletXcmpQueueOutboundState (365) */3260 interface CumulusPalletXcmpQueueOutboundState extends Enum {3261 readonly isOk: boolean;3262 readonly isSuspended: boolean;3263 readonly type: 'Ok' | 'Suspended';3264 }32653266 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3267 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3268 readonly suspendThreshold: u32;3269 readonly dropThreshold: u32;3270 readonly resumeThreshold: u32;3271 readonly thresholdWeight: SpWeightsWeightV2Weight;3272 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3273 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3274 }32753276 /** @name CumulusPalletXcmpQueueError (369) */3277 interface CumulusPalletXcmpQueueError extends Enum {3278 readonly isFailedToSend: boolean;3279 readonly isBadXcmOrigin: boolean;3280 readonly isBadXcm: boolean;3281 readonly isBadOverweightIndex: boolean;3282 readonly isWeightOverLimit: boolean;3283 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3284 }32853286 /** @name PalletXcmError (370) */3287 interface PalletXcmError extends Enum {3288 readonly isUnreachable: boolean;3289 readonly isSendFailure: boolean;3290 readonly isFiltered: boolean;3291 readonly isUnweighableMessage: boolean;3292 readonly isDestinationNotInvertible: boolean;3293 readonly isEmpty: boolean;3294 readonly isCannotReanchor: boolean;3295 readonly isTooManyAssets: boolean;3296 readonly isInvalidOrigin: boolean;3297 readonly isBadVersion: boolean;3298 readonly isBadLocation: boolean;3299 readonly isNoSubscription: boolean;3300 readonly isAlreadySubscribed: boolean;3301 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3302 }33033304 /** @name CumulusPalletXcmError (371) */3305 type CumulusPalletXcmError = Null;33063307 /** @name CumulusPalletDmpQueueConfigData (372) */3308 interface CumulusPalletDmpQueueConfigData extends Struct {3309 readonly maxIndividual: SpWeightsWeightV2Weight;3310 }33113312 /** @name CumulusPalletDmpQueuePageIndexData (373) */3313 interface CumulusPalletDmpQueuePageIndexData extends Struct {3314 readonly beginUsed: u32;3315 readonly endUsed: u32;3316 readonly overweightCount: u64;3317 }33183319 /** @name CumulusPalletDmpQueueError (376) */3320 interface CumulusPalletDmpQueueError extends Enum {3321 readonly isUnknown: boolean;3322 readonly isOverLimit: boolean;3323 readonly type: 'Unknown' | 'OverLimit';3324 }33253326 /** @name PalletUniqueError (380) */3327 interface PalletUniqueError extends Enum {3328 readonly isCollectionDecimalPointLimitExceeded: boolean;3329 readonly isEmptyArgument: boolean;3330 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3331 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3332 }33333334 /** @name PalletConfigurationError (381) */3335 interface PalletConfigurationError extends Enum {3336 readonly isInconsistentConfiguration: boolean;3337 readonly type: 'InconsistentConfiguration';3338 }33393340 /** @name UpDataStructsCollection (382) */3341 interface UpDataStructsCollection extends Struct {3342 readonly owner: AccountId32;3343 readonly mode: UpDataStructsCollectionMode;3344 readonly name: Vec<u16>;3345 readonly description: Vec<u16>;3346 readonly tokenPrefix: Bytes;3347 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3348 readonly limits: UpDataStructsCollectionLimits;3349 readonly permissions: UpDataStructsCollectionPermissions;3350 readonly flags: U8aFixed;3351 }33523353 /** @name UpDataStructsSponsorshipStateAccountId32 (383) */3354 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3355 readonly isDisabled: boolean;3356 readonly isUnconfirmed: boolean;3357 readonly asUnconfirmed: AccountId32;3358 readonly isConfirmed: boolean;3359 readonly asConfirmed: AccountId32;3360 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3361 }33623363 /** @name UpDataStructsProperties (385) */3364 interface UpDataStructsProperties extends Struct {3365 readonly map: UpDataStructsPropertiesMapBoundedVec;3366 readonly consumedSpace: u32;3367 readonly spaceLimit: u32;3368 }33693370 /** @name UpDataStructsPropertiesMapBoundedVec (386) */3371 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}33723373 /** @name UpDataStructsPropertiesMapPropertyPermission (391) */3374 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}33753376 /** @name UpDataStructsCollectionStats (398) */3377 interface UpDataStructsCollectionStats extends Struct {3378 readonly created: u32;3379 readonly destroyed: u32;3380 readonly alive: u32;3381 }33823383 /** @name UpDataStructsTokenChild (399) */3384 interface UpDataStructsTokenChild extends Struct {3385 readonly token: u32;3386 readonly collection: u32;3387 }33883389 /** @name PhantomTypeUpDataStructs (400) */3390 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}33913392 /** @name UpDataStructsTokenData (402) */3393 interface UpDataStructsTokenData extends Struct {3394 readonly properties: Vec<UpDataStructsProperty>;3395 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3396 readonly pieces: u128;3397 }33983399 /** @name UpDataStructsRpcCollection (404) */3400 interface UpDataStructsRpcCollection extends Struct {3401 readonly owner: AccountId32;3402 readonly mode: UpDataStructsCollectionMode;3403 readonly name: Vec<u16>;3404 readonly description: Vec<u16>;3405 readonly tokenPrefix: Bytes;3406 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3407 readonly limits: UpDataStructsCollectionLimits;3408 readonly permissions: UpDataStructsCollectionPermissions;3409 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3410 readonly properties: Vec<UpDataStructsProperty>;3411 readonly readOnly: bool;3412 readonly flags: UpDataStructsRpcCollectionFlags;3413 }34143415 /** @name UpDataStructsRpcCollectionFlags (405) */3416 interface UpDataStructsRpcCollectionFlags extends Struct {3417 readonly foreign: bool;3418 readonly erc721metadata: bool;3419 }34203421 /** @name RmrkTraitsCollectionCollectionInfo (406) */3422 interface RmrkTraitsCollectionCollectionInfo extends Struct {3423 readonly issuer: AccountId32;3424 readonly metadata: Bytes;3425 readonly max: Option<u32>;3426 readonly symbol: Bytes;3427 readonly nftsCount: u32;3428 }34293430 /** @name RmrkTraitsNftNftInfo (407) */3431 interface RmrkTraitsNftNftInfo extends Struct {3432 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3433 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3434 readonly metadata: Bytes;3435 readonly equipped: bool;3436 readonly pending: bool;3437 }34383439 /** @name RmrkTraitsNftRoyaltyInfo (409) */3440 interface RmrkTraitsNftRoyaltyInfo extends Struct {3441 readonly recipient: AccountId32;3442 readonly amount: Permill;3443 }34443445 /** @name RmrkTraitsResourceResourceInfo (410) */3446 interface RmrkTraitsResourceResourceInfo extends Struct {3447 readonly id: u32;3448 readonly resource: RmrkTraitsResourceResourceTypes;3449 readonly pending: bool;3450 readonly pendingRemoval: bool;3451 }34523453 /** @name RmrkTraitsPropertyPropertyInfo (411) */3454 interface RmrkTraitsPropertyPropertyInfo extends Struct {3455 readonly key: Bytes;3456 readonly value: Bytes;3457 }34583459 /** @name RmrkTraitsBaseBaseInfo (412) */3460 interface RmrkTraitsBaseBaseInfo extends Struct {3461 readonly issuer: AccountId32;3462 readonly baseType: Bytes;3463 readonly symbol: Bytes;3464 }34653466 /** @name RmrkTraitsNftNftChild (413) */3467 interface RmrkTraitsNftNftChild extends Struct {3468 readonly collectionId: u32;3469 readonly nftId: u32;3470 }34713472 /** @name PalletCommonError (415) */3473 interface PalletCommonError extends Enum {3474 readonly isCollectionNotFound: boolean;3475 readonly isMustBeTokenOwner: boolean;3476 readonly isNoPermission: boolean;3477 readonly isCantDestroyNotEmptyCollection: boolean;3478 readonly isPublicMintingNotAllowed: boolean;3479 readonly isAddressNotInAllowlist: boolean;3480 readonly isCollectionNameLimitExceeded: boolean;3481 readonly isCollectionDescriptionLimitExceeded: boolean;3482 readonly isCollectionTokenPrefixLimitExceeded: boolean;3483 readonly isTotalCollectionsLimitExceeded: boolean;3484 readonly isCollectionAdminCountExceeded: boolean;3485 readonly isCollectionLimitBoundsExceeded: boolean;3486 readonly isOwnerPermissionsCantBeReverted: boolean;3487 readonly isTransferNotAllowed: boolean;3488 readonly isAccountTokenLimitExceeded: boolean;3489 readonly isCollectionTokenLimitExceeded: boolean;3490 readonly isMetadataFlagFrozen: boolean;3491 readonly isTokenNotFound: boolean;3492 readonly isTokenValueTooLow: boolean;3493 readonly isApprovedValueTooLow: boolean;3494 readonly isCantApproveMoreThanOwned: boolean;3495 readonly isAddressIsZero: boolean;3496 readonly isUnsupportedOperation: boolean;3497 readonly isNotSufficientFounds: boolean;3498 readonly isUserIsNotAllowedToNest: boolean;3499 readonly isSourceCollectionIsNotAllowedToNest: boolean;3500 readonly isCollectionFieldSizeExceeded: boolean;3501 readonly isNoSpaceForProperty: boolean;3502 readonly isPropertyLimitReached: boolean;3503 readonly isPropertyKeyIsTooLong: boolean;3504 readonly isInvalidCharacterInPropertyKey: boolean;3505 readonly isEmptyPropertyKey: boolean;3506 readonly isCollectionIsExternal: boolean;3507 readonly isCollectionIsInternal: boolean;3508 readonly isConfirmSponsorshipFail: boolean;3509 readonly isUserIsNotCollectionAdmin: boolean;3510 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';3511 }35123513 /** @name PalletFungibleError (417) */3514 interface PalletFungibleError extends Enum {3515 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3516 readonly isFungibleItemsHaveNoId: boolean;3517 readonly isFungibleItemsDontHaveData: boolean;3518 readonly isFungibleDisallowsNesting: boolean;3519 readonly isSettingPropertiesNotAllowed: boolean;3520 readonly isSettingAllowanceForAllNotAllowed: boolean;3521 readonly isFungibleTokensAreAlwaysValid: boolean;3522 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3523 }35243525 /** @name PalletRefungibleItemData (418) */3526 interface PalletRefungibleItemData extends Struct {3527 readonly constData: Bytes;3528 }35293530 /** @name PalletRefungibleError (423) */3531 interface PalletRefungibleError extends Enum {3532 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3533 readonly isWrongRefungiblePieces: boolean;3534 readonly isRepartitionWhileNotOwningAllPieces: boolean;3535 readonly isRefungibleDisallowsNesting: boolean;3536 readonly isSettingPropertiesNotAllowed: boolean;3537 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3538 }35393540 /** @name PalletNonfungibleItemData (424) */3541 interface PalletNonfungibleItemData extends Struct {3542 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3543 }35443545 /** @name UpDataStructsPropertyScope (426) */3546 interface UpDataStructsPropertyScope extends Enum {3547 readonly isNone: boolean;3548 readonly isRmrk: boolean;3549 readonly type: 'None' | 'Rmrk';3550 }35513552 /** @name PalletNonfungibleError (428) */3553 interface PalletNonfungibleError extends Enum {3554 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3555 readonly isNonfungibleItemsHaveNoAmount: boolean;3556 readonly isCantBurnNftWithChildren: boolean;3557 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3558 }35593560 /** @name PalletStructureError (429) */3561 interface PalletStructureError extends Enum {3562 readonly isOuroborosDetected: boolean;3563 readonly isDepthLimit: boolean;3564 readonly isBreadthLimit: boolean;3565 readonly isTokenNotFound: boolean;3566 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3567 }35683569 /** @name PalletRmrkCoreError (430) */3570 interface PalletRmrkCoreError extends Enum {3571 readonly isCorruptedCollectionType: boolean;3572 readonly isRmrkPropertyKeyIsTooLong: boolean;3573 readonly isRmrkPropertyValueIsTooLong: boolean;3574 readonly isRmrkPropertyIsNotFound: boolean;3575 readonly isUnableToDecodeRmrkData: boolean;3576 readonly isCollectionNotEmpty: boolean;3577 readonly isNoAvailableCollectionId: boolean;3578 readonly isNoAvailableNftId: boolean;3579 readonly isCollectionUnknown: boolean;3580 readonly isNoPermission: boolean;3581 readonly isNonTransferable: boolean;3582 readonly isCollectionFullOrLocked: boolean;3583 readonly isResourceDoesntExist: boolean;3584 readonly isCannotSendToDescendentOrSelf: boolean;3585 readonly isCannotAcceptNonOwnedNft: boolean;3586 readonly isCannotRejectNonOwnedNft: boolean;3587 readonly isCannotRejectNonPendingNft: boolean;3588 readonly isResourceNotPending: boolean;3589 readonly isNoAvailableResourceId: boolean;3590 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3591 }35923593 /** @name PalletRmrkEquipError (432) */3594 interface PalletRmrkEquipError extends Enum {3595 readonly isPermissionError: boolean;3596 readonly isNoAvailableBaseId: boolean;3597 readonly isNoAvailablePartId: boolean;3598 readonly isBaseDoesntExist: boolean;3599 readonly isNeedsDefaultThemeFirst: boolean;3600 readonly isPartDoesntExist: boolean;3601 readonly isNoEquippableOnFixedPart: boolean;3602 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3603 }36043605 /** @name PalletAppPromotionError (438) */3606 interface PalletAppPromotionError extends Enum {3607 readonly isAdminNotSet: boolean;3608 readonly isNoPermission: boolean;3609 readonly isNotSufficientFunds: boolean;3610 readonly isPendingForBlockOverflow: boolean;3611 readonly isSponsorNotSet: boolean;3612 readonly isIncorrectLockedBalanceOperation: boolean;3613 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3614 }36153616 /** @name PalletForeignAssetsModuleError (439) */3617 interface PalletForeignAssetsModuleError extends Enum {3618 readonly isBadLocation: boolean;3619 readonly isMultiLocationExisted: boolean;3620 readonly isAssetIdNotExists: boolean;3621 readonly isAssetIdExisted: boolean;3622 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3623 }36243625 /** @name PalletEvmError (441) */3626 interface PalletEvmError extends Enum {3627 readonly isBalanceLow: boolean;3628 readonly isFeeOverflow: boolean;3629 readonly isPaymentOverflow: boolean;3630 readonly isWithdrawFailed: boolean;3631 readonly isGasPriceTooLow: boolean;3632 readonly isInvalidNonce: boolean;3633 readonly isGasLimitTooLow: boolean;3634 readonly isGasLimitTooHigh: boolean;3635 readonly isUndefined: boolean;3636 readonly isReentrancy: boolean;3637 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3638 }36393640 /** @name FpRpcTransactionStatus (444) */3641 interface FpRpcTransactionStatus extends Struct {3642 readonly transactionHash: H256;3643 readonly transactionIndex: u32;3644 readonly from: H160;3645 readonly to: Option<H160>;3646 readonly contractAddress: Option<H160>;3647 readonly logs: Vec<EthereumLog>;3648 readonly logsBloom: EthbloomBloom;3649 }36503651 /** @name EthbloomBloom (446) */3652 interface EthbloomBloom extends U8aFixed {}36533654 /** @name EthereumReceiptReceiptV3 (448) */3655 interface EthereumReceiptReceiptV3 extends Enum {3656 readonly isLegacy: boolean;3657 readonly asLegacy: EthereumReceiptEip658ReceiptData;3658 readonly isEip2930: boolean;3659 readonly asEip2930: EthereumReceiptEip658ReceiptData;3660 readonly isEip1559: boolean;3661 readonly asEip1559: EthereumReceiptEip658ReceiptData;3662 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3663 }36643665 /** @name EthereumReceiptEip658ReceiptData (449) */3666 interface EthereumReceiptEip658ReceiptData extends Struct {3667 readonly statusCode: u8;3668 readonly usedGas: U256;3669 readonly logsBloom: EthbloomBloom;3670 readonly logs: Vec<EthereumLog>;3671 }36723673 /** @name EthereumBlock (450) */3674 interface EthereumBlock extends Struct {3675 readonly header: EthereumHeader;3676 readonly transactions: Vec<EthereumTransactionTransactionV2>;3677 readonly ommers: Vec<EthereumHeader>;3678 }36793680 /** @name EthereumHeader (451) */3681 interface EthereumHeader extends Struct {3682 readonly parentHash: H256;3683 readonly ommersHash: H256;3684 readonly beneficiary: H160;3685 readonly stateRoot: H256;3686 readonly transactionsRoot: H256;3687 readonly receiptsRoot: H256;3688 readonly logsBloom: EthbloomBloom;3689 readonly difficulty: U256;3690 readonly number: U256;3691 readonly gasLimit: U256;3692 readonly gasUsed: U256;3693 readonly timestamp: u64;3694 readonly extraData: Bytes;3695 readonly mixHash: H256;3696 readonly nonce: EthereumTypesHashH64;3697 }36983699 /** @name EthereumTypesHashH64 (452) */3700 interface EthereumTypesHashH64 extends U8aFixed {}37013702 /** @name PalletEthereumError (457) */3703 interface PalletEthereumError extends Enum {3704 readonly isInvalidSignature: boolean;3705 readonly isPreLogExists: boolean;3706 readonly type: 'InvalidSignature' | 'PreLogExists';3707 }37083709 /** @name PalletEvmCoderSubstrateError (458) */3710 interface PalletEvmCoderSubstrateError extends Enum {3711 readonly isOutOfGas: boolean;3712 readonly isOutOfFund: boolean;3713 readonly type: 'OutOfGas' | 'OutOfFund';3714 }37153716 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (459) */3717 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3718 readonly isDisabled: boolean;3719 readonly isUnconfirmed: boolean;3720 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3721 readonly isConfirmed: boolean;3722 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3723 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3724 }37253726 /** @name PalletEvmContractHelpersSponsoringModeT (460) */3727 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3728 readonly isDisabled: boolean;3729 readonly isAllowlisted: boolean;3730 readonly isGenerous: boolean;3731 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3732 }37333734 /** @name PalletEvmContractHelpersError (466) */3735 interface PalletEvmContractHelpersError extends Enum {3736 readonly isNoPermission: boolean;3737 readonly isNoPendingSponsor: boolean;3738 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3739 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3740 }37413742 /** @name PalletEvmMigrationError (467) */3743 interface PalletEvmMigrationError extends Enum {3744 readonly isAccountNotEmpty: boolean;3745 readonly isAccountIsNotMigrating: boolean;3746 readonly isBadEvent: boolean;3747 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3748 }37493750 /** @name PalletMaintenanceError (468) */3751 type PalletMaintenanceError = Null;37523753 /** @name PalletTestUtilsError (469) */3754 interface PalletTestUtilsError extends Enum {3755 readonly isTestPalletDisabled: boolean;3756 readonly isTriggerRollback: boolean;3757 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3758 }37593760 /** @name SpRuntimeMultiSignature (471) */3761 interface SpRuntimeMultiSignature extends Enum {3762 readonly isEd25519: boolean;3763 readonly asEd25519: SpCoreEd25519Signature;3764 readonly isSr25519: boolean;3765 readonly asSr25519: SpCoreSr25519Signature;3766 readonly isEcdsa: boolean;3767 readonly asEcdsa: SpCoreEcdsaSignature;3768 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3769 }37703771 /** @name SpCoreEd25519Signature (472) */3772 interface SpCoreEd25519Signature extends U8aFixed {}37733774 /** @name SpCoreSr25519Signature (474) */3775 interface SpCoreSr25519Signature extends U8aFixed {}37763777 /** @name SpCoreEcdsaSignature (475) */3778 interface SpCoreEcdsaSignature extends U8aFixed {}37793780 /** @name FrameSystemExtensionsCheckSpecVersion (478) */3781 type FrameSystemExtensionsCheckSpecVersion = Null;37823783 /** @name FrameSystemExtensionsCheckTxVersion (479) */3784 type FrameSystemExtensionsCheckTxVersion = Null;37853786 /** @name FrameSystemExtensionsCheckGenesis (480) */3787 type FrameSystemExtensionsCheckGenesis = Null;37883789 /** @name FrameSystemExtensionsCheckNonce (483) */3790 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}37913792 /** @name FrameSystemExtensionsCheckWeight (484) */3793 type FrameSystemExtensionsCheckWeight = Null;37943795 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (485) */3796 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;37973798 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (486) */3799 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}38003801 /** @name OpalRuntimeRuntime (487) */3802 type OpalRuntimeRuntime = Null;38033804 /** @name PalletEthereumFakeTransactionFinalizer (488) */3805 type PalletEthereumFakeTransactionFinalizer = Null;38063807} // declare moduletests/yarn.lockdiffbeforeafterboth--- a/tests/yarn.lock
+++ b/tests/yarn.lock
@@ -150,12 +150,7 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.18.10":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8"
- integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==
-
-"@babel/parser@^7.20.5":
+"@babel/parser@^7.18.10", "@babel/parser@^7.20.5":
version "7.20.5"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
@@ -203,16 +198,7 @@
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"
- integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==
- dependencies:
- "@babel/helper-string-parser" "^7.19.4"
- "@babel/helper-validator-identifier" "^7.19.1"
- to-fast-properties "^2.0.0"
-
-"@babel/types@^7.20.2", "@babel/types@^7.20.5":
+"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5":
version "7.20.5"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"
integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==
@@ -243,7 +229,15 @@
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
-"@ethereumjs/common@^2.5.0", "@ethereumjs/common@^2.6.4":
+"@ethereumjs/common@2.5.0":
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.5.0.tgz#ec61551b31bef7a69d1dc634d8932468866a4268"
+ integrity sha512-DEHjW6e38o+JmB/NO3GZBpW4lpaiBpkFgXF6jLcJ6gETBYpEyaA5nTimsWBUJR3Vmtm/didUEbNjajskugZORg==
+ dependencies:
+ crc-32 "^1.2.0"
+ ethereumjs-util "^7.1.1"
+
+"@ethereumjs/common@^2.5.0":
version "2.6.5"
resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.6.5.tgz#0a75a22a046272579d91919cb12d84f2756e8d30"
integrity sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==
@@ -251,13 +245,13 @@
crc-32 "^1.2.0"
ethereumjs-util "^7.1.5"
-"@ethereumjs/tx@^3.3.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-3.5.2.tgz#197b9b6299582ad84f9527ca961466fce2296c1c"
- integrity sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==
+"@ethereumjs/tx@3.3.2":
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-3.3.2.tgz#348d4624bf248aaab6c44fec2ae67265efe3db00"
+ integrity sha512-6AaJhwg4ucmwTvw/1qLaZUX5miWrwZ4nLOUsKyb/HtzS3BMw/CasKhdi1ims9mBKeK9sOJCH4qGKOBGyJCeeog==
dependencies:
- "@ethereumjs/common" "^2.6.4"
- ethereumjs-util "^7.1.5"
+ "@ethereumjs/common" "^2.5.0"
+ ethereumjs-util "^7.1.2"
"@ethersproject/abi@^5.6.3":
version "5.7.0"
@@ -436,14 +430,14 @@
"@ethersproject/properties" "^5.7.0"
"@ethersproject/strings" "^5.7.0"
-"@humanwhocodes/config-array@^0.10.5":
- version "0.10.7"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz#6d53769fd0c222767e6452e8ebda825c22e9f0dc"
- integrity sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==
+"@humanwhocodes/config-array@^0.11.6":
+ version "0.11.8"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
+ integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
debug "^4.1.1"
- minimatch "^3.0.4"
+ minimatch "^3.0.5"
"@humanwhocodes/module-importer@^1.0.1":
version "1.0.1"
@@ -526,7 +520,7 @@
resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
-"@nodelib/fs.walk@^1.2.3":
+"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
version "1.2.8"
resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
@@ -962,14 +956,14 @@
"@types/node" "*"
"@types/cacheable-request@^6.0.1", "@types/cacheable-request@^6.0.2":
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.2.tgz#c324da0197de0a98a2312156536ae262429ff6b9"
- integrity sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183"
+ integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==
dependencies:
"@types/http-cache-semantics" "*"
- "@types/keyv" "*"
+ "@types/keyv" "^3.1.4"
"@types/node" "*"
- "@types/responselike" "*"
+ "@types/responselike" "^1.0.0"
"@types/chai-as-promised@^7.1.5":
version "7.1.5"
@@ -986,9 +980,9 @@
"@types/chai" "*"
"@types/chai@*", "@types/chai@^4.3.3":
- version "4.3.3"
- resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.3.tgz#3c90752792660c4b562ad73b3fbd68bf3bc7ae07"
- integrity sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.4.tgz#e913e8175db8307d78b4e8fa690408ba6b65dee4"
+ integrity sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==
"@types/http-cache-semantics@*":
version "4.0.1"
@@ -1000,17 +994,17 @@
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
-"@types/keyv@*":
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-4.2.0.tgz#65b97868ab757906f2dbb653590d7167ad023fa0"
- integrity sha512-xoBtGl5R9jeKUhc8ZqeYaRDx04qqJ10yhhXYGmJ4Jr8qKpvMsDQQrNUvF/wUJ4klOtmJeJM+p2Xo3zp9uaC3tw==
+"@types/keyv@^3.1.4":
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6"
+ integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==
dependencies:
- keyv "*"
+ "@types/node" "*"
"@types/mocha@^10.0.0":
- version "10.0.0"
- resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.0.tgz#3d9018c575f0e3f7386c1de80ee66cc21fbb7a52"
- integrity sha512-rADY+HtTOA52l9VZWtgQfn4p+UDVM2eDVkMZT1I6syp0YKxW2F9v+0pbRZLsvskhQv/vMb6ZfCay81GHbz5SHg==
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.1.tgz#2f4f65bb08bc368ac39c96da7b2f09140b26851b"
+ integrity sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q==
"@types/node-fetch@^2.6.2":
version "2.6.2"
@@ -1021,9 +1015,9 @@
form-data "^3.0.0"
"@types/node@*", "@types/node@^18.11.2":
- version "18.11.2"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.2.tgz#c59b7641832531264fda3f1ba610362dc9a7dfc8"
- integrity sha512-BWN3M23gLO2jVG8g/XHIRFWiiV4/GckeFIqbU/C4V3xpoBBWSMk4OZomouN0wCkfQFPqgZikyLr7DOYDysIkkw==
+ version "18.11.15"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.15.tgz#de0e1fbd2b22b962d45971431e2ae696643d3f5d"
+ integrity sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==
"@types/node@^12.12.6":
version "12.20.55"
@@ -1037,7 +1031,7 @@
dependencies:
"@types/node" "*"
-"@types/responselike@*", "@types/responselike@^1.0.0":
+"@types/responselike@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29"
integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==
@@ -1052,9 +1046,9 @@
"@types/node" "*"
"@types/semver@^7.3.12":
- version "7.3.12"
- resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.12.tgz#920447fdd78d76b19de0438b7f60df3c4a80bf1c"
- integrity sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==
+ version "7.3.13"
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91"
+ integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==
"@types/websocket@^1.0.5":
version "1.0.5"
@@ -1064,85 +1058,86 @@
"@types/node" "*"
"@typescript-eslint/eslint-plugin@^5.40.1":
- version "5.40.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.40.1.tgz#3203a6ff396b1194083faaa6e5110c401201d7d5"
- integrity sha512-FsWboKkWdytGiXT5O1/R9j37YgcjO8MKHSUmWnIEjVaz0krHkplPnYi7mwdb+5+cs0toFNQb0HIrN7zONdIEWg==
+ version "5.46.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.46.1.tgz#098abb4c9354e19f460d57ab18bff1f676a6cff0"
+ integrity sha512-YpzNv3aayRBwjs4J3oz65eVLXc9xx0PDbIRisHj+dYhvBn02MjYOD96P8YGiWEIFBrojaUjxvkaUpakD82phsA==
dependencies:
- "@typescript-eslint/scope-manager" "5.40.1"
- "@typescript-eslint/type-utils" "5.40.1"
- "@typescript-eslint/utils" "5.40.1"
+ "@typescript-eslint/scope-manager" "5.46.1"
+ "@typescript-eslint/type-utils" "5.46.1"
+ "@typescript-eslint/utils" "5.46.1"
debug "^4.3.4"
ignore "^5.2.0"
+ natural-compare-lite "^1.4.0"
regexpp "^3.2.0"
semver "^7.3.7"
tsutils "^3.21.0"
"@typescript-eslint/parser@^5.40.1":
- version "5.40.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.40.1.tgz#e7f8295dd8154d0d37d661ddd8e2f0ecfdee28dd"
- integrity sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg==
+ version "5.46.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.46.1.tgz#1fc8e7102c1141eb64276c3b89d70da8c0ba5699"
+ integrity sha512-RelQ5cGypPh4ySAtfIMBzBGyrNerQcmfA1oJvPj5f+H4jI59rl9xxpn4bonC0tQvUKOEN7eGBFWxFLK3Xepneg==
dependencies:
- "@typescript-eslint/scope-manager" "5.40.1"
- "@typescript-eslint/types" "5.40.1"
- "@typescript-eslint/typescript-estree" "5.40.1"
+ "@typescript-eslint/scope-manager" "5.46.1"
+ "@typescript-eslint/types" "5.46.1"
+ "@typescript-eslint/typescript-estree" "5.46.1"
debug "^4.3.4"
-"@typescript-eslint/scope-manager@5.40.1":
- version "5.40.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.40.1.tgz#a7a5197dfd234622a2421ea590ee0ccc02e18dfe"
- integrity sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==
+"@typescript-eslint/scope-manager@5.46.1":
+ version "5.46.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.46.1.tgz#70af8425c79bbc1178b5a63fb51102ddf48e104a"
+ integrity sha512-iOChVivo4jpwUdrJZyXSMrEIM/PvsbbDOX1y3UCKjSgWn+W89skxWaYXACQfxmIGhPVpRWK/VWPYc+bad6smIA==
dependencies:
- "@typescript-eslint/types" "5.40.1"
- "@typescript-eslint/visitor-keys" "5.40.1"
+ "@typescript-eslint/types" "5.46.1"
+ "@typescript-eslint/visitor-keys" "5.46.1"
-"@typescript-eslint/type-utils@5.40.1":
- version "5.40.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.40.1.tgz#091e4ce3bebbdb68f4980bae9dee2e4e1725f601"
- integrity sha512-DLAs+AHQOe6n5LRraXiv27IYPhleF0ldEmx6yBqBgBLaNRKTkffhV1RPsjoJBhVup2zHxfaRtan8/YRBgYhU9Q==
+"@typescript-eslint/type-utils@5.46.1":
+ version "5.46.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.46.1.tgz#195033e4b30b51b870dfcf2828e88d57b04a11cc"
+ integrity sha512-V/zMyfI+jDmL1ADxfDxjZ0EMbtiVqj8LUGPAGyBkXXStWmCUErMpW873zEHsyguWCuq2iN4BrlWUkmuVj84yng==
dependencies:
- "@typescript-eslint/typescript-estree" "5.40.1"
- "@typescript-eslint/utils" "5.40.1"
+ "@typescript-eslint/typescript-estree" "5.46.1"
+ "@typescript-eslint/utils" "5.46.1"
debug "^4.3.4"
tsutils "^3.21.0"
-"@typescript-eslint/types@5.40.1":
- version "5.40.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.40.1.tgz#de37f4f64de731ee454bb2085d71030aa832f749"
- integrity sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==
+"@typescript-eslint/types@5.46.1":
+ version "5.46.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.46.1.tgz#4e9db2107b9a88441c4d5ecacde3bb7a5ebbd47e"
+ integrity sha512-Z5pvlCaZgU+93ryiYUwGwLl9AQVB/PQ1TsJ9NZ/gHzZjN7g9IAn6RSDkpCV8hqTwAiaj6fmCcKSQeBPlIpW28w==
-"@typescript-eslint/typescript-estree@5.40.1":
- version "5.40.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.1.tgz#9a7d25492f02c69882ce5e0cd1857b0c55645d72"
- integrity sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==
+"@typescript-eslint/typescript-estree@5.46.1":
+ version "5.46.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.46.1.tgz#5358088f98a8f9939355e0996f9c8f41c25eced2"
+ integrity sha512-j9W4t67QiNp90kh5Nbr1w92wzt+toiIsaVPnEblB2Ih2U9fqBTyqV9T3pYWZBRt6QoMh/zVWP59EpuCjc4VRBg==
dependencies:
- "@typescript-eslint/types" "5.40.1"
- "@typescript-eslint/visitor-keys" "5.40.1"
+ "@typescript-eslint/types" "5.46.1"
+ "@typescript-eslint/visitor-keys" "5.46.1"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/utils@5.40.1":
- version "5.40.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.40.1.tgz#3204fb73a559d3b7bab7dc9d3c44487c2734a9ca"
- integrity sha512-a2TAVScoX9fjryNrW6BZRnreDUszxqm9eQ9Esv8n5nXApMW0zeANUYlwh/DED04SC/ifuBvXgZpIK5xeJHQ3aw==
+"@typescript-eslint/utils@5.46.1":
+ version "5.46.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.46.1.tgz#7da3c934d9fd0eb4002a6bb3429f33298b469b4a"
+ integrity sha512-RBdBAGv3oEpFojaCYT4Ghn4775pdjvwfDOfQ2P6qzNVgQOVrnSPe5/Pb88kv7xzYQjoio0eKHKB9GJ16ieSxvA==
dependencies:
"@types/json-schema" "^7.0.9"
"@types/semver" "^7.3.12"
- "@typescript-eslint/scope-manager" "5.40.1"
- "@typescript-eslint/types" "5.40.1"
- "@typescript-eslint/typescript-estree" "5.40.1"
+ "@typescript-eslint/scope-manager" "5.46.1"
+ "@typescript-eslint/types" "5.46.1"
+ "@typescript-eslint/typescript-estree" "5.46.1"
eslint-scope "^5.1.1"
eslint-utils "^3.0.0"
semver "^7.3.7"
-"@typescript-eslint/visitor-keys@5.40.1":
- version "5.40.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.1.tgz#f3d2bf5af192f4432b84cec6fdcb387193518754"
- integrity sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==
+"@typescript-eslint/visitor-keys@5.46.1":
+ version "5.46.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.46.1.tgz#126cc6fe3c0f83608b2b125c5d9daced61394242"
+ integrity sha512-jczZ9noovXwy59KjRTk1OftT78pwygdcmCuBf8yMoWt/8O8l+6x2LSEze0E4TeepXK4MezW3zGSyoDRZK7Y9cg==
dependencies:
- "@typescript-eslint/types" "5.40.1"
+ "@typescript-eslint/types" "5.46.1"
eslint-visitor-keys "^3.3.0"
abortcontroller-polyfill@^1.7.3:
@@ -1169,9 +1164,9 @@
integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
acorn@^8.4.1, acorn@^8.8.0:
- version "8.8.0"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8"
- integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==
+ version "8.8.1"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
+ integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4:
version "6.12.6"
@@ -1208,9 +1203,9 @@
color-convert "^2.0.1"
anymatch@~3.1.2:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
- integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+ integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
dependencies:
normalize-path "^3.0.0"
picomatch "^2.0.4"
@@ -1312,9 +1307,9 @@
tweetnacl "^0.14.3"
bignumber.js@^9.0.0:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62"
- integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==
+ version "9.1.1"
+ resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.1.tgz#c4df7dc496bd849d4c9464344c1aa74228b4dac6"
+ integrity sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==
binary-extensions@^2.0.0:
version "2.2.0"
@@ -1553,9 +1548,9 @@
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
caniuse-lite@^1.0.30001400:
- version "1.0.30001422"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001422.tgz#f2d7c6202c49a8359e6e35add894d88ef93edba1"
- integrity sha512-hSesn02u1QacQHhaxl/kNMZwqVG35Sz/8DgvmgedxSH8z9UUpcDYSPYgsj3x5dQNRcNp6BwpSfQfVzYUTm+fog==
+ version "1.0.30001439"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz#ab7371faeb4adff4b74dad1718a6fd122e45d9cb"
+ integrity sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==
caseless@~0.12.0:
version "0.12.0"
@@ -1575,13 +1570,13 @@
integrity sha512-VKa9z/SnhXhkT1zIjtPACFWSoWsqVoaz1Vg+ecrKo5DCKVlgL30F/pEyEvXPBOVwCgLZcWUleCM/C1okaKdTTA==
chai@^4.3.6:
- version "4.3.6"
- resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c"
- integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==
+ version "4.3.7"
+ resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51"
+ integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==
dependencies:
assertion-error "^1.1.0"
check-error "^1.0.2"
- deep-eql "^3.0.1"
+ deep-eql "^4.1.2"
get-func-name "^2.0.0"
loupe "^2.3.1"
pathval "^1.1.1"
@@ -1911,9 +1906,9 @@
integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
decode-uri-component@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
- integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
+ integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
decompress-response@^3.3.0:
version "3.3.0"
@@ -1929,10 +1924,10 @@
dependencies:
mimic-response "^3.1.0"
-deep-eql@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df"
- integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==
+deep-eql@^4.1.2:
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d"
+ integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==
dependencies:
type-detect "^4.0.0"
@@ -1945,14 +1940,6 @@
version "2.0.1"
resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587"
integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==
-
-define-properties@^1.1.3, define-properties@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
- integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
- dependencies:
- has-property-descriptors "^1.0.0"
- object-keys "^1.1.1"
delayed-stream@~1.0.0:
version "1.0.0"
@@ -2069,46 +2056,7 @@
integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
dependencies:
once "^1.4.0"
-
-es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0:
- version "1.20.4"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861"
- integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==
- dependencies:
- call-bind "^1.0.2"
- es-to-primitive "^1.2.1"
- function-bind "^1.1.1"
- function.prototype.name "^1.1.5"
- get-intrinsic "^1.1.3"
- get-symbol-description "^1.0.0"
- has "^1.0.3"
- has-property-descriptors "^1.0.0"
- has-symbols "^1.0.3"
- internal-slot "^1.0.3"
- is-callable "^1.2.7"
- is-negative-zero "^2.0.2"
- is-regex "^1.1.4"
- is-shared-array-buffer "^1.0.2"
- is-string "^1.0.7"
- is-weakref "^1.0.2"
- object-inspect "^1.12.2"
- object-keys "^1.1.1"
- object.assign "^4.1.4"
- regexp.prototype.flags "^1.4.3"
- safe-regex-test "^1.0.0"
- string.prototype.trimend "^1.0.5"
- string.prototype.trimstart "^1.0.5"
- unbox-primitive "^1.0.2"
-es-to-primitive@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
- integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
- dependencies:
- is-callable "^1.1.4"
- is-date-object "^1.0.1"
- is-symbol "^1.0.2"
-
es5-ext@^0.10.35, es5-ext@^0.10.50:
version "0.10.62"
resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5"
@@ -2202,13 +2150,14 @@
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
eslint@^8.25.0:
- version "8.25.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.25.0.tgz#00eb962f50962165d0c4ee3327708315eaa8058b"
- integrity sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A==
+ version "8.29.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.29.0.tgz#d74a88a20fb44d59c51851625bc4ee8d0ec43f87"
+ integrity sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==
dependencies:
"@eslint/eslintrc" "^1.3.3"
- "@humanwhocodes/config-array" "^0.10.5"
+ "@humanwhocodes/config-array" "^0.11.6"
"@humanwhocodes/module-importer" "^1.0.1"
+ "@nodelib/fs.walk" "^1.2.8"
ajv "^6.10.0"
chalk "^4.0.0"
cross-spawn "^7.0.2"
@@ -2224,14 +2173,14 @@
fast-deep-equal "^3.1.3"
file-entry-cache "^6.0.1"
find-up "^5.0.0"
- glob-parent "^6.0.1"
+ glob-parent "^6.0.2"
globals "^13.15.0"
- globby "^11.1.0"
grapheme-splitter "^1.0.4"
ignore "^5.2.0"
import-fresh "^3.0.0"
imurmurhash "^0.1.4"
is-glob "^4.0.0"
+ is-path-inside "^3.0.3"
js-sdsl "^4.1.4"
js-yaml "^4.1.0"
json-stable-stringify-without-jsonify "^1.0.1"
@@ -2246,9 +2195,9 @@
text-table "^0.2.0"
espree@^9.4.0:
- version "9.4.0"
- resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a"
- integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==
+ version "9.4.1"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd"
+ integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==
dependencies:
acorn "^8.8.0"
acorn-jsx "^5.3.2"
@@ -2345,7 +2294,7 @@
secp256k1 "^4.0.1"
setimmediate "^1.0.5"
-ethereumjs-util@^7.0.10, ethereumjs-util@^7.1.0, ethereumjs-util@^7.1.5:
+ethereumjs-util@^7.0.10, ethereumjs-util@^7.1.0, ethereumjs-util@^7.1.1, ethereumjs-util@^7.1.2, ethereumjs-util@^7.1.5:
version "7.1.5"
resolved "https://registry.yarnpkg.com/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz#9ecf04861e4fbbeed7465ece5f23317ad1129181"
integrity sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==
@@ -2468,9 +2417,9 @@
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
fastq@^1.6.0:
- version "1.13.0"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
- integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
+ version "1.14.0"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.14.0.tgz#107f69d7295b11e0fccc264e1fc6389f623731ce"
+ integrity sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==
dependencies:
reusify "^1.0.4"
@@ -2647,22 +2596,7 @@
version "1.1.1"
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-
-function.prototype.name@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
- integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.0"
- functions-have-names "^1.2.2"
-functions-have-names@^1.2.2:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
- integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
-
gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
@@ -2678,7 +2612,7 @@
resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"
integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
@@ -2698,14 +2632,6 @@
version "6.0.1"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
-
-get-symbol-description@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
- integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
- dependencies:
- call-bind "^1.0.2"
- get-intrinsic "^1.1.1"
getpass@^0.1.1:
version "0.1.7"
@@ -2721,7 +2647,7 @@
dependencies:
is-glob "^4.0.1"
-glob-parent@^6.0.1:
+glob-parent@^6.0.2:
version "6.0.2"
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
@@ -2766,9 +2692,9 @@
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
globals@^13.15.0:
- version "13.17.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4"
- integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==
+ version "13.19.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
+ integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
dependencies:
type-fest "^0.20.2"
@@ -2784,6 +2710,13 @@
merge2 "^1.4.1"
slash "^3.0.0"
+gopd@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
+ integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
+ dependencies:
+ get-intrinsic "^1.1.3"
+
got@12.1.0:
version "12.1.0"
resolved "https://registry.yarnpkg.com/got/-/got-12.1.0.tgz#099f3815305c682be4fd6b0ee0726d8e4c6b0af4"
@@ -2804,9 +2737,9 @@
responselike "^2.0.0"
got@^11.8.5:
- version "11.8.5"
- resolved "https://registry.yarnpkg.com/got/-/got-11.8.5.tgz#ce77d045136de56e8f024bebb82ea349bc730046"
- integrity sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==
+ version "11.8.6"
+ resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a"
+ integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==
dependencies:
"@sindresorhus/is" "^4.0.0"
"@szmarczak/http-timer" "^4.0.5"
@@ -2854,11 +2787,6 @@
dependencies:
ajv "^6.12.3"
har-schema "^2.0.0"
-
-has-bigints@^1.0.1, has-bigints@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
- integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
has-flag@^3.0.0:
version "3.0.0"
@@ -2870,13 +2798,6 @@
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-has-property-descriptors@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
- integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
- dependencies:
- get-intrinsic "^1.1.1"
-
has-symbols@^1.0.2, has-symbols@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
@@ -2966,9 +2887,9 @@
resolve-alpn "^1.0.0"
http2-wrapper@^2.1.10:
- version "2.1.11"
- resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.1.11.tgz#d7c980c7ffb85be3859b6a96c800b2951ae257ef"
- integrity sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.2.0.tgz#b80ad199d216b7d3680195077bd7b9060fa9d7f3"
+ integrity sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==
dependencies:
quick-lru "^5.1.1"
resolve-alpn "^1.2.0"
@@ -2993,9 +2914,9 @@
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
ignore@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
- integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.1.tgz#c2b1f76cb999ede1502f3a226a9310fdfe88d46c"
+ integrity sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==
import-fresh@^3.0.0, import-fresh@^3.2.1:
version "3.3.0"
@@ -3022,15 +2943,6 @@
version "2.0.4"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-
-internal-slot@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
- integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
- dependencies:
- get-intrinsic "^1.1.0"
- has "^1.0.3"
- side-channel "^1.0.4"
ipaddr.js@1.9.1:
version "1.9.1"
@@ -3045,13 +2957,6 @@
call-bind "^1.0.2"
has-tostringtag "^1.0.0"
-is-bigint@^1.0.1:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
- integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
- dependencies:
- has-bigints "^1.0.1"
-
is-binary-path@~2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
@@ -3059,26 +2964,11 @@
dependencies:
binary-extensions "^2.0.0"
-is-boolean-object@^1.1.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
- integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
- dependencies:
- call-bind "^1.0.2"
- has-tostringtag "^1.0.0"
-
-is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
+is-callable@^1.1.3:
version "1.2.7"
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
-is-date-object@^1.0.1:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
- integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
- dependencies:
- has-tostringtag "^1.0.0"
-
is-extglob@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
@@ -3112,24 +3002,17 @@
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz#7d8d37e6ad77e5d127148913c573e082d777f554"
integrity sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==
-
-is-negative-zero@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
- integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
-
-is-number-object@^1.0.4:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
- integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
- dependencies:
- has-tostringtag "^1.0.0"
is-number@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+is-path-inside@^3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
+ integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
+
is-plain-obj@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
@@ -3142,44 +3025,15 @@
dependencies:
isobject "^3.0.1"
-is-regex@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
- integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
- dependencies:
- call-bind "^1.0.2"
- has-tostringtag "^1.0.0"
-
-is-shared-array-buffer@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
- integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
- dependencies:
- call-bind "^1.0.2"
-
-is-string@^1.0.5, is-string@^1.0.7:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
- integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
- dependencies:
- has-tostringtag "^1.0.0"
-
-is-symbol@^1.0.2, is-symbol@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
- integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
- dependencies:
- has-symbols "^1.0.2"
-
-is-typed-array@^1.1.3, is-typed-array@^1.1.9:
- version "1.1.9"
- resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67"
- integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==
+is-typed-array@^1.1.10, is-typed-array@^1.1.3:
+ version "1.1.10"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
+ integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
dependencies:
available-typed-arrays "^1.0.5"
call-bind "^1.0.2"
- es-abstract "^1.20.0"
for-each "^0.3.3"
+ gopd "^1.0.1"
has-tostringtag "^1.0.0"
is-typedarray@^1.0.0, is-typedarray@~1.0.0:
@@ -3192,13 +3046,6 @@
resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
-is-weakref@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
- integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
- dependencies:
- call-bind "^1.0.2"
-
isexe@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
@@ -3215,9 +3062,9 @@
integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==
js-sdsl@^4.1.4:
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a"
- integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz#278e98b7bea589b8baaf048c20aeb19eb7ad09d0"
+ integrity sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==
js-sha3@0.8.0, js-sha3@^0.8.0:
version "0.8.0"
@@ -3307,10 +3154,10 @@
node-gyp-build "^4.2.0"
readable-stream "^3.6.0"
-keyv@*, keyv@^4.0.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.0.tgz#dbce9ade79610b6e641a9a65f2f6499ba06b9bc6"
- integrity sha512-2YvuMsA+jnFGtBareKqgANOEKe1mk3HKiXu2fRmAfyxG0MJAywNhi5ttWA3PMjl4NmpyjZNbFifR2vNjW1znfA==
+keyv@^4.0.0:
+ version "4.5.2"
+ resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56"
+ integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==
dependencies:
json-buffer "3.0.1"
@@ -3361,9 +3208,9 @@
is-unicode-supported "^0.1.0"
loupe@^2.3.1:
- version "2.3.4"
- resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3"
- integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==
+ version "2.3.6"
+ resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53"
+ integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==
dependencies:
get-func-name "^2.0.0"
@@ -3498,7 +3345,7 @@
dependencies:
brace-expansion "^2.0.1"
-minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
+minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
@@ -3545,9 +3392,9 @@
minimist "^1.2.6"
mocha@^10.1.0:
- version "10.1.0"
- resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.1.0.tgz#dbf1114b7c3f9d0ca5de3133906aea3dfc89ef7a"
- integrity sha512-vUF7IYxEoN7XhQpFLxQAEMtE4W91acW4B6En9l97MwE9stL1A9gusXfoHZCLVHDUJ/7V5+lbCM6yMqzo5vNymg==
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.2.0.tgz#1fd4a7c32ba5ac372e03a17eef435bd00e5c68b8"
+ integrity sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==
dependencies:
ansi-colors "4.1.1"
browser-stdout "1.3.1"
@@ -3646,6 +3493,11 @@
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"
integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==
+natural-compare-lite@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4"
+ integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==
+
natural-compare@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
@@ -3708,9 +3560,9 @@
integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
node-releases@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"
- integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
+ version "2.0.7"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.7.tgz#593edbc7c22860ee4d32d3933cfebdfab0c0e0e5"
+ integrity sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
@@ -3740,25 +3592,10 @@
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
-object-inspect@^1.12.2, object-inspect@^1.9.0:
+object-inspect@^1.9.0:
version "1.12.2"
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
-
-object-keys@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
- integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-
-object.assign@^4.1.4:
- version "4.1.4"
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
- integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.4"
- has-symbols "^1.0.3"
- object-keys "^1.1.1"
oboe@2.1.5:
version "2.1.5"
@@ -3842,9 +3679,9 @@
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
pako@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d"
- integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/pako/-/pako-2.1.0.tgz#266cc37f98c7d883545d11335c00fbd4062c9a86"
+ integrity sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==
parent-module@^1.0.0:
version "1.0.1"
@@ -4042,9 +3879,9 @@
integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
rambda@^7.1.0:
- version "7.3.0"
- resolved "https://registry.yarnpkg.com/rambda/-/rambda-7.3.0.tgz#90e440ead53030a216093865d8d97997a80868ca"
- integrity sha512-RFVofZYaG2TaVcxjnM0ejdVWf/59rFq1f57OGnjP3GT/bthzFw0GVr5rkP9PKbVlEuF/Y7bOVPLfiiYfxq/EWQ==
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/rambda/-/rambda-7.4.0.tgz#61ec9de31d3dd6affe804de3bae04a5b818781e5"
+ integrity sha512-A9hihu7dUTLOUCM+I8E61V4kRXnN4DwYeK0DwCBydC1MqNI1PidyAtbtpsJlBBzK4icSctEcCQ1bGcLpBuETUQ==
randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
version "2.1.0"
@@ -4097,15 +3934,6 @@
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
-regexp.prototype.flags@^1.4.3:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
- integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.3"
- functions-have-names "^1.2.2"
-
regexpp@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
@@ -4194,9 +4022,9 @@
queue-microtask "^1.2.2"
rxjs@^7.5.7:
- version "7.5.7"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39"
- integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==
+ version "7.6.0"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.6.0.tgz#361da5362b6ddaa691a2de0b4f2d32028f1eb5a2"
+ integrity sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==
dependencies:
tslib "^2.1.0"
@@ -4210,15 +4038,6 @@
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-safe-regex-test@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
- integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
- dependencies:
- call-bind "^1.0.2"
- get-intrinsic "^1.1.3"
- is-regex "^1.1.4"
-
"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
version "2.1.2"
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
@@ -4426,24 +4245,6 @@
emoji-regex "^8.0.0"
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
-
-string.prototype.trimend@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"
- integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.19.5"
-
-string.prototype.trimstart@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef"
- integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.19.5"
string_decoder@^1.1.1:
version "1.3.0"
@@ -4594,9 +4395,9 @@
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
tslib@^2.1.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
- integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
+ integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
tsutils@^3.21.0:
version "3.21.0"
@@ -4665,29 +4466,19 @@
is-typedarray "^1.0.0"
typescript@^4.8.4:
- version "4.8.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
- integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==
+ version "4.9.4"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
+ integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
uglify-js@^3.1.4:
- version "3.17.3"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.3.tgz#f0feedf019c4510f164099e8d7e72ff2d7304377"
- integrity sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==
+ version "3.17.4"
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
+ integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==
ultron@~1.1.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c"
integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==
-
-unbox-primitive@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
- integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
- dependencies:
- call-bind "^1.0.2"
- has-bigints "^1.0.2"
- has-symbols "^1.0.3"
- which-boxed-primitive "^1.0.2"
universalify@^0.1.0:
version "0.1.2"
@@ -4752,16 +4543,16 @@
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
-uuid@3.3.2:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
- integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
-
uuid@^3.3.2:
version "3.4.0"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
+uuid@^9.0.0:
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5"
+ integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==
+
v8-compile-cache-lib@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf"
@@ -4791,214 +4582,214 @@
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
-web3-bzz@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.8.0.tgz#2023676d7c17ea36512bf76eb310755a02a3d464"
- integrity sha512-caDtdKeLi7+2Vb+y+cq2yyhkNjnxkFzVW0j1DtemarBg3dycG1iEl75CVQMLNO6Wkg+HH9tZtRnUyFIe5LIUeQ==
+web3-bzz@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.8.1.tgz#81397be5ce262d03d82b92e9d8acc11f8a609ea1"
+ integrity sha512-dJJHS84nvpoxv6ijTMkdUSlRr5beCXNtx4UZcrFLHBva8dT63QEtKdLyDt2AyMJJdVzTCk78uir/6XtVWrdS6w==
dependencies:
"@types/node" "^12.12.6"
got "12.1.0"
swarm-js "^0.1.40"
-web3-core-helpers@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.8.0.tgz#5dcfdda1a4ea277041d912003198f1334ca29d7c"
- integrity sha512-nMAVwZB3rEp/khHI2BvFy0e/xCryf501p5NGjswmJtEM+Zrd3Biaw52JrB1qAZZIzCA8cmLKaOgdfamoDOpWdw==
+web3-core-helpers@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.8.1.tgz#7904747b23fd0afa4f2c86ed98ea9418ccad7672"
+ integrity sha512-ClzNO6T1S1gifC+BThw0+GTfcsjLEY8T1qUp6Ly2+w4PntAdNtKahxWKApWJ0l9idqot/fFIDXwO3Euu7I0Xqw==
dependencies:
- web3-eth-iban "1.8.0"
- web3-utils "1.8.0"
+ web3-eth-iban "1.8.1"
+ web3-utils "1.8.1"
-web3-core-method@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.8.0.tgz#9c2da8896808917d1679c319f19e2174ba17086c"
- integrity sha512-c94RAzo3gpXwf2rf8rL8C77jOzNWF4mXUoUfZYYsiY35cJFd46jQDPI00CB5+ZbICTiA5mlVzMj4e7jAsTqiLA==
+web3-core-method@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.8.1.tgz#0fc5a433a9fc784c447522f141c0a8e0163c7790"
+ integrity sha512-oYGRodktfs86NrnFwaWTbv2S38JnpPslFwSSARwFv4W9cjbGUW3LDeA5MKD/dRY+ssZ5OaekeMsUCLoGhX68yA==
dependencies:
"@ethersproject/transactions" "^5.6.2"
- web3-core-helpers "1.8.0"
- web3-core-promievent "1.8.0"
- web3-core-subscriptions "1.8.0"
- web3-utils "1.8.0"
+ web3-core-helpers "1.8.1"
+ web3-core-promievent "1.8.1"
+ web3-core-subscriptions "1.8.1"
+ web3-utils "1.8.1"
-web3-core-promievent@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.8.0.tgz#979765fd4d37ab0f158f0ee54037b279b737bd53"
- integrity sha512-FGLyjAuOaAQ+ZhV6iuw9tg/9WvIkSZXKHQ4mdTyQ8MxVraOtFivOCbuLLsGgapfHYX+RPxsc1j1YzQjKoupagQ==
+web3-core-promievent@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.8.1.tgz#f334c8b2ceac6c2228f06d2a515f6d103157f036"
+ integrity sha512-9mxqHlgB0MrZI4oUIRFkuoJMNj3E7btjrMv3sMer/Z9rYR1PfoSc1aAokw4rxKIcAh+ylVtd/acaB2HKB7aRPg==
dependencies:
eventemitter3 "4.0.4"
-web3-core-requestmanager@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.8.0.tgz#06189df80cf52d24a195a7ef655031afe8192df3"
- integrity sha512-2AoYCs3Owl5foWcf4uKPONyqFygSl9T54L8b581U16nsUirjhoTUGK/PBhMDVcLCmW4QQmcY5A8oPFpkQc1TTg==
+web3-core-requestmanager@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.8.1.tgz#272ffa55b7b568ecbc8e4a257ca080355c31c60e"
+ integrity sha512-x+VC2YPPwZ1khvqA6TA69LvfFCOZXsoUVOxmTx/vIN22PrY9KzKhxcE7pBSiGhmab1jtmRYXUbcQSVpAXqL8cw==
dependencies:
util "^0.12.0"
- web3-core-helpers "1.8.0"
- web3-providers-http "1.8.0"
- web3-providers-ipc "1.8.0"
- web3-providers-ws "1.8.0"
+ web3-core-helpers "1.8.1"
+ web3-providers-http "1.8.1"
+ web3-providers-ipc "1.8.1"
+ web3-providers-ws "1.8.1"
-web3-core-subscriptions@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.8.0.tgz#ff66ae4467c8cb4716367248bcefb1845c0f8b83"
- integrity sha512-7lHVRzDdg0+Gcog55lG6Q3D8JV+jN+4Ly6F8cSn9xFUAwOkdbgdWsjknQG7t7CDWy21DQkvdiY2BJF8S68AqOA==
+web3-core-subscriptions@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.8.1.tgz#f5ae1380e92746eadfab6475b8a70ef5a1be6bbf"
+ integrity sha512-bmCMq5OeA3E2vZUh8Js1HcJbhwtsE+yeMqGC4oIZB3XsL5SLqyKLB/pU+qUYqQ9o4GdcrFTDPhPg1bgvf7p1Pw==
dependencies:
eventemitter3 "4.0.4"
- web3-core-helpers "1.8.0"
+ web3-core-helpers "1.8.1"
-web3-core@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.8.0.tgz#90afce527ac1b1dff8cbed2acbc0336530b8aacf"
- integrity sha512-9sCA+Z02ci6zoY2bAquFiDjujRwmSKHiSGi4B8IstML8okSytnzXk1izHYSynE7ahIkguhjWAuXFvX76F5rAbA==
+web3-core@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.8.1.tgz#050b1c408d1f9b7ae539e90f7f7d1b7a7d10578b"
+ integrity sha512-LbRZlJH2N6nS3n3Eo9Y++25IvzMY7WvYnp4NM/Ajhh97dAdglYs6rToQ2DbL2RLvTYmTew4O/y9WmOk4nq9COw==
dependencies:
"@types/bn.js" "^5.1.0"
"@types/node" "^12.12.6"
bignumber.js "^9.0.0"
- web3-core-helpers "1.8.0"
- web3-core-method "1.8.0"
- web3-core-requestmanager "1.8.0"
- web3-utils "1.8.0"
+ web3-core-helpers "1.8.1"
+ web3-core-method "1.8.1"
+ web3-core-requestmanager "1.8.1"
+ web3-utils "1.8.1"
-web3-eth-abi@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.8.0.tgz#47fdff00bfdfa72064c9c612ff6369986598196d"
- integrity sha512-xPeMb2hS9YLQK/Q5YZpkcmzoRGM+/R8bogSrYHhNC3hjZSSU0YRH+1ZKK0f9YF4qDZaPMI8tKWIMSCDIpjG6fg==
+web3-eth-abi@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.8.1.tgz#47455d6513217c4b0866fea6f97b1c4afa0b6535"
+ integrity sha512-0mZvCRTIG0UhDhJwNQJgJxu4b4DyIpuMA0GTfqxqeuqzX4Q/ZvmoNurw0ExTfXaGPP82UUmmdkRi6FdZOx+C6w==
dependencies:
"@ethersproject/abi" "^5.6.3"
- web3-utils "1.8.0"
+ web3-utils "1.8.1"
-web3-eth-accounts@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.8.0.tgz#960d947ee87a49d6c706dc6312334fbfbd6ff812"
- integrity sha512-HQ/MDSv4bexwJLvnqsM6xpGE7c2NVOqyhzOZFyMUKXbIwIq85T3TaLnM9pCN7XqMpDcfxqiZ3q43JqQVkzHdmw==
+web3-eth-accounts@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.8.1.tgz#1ce7387721f118aeb0376291e4d8bbe2ac323406"
+ integrity sha512-mgzxSYgN54/NsOFBO1Fq1KkXp1S5KlBvI/DlgvajU72rupoFMq6Cu6Yp9GUaZ/w2ij9PzEJuFJk174XwtfMCmg==
dependencies:
- "@ethereumjs/common" "^2.5.0"
- "@ethereumjs/tx" "^3.3.2"
+ "@ethereumjs/common" "2.5.0"
+ "@ethereumjs/tx" "3.3.2"
crypto-browserify "3.12.0"
eth-lib "0.2.8"
ethereumjs-util "^7.0.10"
scrypt-js "^3.0.1"
- uuid "3.3.2"
- web3-core "1.8.0"
- web3-core-helpers "1.8.0"
- web3-core-method "1.8.0"
- web3-utils "1.8.0"
+ uuid "^9.0.0"
+ web3-core "1.8.1"
+ web3-core-helpers "1.8.1"
+ web3-core-method "1.8.1"
+ web3-utils "1.8.1"
-web3-eth-contract@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.8.0.tgz#58f4ce0bde74e5ce87663502e409a92abad7b2c5"
- integrity sha512-6xeXhW2YoCrz2Ayf2Vm4srWiMOB6LawkvxWJDnUWJ8SMATg4Pgu42C/j8rz/enXbYWt2IKuj0kk8+QszxQbK+Q==
+web3-eth-contract@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.8.1.tgz#bdf3e33bbcb79a1b6144dffd6a0deefd2e459272"
+ integrity sha512-1wphnl+/xwCE2io44JKnN+ti3oa47BKRiVzvWd42icwRbcpFfRxH9QH+aQX3u8VZIISNH7dAkTWpGIIJgGFTmg==
dependencies:
"@types/bn.js" "^5.1.0"
- web3-core "1.8.0"
- web3-core-helpers "1.8.0"
- web3-core-method "1.8.0"
- web3-core-promievent "1.8.0"
- web3-core-subscriptions "1.8.0"
- web3-eth-abi "1.8.0"
- web3-utils "1.8.0"
+ web3-core "1.8.1"
+ web3-core-helpers "1.8.1"
+ web3-core-method "1.8.1"
+ web3-core-promievent "1.8.1"
+ web3-core-subscriptions "1.8.1"
+ web3-eth-abi "1.8.1"
+ web3-utils "1.8.1"
-web3-eth-ens@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.8.0.tgz#f1937371eac54b087ebe2e871780c2710d39998d"
- integrity sha512-/eFbQEwvsMOEiOhw9/iuRXCsPkqAmHHWuFOrThQkozRgcnSTRnvxkkRC/b6koiT5/HaKeUs4yQDg+/ixsIxZxA==
+web3-eth-ens@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.8.1.tgz#e78a9651fea8282abe8565b001819e2d645e5929"
+ integrity sha512-FT8xTI9uN8RxeBQa/W8pLa2aoFh4+EE34w7W2271LICKzla1dtLyb6XSdn48vsUcPmhWsTVk9mO9RTU0l4LGQQ==
dependencies:
content-hash "^2.5.2"
eth-ens-namehash "2.0.8"
- web3-core "1.8.0"
- web3-core-helpers "1.8.0"
- web3-core-promievent "1.8.0"
- web3-eth-abi "1.8.0"
- web3-eth-contract "1.8.0"
- web3-utils "1.8.0"
+ web3-core "1.8.1"
+ web3-core-helpers "1.8.1"
+ web3-core-promievent "1.8.1"
+ web3-eth-abi "1.8.1"
+ web3-eth-contract "1.8.1"
+ web3-utils "1.8.1"
-web3-eth-iban@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.8.0.tgz#3af8a0c95b5f7b0b81ab0bcd2075c1e5dda31520"
- integrity sha512-4RbvUxcMpo/e5811sE3a6inJ2H4+FFqUVmlRYs0RaXaxiHweahSRBNcpO0UWgmlePTolj0rXqPT2oEr0DuC8kg==
+web3-eth-iban@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.8.1.tgz#c6484e5d68ca644aa78431301e7acd5df24598d1"
+ integrity sha512-DomoQBfvIdtM08RyMGkMVBOH0vpOIxSSQ+jukWk/EkMLGMWJtXw/K2c2uHAeq3L/VPWNB7zXV2DUEGV/lNE2Dg==
dependencies:
bn.js "^5.2.1"
- web3-utils "1.8.0"
+ web3-utils "1.8.1"
-web3-eth-personal@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.8.0.tgz#433c35e2e042844402a12d543c4126ea1494b478"
- integrity sha512-L7FT4nR3HmsfZyIAhFpEctKkYGOjRC2h6iFKs9gnFCHZga8yLcYcGaYOBIoYtaKom99MuGBoosayWt/Twh7F5A==
+web3-eth-personal@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.8.1.tgz#00b5ff1898b62044d25ed5fddd8486168d4827cf"
+ integrity sha512-myIYMvj7SDIoV9vE5BkVdon3pya1WinaXItugoii2VoTcQNPOtBxmYVH+XS5ErzCJlnxzphpQrkywyY64bbbCA==
dependencies:
"@types/node" "^12.12.6"
- web3-core "1.8.0"
- web3-core-helpers "1.8.0"
- web3-core-method "1.8.0"
- web3-net "1.8.0"
- web3-utils "1.8.0"
+ web3-core "1.8.1"
+ web3-core-helpers "1.8.1"
+ web3-core-method "1.8.1"
+ web3-net "1.8.1"
+ web3-utils "1.8.1"
-web3-eth@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.8.0.tgz#006974a5d5e30644d05814111f9e162a72e4a09c"
- integrity sha512-hist52os3OT4TQFB/GxPSMxTh3995sz6LPvQpPvj7ktSbpg9RNSFaSsPlCT63wUAHA3PZb1FemkAIeQM5t72Lw==
+web3-eth@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.8.1.tgz#395f6cd56edaac5dbb23e8cec9886c3fd32c430e"
+ integrity sha512-LgyzbhFqiFRd8M8sBXoFN4ztzOnkeckl3H/9lH5ek7AdoRMhBg7tYpYRP3E5qkhd/q+yiZmcUgy1AF6NHrC1wg==
dependencies:
- web3-core "1.8.0"
- web3-core-helpers "1.8.0"
- web3-core-method "1.8.0"
- web3-core-subscriptions "1.8.0"
- web3-eth-abi "1.8.0"
- web3-eth-accounts "1.8.0"
- web3-eth-contract "1.8.0"
- web3-eth-ens "1.8.0"
- web3-eth-iban "1.8.0"
- web3-eth-personal "1.8.0"
- web3-net "1.8.0"
- web3-utils "1.8.0"
+ web3-core "1.8.1"
+ web3-core-helpers "1.8.1"
+ web3-core-method "1.8.1"
+ web3-core-subscriptions "1.8.1"
+ web3-eth-abi "1.8.1"
+ web3-eth-accounts "1.8.1"
+ web3-eth-contract "1.8.1"
+ web3-eth-ens "1.8.1"
+ web3-eth-iban "1.8.1"
+ web3-eth-personal "1.8.1"
+ web3-net "1.8.1"
+ web3-utils "1.8.1"
-web3-net@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.8.0.tgz#9acff92d7c647d801bc68df0ff4416f104dbe789"
- integrity sha512-kX6EAacK7QrOe7DOh0t5yHS5q2kxZmTCxPVwSz9io9xBeE4n4UhmzGJ/VfhP2eM3OPKYeypcR3LEO6zZ8xn2vw==
+web3-net@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.8.1.tgz#2bed4d4b93166724129ec33d0e5dea98880285f4"
+ integrity sha512-LyEJAwogdFo0UAXZqoSJGFjopdt+kLw0P00FSZn2yszbgcoI7EwC+nXiOsEe12xz4LqpYLOtbR7+gxgiTVjjHQ==
dependencies:
- web3-core "1.8.0"
- web3-core-method "1.8.0"
- web3-utils "1.8.0"
+ web3-core "1.8.1"
+ web3-core-method "1.8.1"
+ web3-utils "1.8.1"
-web3-providers-http@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.8.0.tgz#3fd1e569ead2095343fac17d53160a3bae674c23"
- integrity sha512-/MqxwRzExohBWW97mqlCSW/+NHydGRyoEDUS1bAIF2YjfKFwyRtHgrEzOojzkC9JvB+8LofMvbXk9CcltpZapw==
+web3-providers-http@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.8.1.tgz#8aa89c11a9272f11ddb74b871273c92225faa28d"
+ integrity sha512-1Zyts4O9W/UNEPkp+jyL19Jc3D15S4yp8xuLTjVhcUEAlHo24NDWEKxtZGUuHk4HrKL2gp8OlsDbJ7MM+ESDgg==
dependencies:
abortcontroller-polyfill "^1.7.3"
cross-fetch "^3.1.4"
es6-promise "^4.2.8"
- web3-core-helpers "1.8.0"
+ web3-core-helpers "1.8.1"
-web3-providers-ipc@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.8.0.tgz#d339a24c4d764e459e425d3ac868a551ac33e3ea"
- integrity sha512-tAXHtVXNUOgehaBU8pzAlB3qhjn/PRpjdzEjzHNFqtRRTwzSEKOJxFeEhaUA4FzHnTlbnrs8ujHWUitcp1elfg==
+web3-providers-ipc@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.8.1.tgz#6128a3a3a824d06bf0efcfe86325401f8691a5ca"
+ integrity sha512-nw/W5nclvi+P2z2dYkLWReKLnocStflWqFl+qjtv0xn3MrUTyXMzSF0+61i77+16xFsTgzo4wS/NWIOVkR0EFA==
dependencies:
oboe "2.1.5"
- web3-core-helpers "1.8.0"
+ web3-core-helpers "1.8.1"
-web3-providers-ws@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.8.0.tgz#a0a73e0606981ea32bed40d215000a64753899de"
- integrity sha512-bcZtSifsqyJxwkfQYamfdIRp4nhj9eJd7cxHg1uUkfLJK125WP96wyJL1xbPt7qt0MpfnTFn8/UuIqIB6nFENg==
+web3-providers-ws@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.8.1.tgz#5e5370e07eb8c615ed298ebc8602b283c7b7d649"
+ integrity sha512-TNefIDAMpdx57+YdWpYZ/xdofS0P+FfKaDYXhn24ie/tH9G+AB+UBSOKnjN0KSadcRSCMBwGPRiEmNHPavZdsA==
dependencies:
eventemitter3 "4.0.4"
- web3-core-helpers "1.8.0"
+ web3-core-helpers "1.8.1"
websocket "^1.0.32"
-web3-shh@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.8.0.tgz#b4abbf4f59d097ce2f74360e61e2e5c0bd6507c7"
- integrity sha512-DNRgSa9Jf9xYFUGKSMylrf+zt3MPjhI2qF+UWX07o0y3+uf8zalDGiJOWvIS4upAsdPiKKVJ7co+Neof47OMmg==
+web3-shh@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.8.1.tgz#028a95cf9d3a36020380938b9a127610efbb9be7"
+ integrity sha512-sqHgarnfcY2Qt3PYS4R6YveHrDy7hmL09yeLLHHCI+RKirmjLVqV0rc5LJWUtlbYI+kDoa5gbgde489M9ZAC0g==
dependencies:
- web3-core "1.8.0"
- web3-core-method "1.8.0"
- web3-core-subscriptions "1.8.0"
- web3-net "1.8.0"
+ web3-core "1.8.1"
+ web3-core-method "1.8.1"
+ web3-core-subscriptions "1.8.1"
+ web3-net "1.8.1"
-web3-utils@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.8.0.tgz#0a506f8c6af9a2ad6ba79689892662769534fc03"
- integrity sha512-7nUIl7UWpLVka2f09CMbKOSEvorvHnaugIabU4mj7zfMvm0tSByLcEu3eyV9qgS11qxxLuOkzBIwCstTflhmpQ==
+web3-utils@1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.8.1.tgz#f2f7ca7eb65e6feb9f3d61056d0de6bbd57125ff"
+ integrity sha512-LgnM9p6V7rHHUGfpMZod+NST8cRfGzJ1BTXAyNo7A9cJX9LczBfSRxJp+U/GInYe9mby40t3v22AJdlELibnsQ==
dependencies:
bn.js "^5.2.1"
ethereum-bloom-filters "^1.0.6"
@@ -5009,17 +4800,17 @@
utf8 "3.0.0"
web3@^1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/web3/-/web3-1.8.0.tgz#3ca5f0b32de6a1f626407740411219035b5fde64"
- integrity sha512-sldr9stK/SALSJTgI/8qpnDuBJNMGjVR84hJ+AcdQ+MLBGLMGsCDNubCoyO6qgk1/Y9SQ7ignegOI/7BPLoiDA==
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/web3/-/web3-1.8.1.tgz#8ea67215ef5f3a6f6d3381800b527242ea22885a"
+ integrity sha512-tAqFsQhGv340C9OgRJIuoScN7f7wa1tUvsnnDUMt9YE6J4gcm7TV2Uwv+KERnzvV+xgdeuULYpsioRRNKrUvoQ==
dependencies:
- web3-bzz "1.8.0"
- web3-core "1.8.0"
- web3-eth "1.8.0"
- web3-eth-personal "1.8.0"
- web3-net "1.8.0"
- web3-shh "1.8.0"
- web3-utils "1.8.0"
+ web3-bzz "1.8.1"
+ web3-core "1.8.1"
+ web3-eth "1.8.1"
+ web3-eth-personal "1.8.1"
+ web3-net "1.8.1"
+ web3-shh "1.8.1"
+ web3-utils "1.8.1"
webidl-conversions@^3.0.0:
version "3.0.1"
@@ -5046,28 +4837,17 @@
tr46 "~0.0.3"
webidl-conversions "^3.0.0"
-which-boxed-primitive@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
- integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
- dependencies:
- is-bigint "^1.0.1"
- is-boolean-object "^1.1.0"
- is-number-object "^1.0.4"
- is-string "^1.0.5"
- is-symbol "^1.0.3"
-
which-typed-array@^1.1.2:
- version "1.1.8"
- resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f"
- integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
+ integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
dependencies:
available-typed-arrays "^1.0.5"
call-bind "^1.0.2"
- es-abstract "^1.20.0"
for-each "^0.3.3"
+ gopd "^1.0.1"
has-tostringtag "^1.0.0"
- is-typed-array "^1.1.9"
+ is-typed-array "^1.1.10"
which@^2.0.1:
version "2.0.2"
@@ -5115,9 +4895,9 @@
ultron "~1.1.0"
ws@^8.8.1:
- version "8.9.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz#2a994bb67144be1b53fe2d23c53c028adeb7f45e"
- integrity sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==
+ version "8.11.0"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
+ integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==
xhr-request-promise@^0.1.2:
version "0.1.3"