@moonbeam-network/api-augment
Advanced tools
Comparing version 0.2201.0 to 0.2301.0
@@ -6,3 +6,3 @@ import "@polkadot/api-base/types/consts"; | ||
import type { Perbill, Permill } from "@polkadot/types/interfaces/runtime"; | ||
import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmV1MultiLocation } from "@polkadot/types/lookup"; | ||
import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmV3MultiLocation } from "@polkadot/types/lookup"; | ||
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>; | ||
@@ -370,5 +370,5 @@ declare module "@polkadot/api-base/types/consts" { | ||
/** The actual weight for an XCM message is `T::BaseXcmWeight + T::Weigher::weight(&msg)`. */ | ||
baseXcmWeight: u64 & AugmentedConst<ApiType>; | ||
baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Self chain location. */ | ||
selfLocation: XcmV1MultiLocation & AugmentedConst<ApiType>; | ||
selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
@@ -383,5 +383,5 @@ [key: string]: Codec; | ||
*/ | ||
baseXcmWeight: u64 & AugmentedConst<ApiType>; | ||
baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Self chain location. */ | ||
selfLocation: XcmV1MultiLocation & AugmentedConst<ApiType>; | ||
selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
@@ -388,0 +388,0 @@ [key: string]: Codec; |
@@ -491,2 +491,4 @@ import "@polkadot/api-base/types/errors"; | ||
polkadotXcm: { | ||
/** The given account is not an identifiable sovereign account for any location. */ | ||
AccountNotSovereign: AugmentedError<ApiType>; | ||
/** The location is invalid since it already has a subscription from us. */ | ||
@@ -507,6 +509,16 @@ AlreadySubscribed: AugmentedError<ApiType>; | ||
Empty: AugmentedError<ApiType>; | ||
/** The operation required fees to be paid which the initiator could not meet. */ | ||
FeesNotMet: AugmentedError<ApiType>; | ||
/** The message execution fails the filter. */ | ||
Filtered: AugmentedError<ApiType>; | ||
/** The unlock operation cannot succeed because there are still users of the lock. */ | ||
InUse: AugmentedError<ApiType>; | ||
/** Invalid asset for the operation. */ | ||
InvalidAsset: AugmentedError<ApiType>; | ||
/** Origin is invalid for sending. */ | ||
InvalidOrigin: AugmentedError<ApiType>; | ||
/** A remote lock with the corresponding data could not be found. */ | ||
LockNotFound: AugmentedError<ApiType>; | ||
/** The owner does not own (all) of the asset that they wish to do the operation on. */ | ||
LowBalance: AugmentedError<ApiType>; | ||
/** The referenced subscription could not be found. */ | ||
@@ -521,2 +533,4 @@ NoSubscription: AugmentedError<ApiType>; | ||
TooManyAssets: AugmentedError<ApiType>; | ||
/** The asset owner has too many locks on the asset. */ | ||
TooManyLocks: AugmentedError<ApiType>; | ||
/** The desired destination was unreachable, generally because there is a no way of routing to it. */ | ||
@@ -705,3 +719,4 @@ Unreachable: AugmentedError<ApiType>; | ||
DispatchWeightBiggerThanTotalWeight: AugmentedError<ApiType>; | ||
ErrorSending: AugmentedError<ApiType>; | ||
ErrorDelivering: AugmentedError<ApiType>; | ||
ErrorValidating: AugmentedError<ApiType>; | ||
FailedMultiLocationToJunction: AugmentedError<ApiType>; | ||
@@ -708,0 +723,0 @@ FeePerSecondNotSet: AugmentedError<ApiType>; |
@@ -18,3 +18,3 @@ import "@polkadot/rpc-core/types/jsonrpc"; | ||
import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from "@polkadot/types/interfaces/grandpa"; | ||
import type { MmrLeafBatchProof, MmrLeafProof } from "@polkadot/types/interfaces/mmr"; | ||
import type { MmrHash, MmrLeafBatchProof } from "@polkadot/types/interfaces/mmr"; | ||
import type { StorageKind } from "@polkadot/types/interfaces/offchain"; | ||
@@ -290,6 +290,18 @@ import type { FeeDetails, RuntimeDispatchInfoV1 } from "@polkadot/types/interfaces/payment"; | ||
mmr: { | ||
/** Generate MMR proof for the given leaf indices. */ | ||
generateBatchProof: AugmentedRpc<(leafIndices: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>; | ||
/** Generate MMR proof for given leaf index. */ | ||
generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>; | ||
/** Generate MMR proof for the given block numbers. */ | ||
generateProof: AugmentedRpc<(blockNumbers: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], bestKnownBlockNumber?: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>; | ||
/** Get the MMR root hash for the current best block. */ | ||
root: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<MmrHash>>; | ||
/** Verify an MMR proof */ | ||
verifyProof: AugmentedRpc<(proof: MmrLeafBatchProof | { | ||
blockHash?: any; | ||
leaves?: any; | ||
proof?: any; | ||
} | string | Uint8Array) => Observable<bool>>; | ||
/** Verify an MMR proof statelessly given an mmr_root */ | ||
verifyProofStateless: AugmentedRpc<(root: MmrHash | string | Uint8Array, proof: MmrLeafBatchProof | { | ||
blockHash?: any; | ||
leaves?: any; | ||
proof?: any; | ||
} | string | Uint8Array) => Observable<bool>>; | ||
}; | ||
@@ -296,0 +308,0 @@ net: { |
@@ -13,3 +13,3 @@ import "@polkadot/api-base/types/calls"; | ||
import type { FeeDetails, RuntimeDispatchInfo } from "@polkadot/types/interfaces/payment"; | ||
import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill } from "@polkadot/types/interfaces/runtime"; | ||
import type { AccountId, Balance, Block, H160, H256, Header, Index, KeyTypeId, Permill, Weight } from "@polkadot/types/interfaces/runtime"; | ||
import type { RuntimeVersion } from "@polkadot/types/interfaces/state"; | ||
@@ -211,3 +211,3 @@ import type { ApplyExtrinsicResult, DispatchError } from "@polkadot/types/interfaces/system"; | ||
}; | ||
/** 0x37c8bb1350a9a2a8/2 */ | ||
/** 0x37c8bb1350a9a2a8/3 */ | ||
transactionPaymentApi: { | ||
@@ -218,2 +218,9 @@ /** The transaction fee details */ | ||
queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>; | ||
/** Query the output of the current LengthToFee given some input */ | ||
queryLengthToFee: AugmentedCall<ApiType, (length: u32 | AnyNumber | Uint8Array) => Observable<Balance>>; | ||
/** Query the output of the current WeightToFee given some input */ | ||
queryWeightToFee: AugmentedCall<ApiType, (weight: Weight | { | ||
refTime?: any; | ||
proofSize?: any; | ||
} | string | Uint8Array) => Observable<Balance>>; | ||
/** Generic call */ | ||
@@ -220,0 +227,0 @@ [key: string]: DecoratedCallBase<ApiType>; |
import "@polkadot/types/types/registry"; | ||
import type { AccountEthereumSignature, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonbeamRuntimeAssetConfigAssetRegistrarMetadata, MoonbeamRuntimeOriginCaller, MoonbeamRuntimeProxyType, MoonbeamRuntimeRuntime, MoonbeamRuntimeXcmConfigAssetType, MoonbeamRuntimeXcmConfigCurrencyId, MoonbeamRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsAssetStatus, PalletAssetsCall, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsCall, PalletMigrationsError, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletRootTestingCall, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorHrmpInitParams, PalletXcmTransactorHrmpOperation, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesHrmpChannelId, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpArithmeticArithmeticError, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup"; | ||
import type { AccountEthereumSignature, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonbeamRuntimeAssetConfigAssetRegistrarMetadata, MoonbeamRuntimeOriginCaller, MoonbeamRuntimeProxyType, MoonbeamRuntimeRuntime, MoonbeamRuntimeXcmConfigAssetType, MoonbeamRuntimeXcmConfigCurrencyId, MoonbeamRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsAssetStatus, PalletAssetsCall, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsCall, PalletMigrationsError, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletRootTestingCall, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorHrmpInitParams, PalletXcmTransactorHrmpOperation, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesHrmpChannelId, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpArithmeticArithmeticError, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3VecPalletInfo, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup"; | ||
declare module "@polkadot/types/types/registry" { | ||
@@ -62,2 +62,3 @@ interface InterfaceTypes { | ||
FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis; | ||
FrameSystemExtensionsCheckNonZeroSender: FrameSystemExtensionsCheckNonZeroSender; | ||
FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce; | ||
@@ -220,2 +221,3 @@ FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion; | ||
PalletXcmQueryStatus: PalletXcmQueryStatus; | ||
PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord; | ||
PalletXcmTransactorCall: PalletXcmTransactorCall; | ||
@@ -259,32 +261,47 @@ PalletXcmTransactorCurrency: PalletXcmTransactorCurrency; | ||
XcmDoubleEncoded: XcmDoubleEncoded; | ||
XcmV0Junction: XcmV0Junction; | ||
XcmV0JunctionBodyId: XcmV0JunctionBodyId; | ||
XcmV0JunctionBodyPart: XcmV0JunctionBodyPart; | ||
XcmV0JunctionNetworkId: XcmV0JunctionNetworkId; | ||
XcmV0MultiAsset: XcmV0MultiAsset; | ||
XcmV0MultiLocation: XcmV0MultiLocation; | ||
XcmV0Order: XcmV0Order; | ||
XcmV0OriginKind: XcmV0OriginKind; | ||
XcmV0Response: XcmV0Response; | ||
XcmV0Xcm: XcmV0Xcm; | ||
XcmV1Junction: XcmV1Junction; | ||
XcmV1MultiAsset: XcmV1MultiAsset; | ||
XcmV1MultiLocation: XcmV1MultiLocation; | ||
XcmV1MultiassetAssetId: XcmV1MultiassetAssetId; | ||
XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance; | ||
XcmV1MultiassetFungibility: XcmV1MultiassetFungibility; | ||
XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter; | ||
XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets; | ||
XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility; | ||
XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset; | ||
XcmV1MultilocationJunctions: XcmV1MultilocationJunctions; | ||
XcmV1Order: XcmV1Order; | ||
XcmV1Response: XcmV1Response; | ||
XcmV1Xcm: XcmV1Xcm; | ||
XcmV2BodyId: XcmV2BodyId; | ||
XcmV2BodyPart: XcmV2BodyPart; | ||
XcmV2Instruction: XcmV2Instruction; | ||
XcmV2Junction: XcmV2Junction; | ||
XcmV2MultiAsset: XcmV2MultiAsset; | ||
XcmV2MultiLocation: XcmV2MultiLocation; | ||
XcmV2MultiassetAssetId: XcmV2MultiassetAssetId; | ||
XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance; | ||
XcmV2MultiassetFungibility: XcmV2MultiassetFungibility; | ||
XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter; | ||
XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets; | ||
XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility; | ||
XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset; | ||
XcmV2MultilocationJunctions: XcmV2MultilocationJunctions; | ||
XcmV2NetworkId: XcmV2NetworkId; | ||
XcmV2OriginKind: XcmV2OriginKind; | ||
XcmV2Response: XcmV2Response; | ||
XcmV2TraitsError: XcmV2TraitsError; | ||
XcmV2TraitsOutcome: XcmV2TraitsOutcome; | ||
XcmV2WeightLimit: XcmV2WeightLimit; | ||
XcmV2Xcm: XcmV2Xcm; | ||
XcmV3Instruction: XcmV3Instruction; | ||
XcmV3Junction: XcmV3Junction; | ||
XcmV3JunctionBodyId: XcmV3JunctionBodyId; | ||
XcmV3JunctionBodyPart: XcmV3JunctionBodyPart; | ||
XcmV3JunctionNetworkId: XcmV3JunctionNetworkId; | ||
XcmV3Junctions: XcmV3Junctions; | ||
XcmV3MaybeErrorCode: XcmV3MaybeErrorCode; | ||
XcmV3MultiAsset: XcmV3MultiAsset; | ||
XcmV3MultiLocation: XcmV3MultiLocation; | ||
XcmV3MultiassetAssetId: XcmV3MultiassetAssetId; | ||
XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance; | ||
XcmV3MultiassetFungibility: XcmV3MultiassetFungibility; | ||
XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter; | ||
XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets; | ||
XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility; | ||
XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset; | ||
XcmV3PalletInfo: XcmV3PalletInfo; | ||
XcmV3QueryResponseInfo: XcmV3QueryResponseInfo; | ||
XcmV3Response: XcmV3Response; | ||
XcmV3TraitsError: XcmV3TraitsError; | ||
XcmV3TraitsOutcome: XcmV3TraitsOutcome; | ||
XcmV3VecPalletInfo: XcmV3VecPalletInfo; | ||
XcmV3WeightLimit: XcmV3WeightLimit; | ||
XcmV3Xcm: XcmV3Xcm; | ||
XcmVersionedAssetId: XcmVersionedAssetId; | ||
XcmVersionedMultiAsset: XcmVersionedMultiAsset; | ||
@@ -291,0 +308,0 @@ XcmVersionedMultiAssets: XcmVersionedMultiAssets; |
@@ -6,3 +6,3 @@ import "@polkadot/api-base/types/consts"; | ||
import type { Perbill, Permill } from "@polkadot/types/interfaces/runtime"; | ||
import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, PalletReferendaTrackInfo, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmV1MultiLocation } from "@polkadot/types/lookup"; | ||
import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, PalletReferendaTrackInfo, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmV3MultiLocation } from "@polkadot/types/lookup"; | ||
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>; | ||
@@ -409,5 +409,5 @@ declare module "@polkadot/api-base/types/consts" { | ||
/** The actual weight for an XCM message is `T::BaseXcmWeight + T::Weigher::weight(&msg)`. */ | ||
baseXcmWeight: u64 & AugmentedConst<ApiType>; | ||
baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Self chain location. */ | ||
selfLocation: XcmV1MultiLocation & AugmentedConst<ApiType>; | ||
selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
@@ -422,5 +422,5 @@ [key: string]: Codec; | ||
*/ | ||
baseXcmWeight: u64 & AugmentedConst<ApiType>; | ||
baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Self chain location. */ | ||
selfLocation: XcmV1MultiLocation & AugmentedConst<ApiType>; | ||
selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
@@ -427,0 +427,0 @@ [key: string]: Codec; |
@@ -552,2 +552,4 @@ import "@polkadot/api-base/types/errors"; | ||
polkadotXcm: { | ||
/** The given account is not an identifiable sovereign account for any location. */ | ||
AccountNotSovereign: AugmentedError<ApiType>; | ||
/** The location is invalid since it already has a subscription from us. */ | ||
@@ -568,6 +570,16 @@ AlreadySubscribed: AugmentedError<ApiType>; | ||
Empty: AugmentedError<ApiType>; | ||
/** The operation required fees to be paid which the initiator could not meet. */ | ||
FeesNotMet: AugmentedError<ApiType>; | ||
/** The message execution fails the filter. */ | ||
Filtered: AugmentedError<ApiType>; | ||
/** The unlock operation cannot succeed because there are still users of the lock. */ | ||
InUse: AugmentedError<ApiType>; | ||
/** Invalid asset for the operation. */ | ||
InvalidAsset: AugmentedError<ApiType>; | ||
/** Origin is invalid for sending. */ | ||
InvalidOrigin: AugmentedError<ApiType>; | ||
/** A remote lock with the corresponding data could not be found. */ | ||
LockNotFound: AugmentedError<ApiType>; | ||
/** The owner does not own (all) of the asset that they wish to do the operation on. */ | ||
LowBalance: AugmentedError<ApiType>; | ||
/** The referenced subscription could not be found. */ | ||
@@ -582,2 +594,4 @@ NoSubscription: AugmentedError<ApiType>; | ||
TooManyAssets: AugmentedError<ApiType>; | ||
/** The asset owner has too many locks on the asset. */ | ||
TooManyLocks: AugmentedError<ApiType>; | ||
/** The desired destination was unreachable, generally because there is a no way of routing to it. */ | ||
@@ -814,3 +828,4 @@ Unreachable: AugmentedError<ApiType>; | ||
DispatchWeightBiggerThanTotalWeight: AugmentedError<ApiType>; | ||
ErrorSending: AugmentedError<ApiType>; | ||
ErrorDelivering: AugmentedError<ApiType>; | ||
ErrorValidating: AugmentedError<ApiType>; | ||
FailedMultiLocationToJunction: AugmentedError<ApiType>; | ||
@@ -817,0 +832,0 @@ FeePerSecondNotSet: AugmentedError<ApiType>; |
@@ -18,3 +18,3 @@ import "@polkadot/rpc-core/types/jsonrpc"; | ||
import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from "@polkadot/types/interfaces/grandpa"; | ||
import type { MmrLeafBatchProof, MmrLeafProof } from "@polkadot/types/interfaces/mmr"; | ||
import type { MmrHash, MmrLeafBatchProof } from "@polkadot/types/interfaces/mmr"; | ||
import type { StorageKind } from "@polkadot/types/interfaces/offchain"; | ||
@@ -290,6 +290,18 @@ import type { FeeDetails, RuntimeDispatchInfoV1 } from "@polkadot/types/interfaces/payment"; | ||
mmr: { | ||
/** Generate MMR proof for the given leaf indices. */ | ||
generateBatchProof: AugmentedRpc<(leafIndices: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>; | ||
/** Generate MMR proof for given leaf index. */ | ||
generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>; | ||
/** Generate MMR proof for the given block numbers. */ | ||
generateProof: AugmentedRpc<(blockNumbers: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], bestKnownBlockNumber?: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>; | ||
/** Get the MMR root hash for the current best block. */ | ||
root: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<MmrHash>>; | ||
/** Verify an MMR proof */ | ||
verifyProof: AugmentedRpc<(proof: MmrLeafBatchProof | { | ||
blockHash?: any; | ||
leaves?: any; | ||
proof?: any; | ||
} | string | Uint8Array) => Observable<bool>>; | ||
/** Verify an MMR proof statelessly given an mmr_root */ | ||
verifyProofStateless: AugmentedRpc<(root: MmrHash | string | Uint8Array, proof: MmrLeafBatchProof | { | ||
blockHash?: any; | ||
leaves?: any; | ||
proof?: any; | ||
} | string | Uint8Array) => Observable<bool>>; | ||
}; | ||
@@ -296,0 +308,0 @@ moon: { |
@@ -13,3 +13,3 @@ import "@polkadot/api-base/types/calls"; | ||
import type { FeeDetails, RuntimeDispatchInfo } from "@polkadot/types/interfaces/payment"; | ||
import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill } from "@polkadot/types/interfaces/runtime"; | ||
import type { AccountId, Balance, Block, H160, H256, Header, Index, KeyTypeId, Permill, Weight } from "@polkadot/types/interfaces/runtime"; | ||
import type { RuntimeVersion } from "@polkadot/types/interfaces/state"; | ||
@@ -211,3 +211,3 @@ import type { ApplyExtrinsicResult, DispatchError } from "@polkadot/types/interfaces/system"; | ||
}; | ||
/** 0x37c8bb1350a9a2a8/2 */ | ||
/** 0x37c8bb1350a9a2a8/3 */ | ||
transactionPaymentApi: { | ||
@@ -218,2 +218,9 @@ /** The transaction fee details */ | ||
queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>; | ||
/** Query the output of the current LengthToFee given some input */ | ||
queryLengthToFee: AugmentedCall<ApiType, (length: u32 | AnyNumber | Uint8Array) => Observable<Balance>>; | ||
/** Query the output of the current WeightToFee given some input */ | ||
queryWeightToFee: AugmentedCall<ApiType, (weight: Weight | { | ||
refTime?: any; | ||
proofSize?: any; | ||
} | string | Uint8Array) => Observable<Balance>>; | ||
/** Generic call */ | ||
@@ -220,0 +227,0 @@ [key: string]: DecoratedCallBase<ApiType>; |
import "@polkadot/types/types/registry"; | ||
import type { AccountEthereumSignature, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchPostDispatchInfo, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonbaseRuntimeAssetConfigAssetRegistrarMetadata, MoonbaseRuntimeGovernanceOriginsCustomOriginsOrigin, MoonbaseRuntimeOriginCaller, MoonbaseRuntimeProxyType, MoonbaseRuntimeRuntime, MoonbaseRuntimeXcmConfigAssetType, MoonbaseRuntimeXcmConfigCurrencyId, MoonbaseRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsAssetStatus, PalletAssetsCall, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletConvictionVotingCall, PalletConvictionVotingConviction, PalletConvictionVotingDelegations, PalletConvictionVotingError, PalletConvictionVotingEvent, PalletConvictionVotingTally, PalletConvictionVotingVoteAccountVote, PalletConvictionVotingVoteCasting, PalletConvictionVotingVoteDelegating, PalletConvictionVotingVotePriorLock, PalletConvictionVotingVoteVoting, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEthereumXcmCall, PalletEthereumXcmError, PalletEthereumXcmRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsCall, PalletMigrationsError, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRootTestingCall, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletWhitelistCall, PalletWhitelistError, PalletWhitelistEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorHrmpInitParams, PalletXcmTransactorHrmpOperation, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesHrmpChannelId, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpArithmeticArithmeticError, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeDispatchErrorWithPostInfo, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmDoubleEncoded, XcmPrimitivesEthereumXcmEthereumXcmFee, XcmPrimitivesEthereumXcmEthereumXcmTransaction, XcmPrimitivesEthereumXcmEthereumXcmTransactionV1, XcmPrimitivesEthereumXcmEthereumXcmTransactionV2, XcmPrimitivesEthereumXcmManualEthereumXcmFee, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup"; | ||
import type { AccountEthereumSignature, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchPostDispatchInfo, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonbaseRuntimeAssetConfigAssetRegistrarMetadata, MoonbaseRuntimeGovernanceOriginsCustomOriginsOrigin, MoonbaseRuntimeOriginCaller, MoonbaseRuntimeProxyType, MoonbaseRuntimeRuntime, MoonbaseRuntimeXcmConfigAssetType, MoonbaseRuntimeXcmConfigCurrencyId, MoonbaseRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsAssetStatus, PalletAssetsCall, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletConvictionVotingCall, PalletConvictionVotingConviction, PalletConvictionVotingDelegations, PalletConvictionVotingError, PalletConvictionVotingEvent, PalletConvictionVotingTally, PalletConvictionVotingVoteAccountVote, PalletConvictionVotingVoteCasting, PalletConvictionVotingVoteDelegating, PalletConvictionVotingVotePriorLock, PalletConvictionVotingVoteVoting, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEthereumXcmCall, PalletEthereumXcmError, PalletEthereumXcmRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsCall, PalletMigrationsError, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRootTestingCall, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletWhitelistCall, PalletWhitelistError, PalletWhitelistEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorHrmpInitParams, PalletXcmTransactorHrmpOperation, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesHrmpChannelId, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpArithmeticArithmeticError, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeDispatchErrorWithPostInfo, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmDoubleEncoded, XcmPrimitivesEthereumXcmEthereumXcmFee, XcmPrimitivesEthereumXcmEthereumXcmTransaction, XcmPrimitivesEthereumXcmEthereumXcmTransactionV1, XcmPrimitivesEthereumXcmEthereumXcmTransactionV2, XcmPrimitivesEthereumXcmManualEthereumXcmFee, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3VecPalletInfo, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup"; | ||
declare module "@polkadot/types/types/registry" { | ||
@@ -65,2 +65,3 @@ interface InterfaceTypes { | ||
FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis; | ||
FrameSystemExtensionsCheckNonZeroSender: FrameSystemExtensionsCheckNonZeroSender; | ||
FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce; | ||
@@ -253,2 +254,3 @@ FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion; | ||
PalletXcmQueryStatus: PalletXcmQueryStatus; | ||
PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord; | ||
PalletXcmTransactorCall: PalletXcmTransactorCall; | ||
@@ -298,32 +300,47 @@ PalletXcmTransactorCurrency: PalletXcmTransactorCurrency; | ||
XcmPrimitivesEthereumXcmManualEthereumXcmFee: XcmPrimitivesEthereumXcmManualEthereumXcmFee; | ||
XcmV0Junction: XcmV0Junction; | ||
XcmV0JunctionBodyId: XcmV0JunctionBodyId; | ||
XcmV0JunctionBodyPart: XcmV0JunctionBodyPart; | ||
XcmV0JunctionNetworkId: XcmV0JunctionNetworkId; | ||
XcmV0MultiAsset: XcmV0MultiAsset; | ||
XcmV0MultiLocation: XcmV0MultiLocation; | ||
XcmV0Order: XcmV0Order; | ||
XcmV0OriginKind: XcmV0OriginKind; | ||
XcmV0Response: XcmV0Response; | ||
XcmV0Xcm: XcmV0Xcm; | ||
XcmV1Junction: XcmV1Junction; | ||
XcmV1MultiAsset: XcmV1MultiAsset; | ||
XcmV1MultiLocation: XcmV1MultiLocation; | ||
XcmV1MultiassetAssetId: XcmV1MultiassetAssetId; | ||
XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance; | ||
XcmV1MultiassetFungibility: XcmV1MultiassetFungibility; | ||
XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter; | ||
XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets; | ||
XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility; | ||
XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset; | ||
XcmV1MultilocationJunctions: XcmV1MultilocationJunctions; | ||
XcmV1Order: XcmV1Order; | ||
XcmV1Response: XcmV1Response; | ||
XcmV1Xcm: XcmV1Xcm; | ||
XcmV2BodyId: XcmV2BodyId; | ||
XcmV2BodyPart: XcmV2BodyPart; | ||
XcmV2Instruction: XcmV2Instruction; | ||
XcmV2Junction: XcmV2Junction; | ||
XcmV2MultiAsset: XcmV2MultiAsset; | ||
XcmV2MultiLocation: XcmV2MultiLocation; | ||
XcmV2MultiassetAssetId: XcmV2MultiassetAssetId; | ||
XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance; | ||
XcmV2MultiassetFungibility: XcmV2MultiassetFungibility; | ||
XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter; | ||
XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets; | ||
XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility; | ||
XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset; | ||
XcmV2MultilocationJunctions: XcmV2MultilocationJunctions; | ||
XcmV2NetworkId: XcmV2NetworkId; | ||
XcmV2OriginKind: XcmV2OriginKind; | ||
XcmV2Response: XcmV2Response; | ||
XcmV2TraitsError: XcmV2TraitsError; | ||
XcmV2TraitsOutcome: XcmV2TraitsOutcome; | ||
XcmV2WeightLimit: XcmV2WeightLimit; | ||
XcmV2Xcm: XcmV2Xcm; | ||
XcmV3Instruction: XcmV3Instruction; | ||
XcmV3Junction: XcmV3Junction; | ||
XcmV3JunctionBodyId: XcmV3JunctionBodyId; | ||
XcmV3JunctionBodyPart: XcmV3JunctionBodyPart; | ||
XcmV3JunctionNetworkId: XcmV3JunctionNetworkId; | ||
XcmV3Junctions: XcmV3Junctions; | ||
XcmV3MaybeErrorCode: XcmV3MaybeErrorCode; | ||
XcmV3MultiAsset: XcmV3MultiAsset; | ||
XcmV3MultiLocation: XcmV3MultiLocation; | ||
XcmV3MultiassetAssetId: XcmV3MultiassetAssetId; | ||
XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance; | ||
XcmV3MultiassetFungibility: XcmV3MultiassetFungibility; | ||
XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter; | ||
XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets; | ||
XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility; | ||
XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset; | ||
XcmV3PalletInfo: XcmV3PalletInfo; | ||
XcmV3QueryResponseInfo: XcmV3QueryResponseInfo; | ||
XcmV3Response: XcmV3Response; | ||
XcmV3TraitsError: XcmV3TraitsError; | ||
XcmV3TraitsOutcome: XcmV3TraitsOutcome; | ||
XcmV3VecPalletInfo: XcmV3VecPalletInfo; | ||
XcmV3WeightLimit: XcmV3WeightLimit; | ||
XcmV3Xcm: XcmV3Xcm; | ||
XcmVersionedAssetId: XcmVersionedAssetId; | ||
XcmVersionedMultiAsset: XcmVersionedMultiAsset; | ||
@@ -330,0 +347,0 @@ XcmVersionedMultiAssets: XcmVersionedMultiAssets; |
@@ -6,3 +6,3 @@ import "@polkadot/api-base/types/consts"; | ||
import type { Perbill, Permill } from "@polkadot/types/interfaces/runtime"; | ||
import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, PalletReferendaTrackInfo, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmV1MultiLocation } from "@polkadot/types/lookup"; | ||
import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, PalletReferendaTrackInfo, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmV3MultiLocation } from "@polkadot/types/lookup"; | ||
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>; | ||
@@ -409,5 +409,5 @@ declare module "@polkadot/api-base/types/consts" { | ||
/** The actual weight for an XCM message is `T::BaseXcmWeight + T::Weigher::weight(&msg)`. */ | ||
baseXcmWeight: u64 & AugmentedConst<ApiType>; | ||
baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Self chain location. */ | ||
selfLocation: XcmV1MultiLocation & AugmentedConst<ApiType>; | ||
selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
@@ -422,5 +422,5 @@ [key: string]: Codec; | ||
*/ | ||
baseXcmWeight: u64 & AugmentedConst<ApiType>; | ||
baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Self chain location. */ | ||
selfLocation: XcmV1MultiLocation & AugmentedConst<ApiType>; | ||
selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
@@ -427,0 +427,0 @@ [key: string]: Codec; |
@@ -546,2 +546,4 @@ import "@polkadot/api-base/types/errors"; | ||
polkadotXcm: { | ||
/** The given account is not an identifiable sovereign account for any location. */ | ||
AccountNotSovereign: AugmentedError<ApiType>; | ||
/** The location is invalid since it already has a subscription from us. */ | ||
@@ -562,6 +564,16 @@ AlreadySubscribed: AugmentedError<ApiType>; | ||
Empty: AugmentedError<ApiType>; | ||
/** The operation required fees to be paid which the initiator could not meet. */ | ||
FeesNotMet: AugmentedError<ApiType>; | ||
/** The message execution fails the filter. */ | ||
Filtered: AugmentedError<ApiType>; | ||
/** The unlock operation cannot succeed because there are still users of the lock. */ | ||
InUse: AugmentedError<ApiType>; | ||
/** Invalid asset for the operation. */ | ||
InvalidAsset: AugmentedError<ApiType>; | ||
/** Origin is invalid for sending. */ | ||
InvalidOrigin: AugmentedError<ApiType>; | ||
/** A remote lock with the corresponding data could not be found. */ | ||
LockNotFound: AugmentedError<ApiType>; | ||
/** The owner does not own (all) of the asset that they wish to do the operation on. */ | ||
LowBalance: AugmentedError<ApiType>; | ||
/** The referenced subscription could not be found. */ | ||
@@ -576,2 +588,4 @@ NoSubscription: AugmentedError<ApiType>; | ||
TooManyAssets: AugmentedError<ApiType>; | ||
/** The asset owner has too many locks on the asset. */ | ||
TooManyLocks: AugmentedError<ApiType>; | ||
/** The desired destination was unreachable, generally because there is a no way of routing to it. */ | ||
@@ -802,3 +816,4 @@ Unreachable: AugmentedError<ApiType>; | ||
DispatchWeightBiggerThanTotalWeight: AugmentedError<ApiType>; | ||
ErrorSending: AugmentedError<ApiType>; | ||
ErrorDelivering: AugmentedError<ApiType>; | ||
ErrorValidating: AugmentedError<ApiType>; | ||
FailedMultiLocationToJunction: AugmentedError<ApiType>; | ||
@@ -805,0 +820,0 @@ FeePerSecondNotSet: AugmentedError<ApiType>; |
@@ -18,3 +18,3 @@ import "@polkadot/rpc-core/types/jsonrpc"; | ||
import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from "@polkadot/types/interfaces/grandpa"; | ||
import type { MmrLeafBatchProof, MmrLeafProof } from "@polkadot/types/interfaces/mmr"; | ||
import type { MmrHash, MmrLeafBatchProof } from "@polkadot/types/interfaces/mmr"; | ||
import type { StorageKind } from "@polkadot/types/interfaces/offchain"; | ||
@@ -290,6 +290,18 @@ import type { FeeDetails, RuntimeDispatchInfoV1 } from "@polkadot/types/interfaces/payment"; | ||
mmr: { | ||
/** Generate MMR proof for the given leaf indices. */ | ||
generateBatchProof: AugmentedRpc<(leafIndices: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>; | ||
/** Generate MMR proof for given leaf index. */ | ||
generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>; | ||
/** Generate MMR proof for the given block numbers. */ | ||
generateProof: AugmentedRpc<(blockNumbers: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], bestKnownBlockNumber?: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>; | ||
/** Get the MMR root hash for the current best block. */ | ||
root: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<MmrHash>>; | ||
/** Verify an MMR proof */ | ||
verifyProof: AugmentedRpc<(proof: MmrLeafBatchProof | { | ||
blockHash?: any; | ||
leaves?: any; | ||
proof?: any; | ||
} | string | Uint8Array) => Observable<bool>>; | ||
/** Verify an MMR proof statelessly given an mmr_root */ | ||
verifyProofStateless: AugmentedRpc<(root: MmrHash | string | Uint8Array, proof: MmrLeafBatchProof | { | ||
blockHash?: any; | ||
leaves?: any; | ||
proof?: any; | ||
} | string | Uint8Array) => Observable<bool>>; | ||
}; | ||
@@ -296,0 +308,0 @@ net: { |
@@ -13,3 +13,3 @@ import "@polkadot/api-base/types/calls"; | ||
import type { FeeDetails, RuntimeDispatchInfo } from "@polkadot/types/interfaces/payment"; | ||
import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill } from "@polkadot/types/interfaces/runtime"; | ||
import type { AccountId, Balance, Block, H160, H256, Header, Index, KeyTypeId, Permill, Weight } from "@polkadot/types/interfaces/runtime"; | ||
import type { RuntimeVersion } from "@polkadot/types/interfaces/state"; | ||
@@ -211,3 +211,3 @@ import type { ApplyExtrinsicResult, DispatchError } from "@polkadot/types/interfaces/system"; | ||
}; | ||
/** 0x37c8bb1350a9a2a8/2 */ | ||
/** 0x37c8bb1350a9a2a8/3 */ | ||
transactionPaymentApi: { | ||
@@ -218,2 +218,9 @@ /** The transaction fee details */ | ||
queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>; | ||
/** Query the output of the current LengthToFee given some input */ | ||
queryLengthToFee: AugmentedCall<ApiType, (length: u32 | AnyNumber | Uint8Array) => Observable<Balance>>; | ||
/** Query the output of the current WeightToFee given some input */ | ||
queryWeightToFee: AugmentedCall<ApiType, (weight: Weight | { | ||
refTime?: any; | ||
proofSize?: any; | ||
} | string | Uint8Array) => Observable<Balance>>; | ||
/** Generic call */ | ||
@@ -220,0 +227,0 @@ [key: string]: DecoratedCallBase<ApiType>; |
import "@polkadot/types/types/registry"; | ||
import type { AccountEthereumSignature, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchPostDispatchInfo, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonriverRuntimeAssetConfigAssetRegistrarMetadata, MoonriverRuntimeGovernanceOriginsCustomOriginsOrigin, MoonriverRuntimeOriginCaller, MoonriverRuntimeProxyType, MoonriverRuntimeRuntime, MoonriverRuntimeXcmConfigAssetType, MoonriverRuntimeXcmConfigCurrencyId, MoonriverRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsAssetStatus, PalletAssetsCall, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletConvictionVotingCall, PalletConvictionVotingConviction, PalletConvictionVotingDelegations, PalletConvictionVotingError, PalletConvictionVotingEvent, PalletConvictionVotingTally, PalletConvictionVotingVoteAccountVote, PalletConvictionVotingVoteCasting, PalletConvictionVotingVoteDelegating, PalletConvictionVotingVotePriorLock, PalletConvictionVotingVoteVoting, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsCall, PalletMigrationsError, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRootTestingCall, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletWhitelistCall, PalletWhitelistError, PalletWhitelistEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorHrmpInitParams, PalletXcmTransactorHrmpOperation, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesHrmpChannelId, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpArithmeticArithmeticError, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeDispatchErrorWithPostInfo, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup"; | ||
import type { AccountEthereumSignature, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchPostDispatchInfo, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonriverRuntimeAssetConfigAssetRegistrarMetadata, MoonriverRuntimeGovernanceOriginsCustomOriginsOrigin, MoonriverRuntimeOriginCaller, MoonriverRuntimeProxyType, MoonriverRuntimeRuntime, MoonriverRuntimeXcmConfigAssetType, MoonriverRuntimeXcmConfigCurrencyId, MoonriverRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsAssetStatus, PalletAssetsCall, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletConvictionVotingCall, PalletConvictionVotingConviction, PalletConvictionVotingDelegations, PalletConvictionVotingError, PalletConvictionVotingEvent, PalletConvictionVotingTally, PalletConvictionVotingVoteAccountVote, PalletConvictionVotingVoteCasting, PalletConvictionVotingVoteDelegating, PalletConvictionVotingVotePriorLock, PalletConvictionVotingVoteVoting, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsCall, PalletMigrationsError, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRootTestingCall, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletWhitelistCall, PalletWhitelistError, PalletWhitelistEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorHrmpInitParams, PalletXcmTransactorHrmpOperation, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesHrmpChannelId, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpArithmeticArithmeticError, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeDispatchErrorWithPostInfo, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3VecPalletInfo, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup"; | ||
declare module "@polkadot/types/types/registry" { | ||
@@ -64,2 +64,3 @@ interface InterfaceTypes { | ||
FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis; | ||
FrameSystemExtensionsCheckNonZeroSender: FrameSystemExtensionsCheckNonZeroSender; | ||
FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce; | ||
@@ -246,2 +247,3 @@ FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion; | ||
PalletXcmQueryStatus: PalletXcmQueryStatus; | ||
PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord; | ||
PalletXcmTransactorCall: PalletXcmTransactorCall; | ||
@@ -286,32 +288,47 @@ PalletXcmTransactorCurrency: PalletXcmTransactorCurrency; | ||
XcmDoubleEncoded: XcmDoubleEncoded; | ||
XcmV0Junction: XcmV0Junction; | ||
XcmV0JunctionBodyId: XcmV0JunctionBodyId; | ||
XcmV0JunctionBodyPart: XcmV0JunctionBodyPart; | ||
XcmV0JunctionNetworkId: XcmV0JunctionNetworkId; | ||
XcmV0MultiAsset: XcmV0MultiAsset; | ||
XcmV0MultiLocation: XcmV0MultiLocation; | ||
XcmV0Order: XcmV0Order; | ||
XcmV0OriginKind: XcmV0OriginKind; | ||
XcmV0Response: XcmV0Response; | ||
XcmV0Xcm: XcmV0Xcm; | ||
XcmV1Junction: XcmV1Junction; | ||
XcmV1MultiAsset: XcmV1MultiAsset; | ||
XcmV1MultiLocation: XcmV1MultiLocation; | ||
XcmV1MultiassetAssetId: XcmV1MultiassetAssetId; | ||
XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance; | ||
XcmV1MultiassetFungibility: XcmV1MultiassetFungibility; | ||
XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter; | ||
XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets; | ||
XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility; | ||
XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset; | ||
XcmV1MultilocationJunctions: XcmV1MultilocationJunctions; | ||
XcmV1Order: XcmV1Order; | ||
XcmV1Response: XcmV1Response; | ||
XcmV1Xcm: XcmV1Xcm; | ||
XcmV2BodyId: XcmV2BodyId; | ||
XcmV2BodyPart: XcmV2BodyPart; | ||
XcmV2Instruction: XcmV2Instruction; | ||
XcmV2Junction: XcmV2Junction; | ||
XcmV2MultiAsset: XcmV2MultiAsset; | ||
XcmV2MultiLocation: XcmV2MultiLocation; | ||
XcmV2MultiassetAssetId: XcmV2MultiassetAssetId; | ||
XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance; | ||
XcmV2MultiassetFungibility: XcmV2MultiassetFungibility; | ||
XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter; | ||
XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets; | ||
XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility; | ||
XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset; | ||
XcmV2MultilocationJunctions: XcmV2MultilocationJunctions; | ||
XcmV2NetworkId: XcmV2NetworkId; | ||
XcmV2OriginKind: XcmV2OriginKind; | ||
XcmV2Response: XcmV2Response; | ||
XcmV2TraitsError: XcmV2TraitsError; | ||
XcmV2TraitsOutcome: XcmV2TraitsOutcome; | ||
XcmV2WeightLimit: XcmV2WeightLimit; | ||
XcmV2Xcm: XcmV2Xcm; | ||
XcmV3Instruction: XcmV3Instruction; | ||
XcmV3Junction: XcmV3Junction; | ||
XcmV3JunctionBodyId: XcmV3JunctionBodyId; | ||
XcmV3JunctionBodyPart: XcmV3JunctionBodyPart; | ||
XcmV3JunctionNetworkId: XcmV3JunctionNetworkId; | ||
XcmV3Junctions: XcmV3Junctions; | ||
XcmV3MaybeErrorCode: XcmV3MaybeErrorCode; | ||
XcmV3MultiAsset: XcmV3MultiAsset; | ||
XcmV3MultiLocation: XcmV3MultiLocation; | ||
XcmV3MultiassetAssetId: XcmV3MultiassetAssetId; | ||
XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance; | ||
XcmV3MultiassetFungibility: XcmV3MultiassetFungibility; | ||
XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter; | ||
XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets; | ||
XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility; | ||
XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset; | ||
XcmV3PalletInfo: XcmV3PalletInfo; | ||
XcmV3QueryResponseInfo: XcmV3QueryResponseInfo; | ||
XcmV3Response: XcmV3Response; | ||
XcmV3TraitsError: XcmV3TraitsError; | ||
XcmV3TraitsOutcome: XcmV3TraitsOutcome; | ||
XcmV3VecPalletInfo: XcmV3VecPalletInfo; | ||
XcmV3WeightLimit: XcmV3WeightLimit; | ||
XcmV3Xcm: XcmV3Xcm; | ||
XcmVersionedAssetId: XcmVersionedAssetId; | ||
XcmVersionedMultiAsset: XcmVersionedMultiAsset; | ||
@@ -318,0 +335,0 @@ XcmVersionedMultiAssets: XcmVersionedMultiAssets; |
{ | ||
"name": "@moonbeam-network/api-augment", | ||
"version": "0.2201.0", | ||
"version": "0.2301.0", | ||
"type": "module", | ||
@@ -65,4 +65,4 @@ "private": false, | ||
"devDependencies": { | ||
"@polkadot/api": "^10.1.3", | ||
"@polkadot/typegen": "^10.1.3", | ||
"@polkadot/api": "^10.3.4", | ||
"@polkadot/typegen": "^10.3.4", | ||
"prettier": "^2.7.1", | ||
@@ -69,0 +69,0 @@ "prettier-plugin-jsdoc": "^0.3.38", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
3472193
80166
0