@moonbeam-network/api-augment
Advanced tools
Comparing version 0.1700.0 to 0.1801.0
import type { ApiTypes } from "@polkadot/api-base/types"; | ||
import type { Bytes, Option, Vec, bool, u128, u16, u32, u64, u8 } from "@polkadot/types-codec"; | ||
import type { Bytes, Option, bool, u128, u16, u32, u64, u8 } from "@polkadot/types-codec"; | ||
import type { Codec } from "@polkadot/types-codec/types"; | ||
import type { Perbill, Percent, Permill } from "@polkadot/types/interfaces/runtime"; | ||
import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from "@polkadot/types/lookup"; | ||
import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from "@polkadot/types/lookup"; | ||
declare module "@polkadot/api-base/types/consts" { | ||
@@ -223,2 +223,22 @@ interface AugmentedConsts<ApiType extends ApiTypes> { | ||
}; | ||
moonbeamOrbiters: { | ||
/** | ||
* Maximum number of orbiters per collator. | ||
*/ | ||
maxPoolSize: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Maximum number of round to keep on storage. | ||
*/ | ||
maxRoundArchive: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Number of rounds before changing the selected orbiter. WARNING: when | ||
* changing `RotatePeriod`, you need a migration code that sets | ||
* `ForceRotation` to true to avoid holes in `OrbiterPerRound`. | ||
*/ | ||
rotatePeriod: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Generic const | ||
*/ | ||
[key: string]: Codec; | ||
}; | ||
parachainStaking: { | ||
@@ -350,2 +370,35 @@ /** | ||
}; | ||
randomness: { | ||
/** | ||
* Local requests expire and can be purged from storage after this many | ||
* blocks/epochs | ||
*/ | ||
blockExpirationDelay: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* The amount that should be taken as a security deposit when requesting randomness. | ||
*/ | ||
deposit: u128 & AugmentedConst<ApiType>; | ||
/** | ||
* Babe requests expire and can be purged from storage after this many blocks/epochs | ||
*/ | ||
epochExpirationDelay: u64 & AugmentedConst<ApiType>; | ||
/** | ||
* Local per-block VRF requests must be at most this many blocks after the | ||
* block in which they were requested | ||
*/ | ||
maxBlockDelay: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Maximum number of random words that can be requested per request | ||
*/ | ||
maxRandomWords: u8 & AugmentedConst<ApiType>; | ||
/** | ||
* Local per-block VRF requests must be at least this many blocks after | ||
* the block in which they were requested | ||
*/ | ||
minBlockDelay: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Generic const | ||
*/ | ||
[key: string]: Codec; | ||
}; | ||
scheduler: { | ||
@@ -418,6 +471,2 @@ /** | ||
/** | ||
* The polynomial that is applied in order to derive fee from length. | ||
*/ | ||
lengthToFee: Vec<FrameSupportWeightsWeightToFeeCoefficient> & AugmentedConst<ApiType>; | ||
/** | ||
* A fee mulitplier for `Operational` extrinsics to compute "virtual tip" | ||
@@ -448,6 +497,2 @@ * to boost their `priority` | ||
/** | ||
* The polynomial that is applied in order to derive fee from weight. | ||
*/ | ||
weightToFee: Vec<FrameSupportWeightsWeightToFeeCoefficient> & AugmentedConst<ApiType>; | ||
/** | ||
* Generic const | ||
@@ -454,0 +499,0 @@ */ |
@@ -415,2 +415,6 @@ import type { ApiTypes } from "@polkadot/api-base/types"; | ||
/** | ||
* Voting period too low | ||
*/ | ||
VotingPeriodLow: AugmentedError<ApiType>; | ||
/** | ||
* Invalid upper bound. | ||
@@ -462,2 +466,10 @@ */ | ||
/** | ||
* Gas limit is too high. | ||
*/ | ||
GasLimitTooHigh: AugmentedError<ApiType>; | ||
/** | ||
* Gas limit is too low. | ||
*/ | ||
GasLimitTooLow: AugmentedError<ApiType>; | ||
/** | ||
* Gas price is too low. | ||
@@ -471,6 +483,2 @@ */ | ||
/** | ||
* Maximum address count exceeded | ||
*/ | ||
MaxAddressCountExceeded: AugmentedError<ApiType>; | ||
/** | ||
* Calculating total payment overflowed | ||
@@ -480,2 +488,6 @@ */ | ||
/** | ||
* Undefined error. | ||
*/ | ||
Undefined: AugmentedError<ApiType>; | ||
/** | ||
* Withdraw fee failed | ||
@@ -871,2 +883,20 @@ */ | ||
}; | ||
randomness: { | ||
CannotRequestMoreWordsThanMax: AugmentedError<ApiType>; | ||
CannotRequestRandomnessAfterMaxDelay: AugmentedError<ApiType>; | ||
CannotRequestRandomnessBeforeMinDelay: AugmentedError<ApiType>; | ||
MustRequestAtLeastOneWord: AugmentedError<ApiType>; | ||
OnlyRequesterCanIncreaseFee: AugmentedError<ApiType>; | ||
RandomnessResultDNE: AugmentedError<ApiType>; | ||
RandomnessResultNotFilled: AugmentedError<ApiType>; | ||
RequestCannotYetBeFulfilled: AugmentedError<ApiType>; | ||
RequestCounterOverflowed: AugmentedError<ApiType>; | ||
RequestDNE: AugmentedError<ApiType>; | ||
RequestFeeOverflowed: AugmentedError<ApiType>; | ||
RequestHasNotExpired: AugmentedError<ApiType>; | ||
/** | ||
* Generic error | ||
*/ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
scheduler: { | ||
@@ -976,2 +1006,7 @@ /** | ||
/** | ||
* The spend origin is valid but the amount it is allowed to spend is | ||
* lower than the amount to be spent. | ||
*/ | ||
InsufficientPermission: AugmentedError<ApiType>; | ||
/** | ||
* Proposer's balance is too low. | ||
@@ -985,2 +1020,6 @@ */ | ||
/** | ||
* Proposal has not been approved. | ||
*/ | ||
ProposalNotApproved: AugmentedError<ApiType>; | ||
/** | ||
* Too many approvals in the queue. | ||
@@ -994,2 +1033,48 @@ */ | ||
}; | ||
treasuryCouncilCollective: { | ||
/** | ||
* Members are already initialized! | ||
*/ | ||
AlreadyInitialized: AugmentedError<ApiType>; | ||
/** | ||
* Duplicate proposals not allowed | ||
*/ | ||
DuplicateProposal: AugmentedError<ApiType>; | ||
/** | ||
* Duplicate vote ignored | ||
*/ | ||
DuplicateVote: AugmentedError<ApiType>; | ||
/** | ||
* Account is not a member | ||
*/ | ||
NotMember: AugmentedError<ApiType>; | ||
/** | ||
* Proposal must exist | ||
*/ | ||
ProposalMissing: AugmentedError<ApiType>; | ||
/** | ||
* The close call was made too early, before the end of the voting. | ||
*/ | ||
TooEarly: AugmentedError<ApiType>; | ||
/** | ||
* There can only be a maximum of `MaxProposals` active proposals. | ||
*/ | ||
TooManyProposals: AugmentedError<ApiType>; | ||
/** | ||
* Mismatched index | ||
*/ | ||
WrongIndex: AugmentedError<ApiType>; | ||
/** | ||
* The given length bound for the proposal was too low. | ||
*/ | ||
WrongProposalLength: AugmentedError<ApiType>; | ||
/** | ||
* The given weight bound for the proposal was too low. | ||
*/ | ||
WrongProposalWeight: AugmentedError<ApiType>; | ||
/** | ||
* Generic error | ||
*/ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
utility: { | ||
@@ -1102,2 +1187,6 @@ /** | ||
/** | ||
* MinXcmFee not registered for certain reserve location | ||
*/ | ||
MinXcmFeeNotDefined: AugmentedError<ApiType>; | ||
/** | ||
* Not cross-chain transfer. | ||
@@ -1104,0 +1193,0 @@ */ |
@@ -1,2 +0,2 @@ | ||
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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, 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, PalletAssetsCall, PalletAssetsDestroyWitness, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletBaseFeeCall, PalletBaseFeeEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyReleases, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduledV3, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmVersionMigrationStage, ParachainStakingBond, ParachainStakingCall, ParachainStakingCandidateBondLessRequest, ParachainStakingCandidateMetadata, ParachainStakingCapacityStatus, ParachainStakingCollator2, ParachainStakingCollatorCandidate, ParachainStakingCollatorSnapshot, ParachainStakingCollatorStatus, ParachainStakingDelayedPayout, ParachainStakingDelegationRequestsCancelledScheduledRequest, ParachainStakingDelegationRequestsDelegationAction, ParachainStakingDelegationRequestsScheduledRequest, ParachainStakingDelegations, ParachainStakingDelegator, ParachainStakingDelegatorAdded, ParachainStakingDelegatorStatus, ParachainStakingError, ParachainStakingEvent, ParachainStakingInflationInflationInfo, ParachainStakingNominator2, ParachainStakingParachainBondConfig, ParachainStakingRoundInfo, ParachainStakingSetOrderedSetAccountId20, ParachainStakingSetOrderedSetBond, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, XcmDoubleEncoded, XcmTransactorCall, XcmTransactorError, XcmTransactorEvent, XcmTransactorRemoteTransactInfoWithMaxWeight, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, 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, PalletAssetsCall, PalletAssetsDestroyWitness, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletBaseFeeCall, PalletBaseFeeEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyReleases, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingBond, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduledV3, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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"; | ||
declare module "@polkadot/types/types/registry" { | ||
@@ -57,3 +57,2 @@ interface InterfaceTypes { | ||
FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight; | ||
FrameSupportWeightsWeightToFeeCoefficient: FrameSupportWeightsWeightToFeeCoefficient; | ||
FrameSystemAccountInfo: FrameSystemAccountInfo; | ||
@@ -164,2 +163,23 @@ FrameSystemCall: FrameSystemCall; | ||
PalletMoonbeamOrbitersEvent: PalletMoonbeamOrbitersEvent; | ||
PalletParachainStakingBond: PalletParachainStakingBond; | ||
PalletParachainStakingCall: PalletParachainStakingCall; | ||
PalletParachainStakingCandidateBondLessRequest: PalletParachainStakingCandidateBondLessRequest; | ||
PalletParachainStakingCandidateMetadata: PalletParachainStakingCandidateMetadata; | ||
PalletParachainStakingCapacityStatus: PalletParachainStakingCapacityStatus; | ||
PalletParachainStakingCollatorSnapshot: PalletParachainStakingCollatorSnapshot; | ||
PalletParachainStakingCollatorStatus: PalletParachainStakingCollatorStatus; | ||
PalletParachainStakingDelayedPayout: PalletParachainStakingDelayedPayout; | ||
PalletParachainStakingDelegationRequestsCancelledScheduledRequest: PalletParachainStakingDelegationRequestsCancelledScheduledRequest; | ||
PalletParachainStakingDelegationRequestsDelegationAction: PalletParachainStakingDelegationRequestsDelegationAction; | ||
PalletParachainStakingDelegationRequestsScheduledRequest: PalletParachainStakingDelegationRequestsScheduledRequest; | ||
PalletParachainStakingDelegations: PalletParachainStakingDelegations; | ||
PalletParachainStakingDelegator: PalletParachainStakingDelegator; | ||
PalletParachainStakingDelegatorAdded: PalletParachainStakingDelegatorAdded; | ||
PalletParachainStakingDelegatorStatus: PalletParachainStakingDelegatorStatus; | ||
PalletParachainStakingError: PalletParachainStakingError; | ||
PalletParachainStakingEvent: PalletParachainStakingEvent; | ||
PalletParachainStakingInflationInflationInfo: PalletParachainStakingInflationInflationInfo; | ||
PalletParachainStakingParachainBondConfig: PalletParachainStakingParachainBondConfig; | ||
PalletParachainStakingRoundInfo: PalletParachainStakingRoundInfo; | ||
PalletParachainStakingSetOrderedSet: PalletParachainStakingSetOrderedSet; | ||
PalletProxyAnnouncement: PalletProxyAnnouncement; | ||
@@ -170,2 +190,10 @@ PalletProxyCall: PalletProxyCall; | ||
PalletProxyProxyDefinition: PalletProxyProxyDefinition; | ||
PalletRandomnessCall: PalletRandomnessCall; | ||
PalletRandomnessError: PalletRandomnessError; | ||
PalletRandomnessEvent: PalletRandomnessEvent; | ||
PalletRandomnessRandomnessResult: PalletRandomnessRandomnessResult; | ||
PalletRandomnessRequest: PalletRandomnessRequest; | ||
PalletRandomnessRequestInfo: PalletRandomnessRequestInfo; | ||
PalletRandomnessRequestState: PalletRandomnessRequestState; | ||
PalletRandomnessRequestType: PalletRandomnessRequestType; | ||
PalletSchedulerCall: PalletSchedulerCall; | ||
@@ -177,2 +205,3 @@ PalletSchedulerError: PalletSchedulerError; | ||
PalletTransactionPaymentChargeTransactionPayment: PalletTransactionPaymentChargeTransactionPayment; | ||
PalletTransactionPaymentEvent: PalletTransactionPaymentEvent; | ||
PalletTransactionPaymentReleases: PalletTransactionPaymentReleases; | ||
@@ -191,28 +220,10 @@ PalletTreasuryCall: PalletTreasuryCall; | ||
PalletXcmQueryStatus: PalletXcmQueryStatus; | ||
PalletXcmTransactorCall: PalletXcmTransactorCall; | ||
PalletXcmTransactorCurrency: PalletXcmTransactorCurrency; | ||
PalletXcmTransactorCurrencyPayment: PalletXcmTransactorCurrencyPayment; | ||
PalletXcmTransactorError: PalletXcmTransactorError; | ||
PalletXcmTransactorEvent: PalletXcmTransactorEvent; | ||
PalletXcmTransactorRemoteTransactInfoWithMaxWeight: PalletXcmTransactorRemoteTransactInfoWithMaxWeight; | ||
PalletXcmTransactorTransactWeights: PalletXcmTransactorTransactWeights; | ||
PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage; | ||
ParachainStakingBond: ParachainStakingBond; | ||
ParachainStakingCall: ParachainStakingCall; | ||
ParachainStakingCandidateBondLessRequest: ParachainStakingCandidateBondLessRequest; | ||
ParachainStakingCandidateMetadata: ParachainStakingCandidateMetadata; | ||
ParachainStakingCapacityStatus: ParachainStakingCapacityStatus; | ||
ParachainStakingCollator2: ParachainStakingCollator2; | ||
ParachainStakingCollatorCandidate: ParachainStakingCollatorCandidate; | ||
ParachainStakingCollatorSnapshot: ParachainStakingCollatorSnapshot; | ||
ParachainStakingCollatorStatus: ParachainStakingCollatorStatus; | ||
ParachainStakingDelayedPayout: ParachainStakingDelayedPayout; | ||
ParachainStakingDelegationRequestsCancelledScheduledRequest: ParachainStakingDelegationRequestsCancelledScheduledRequest; | ||
ParachainStakingDelegationRequestsDelegationAction: ParachainStakingDelegationRequestsDelegationAction; | ||
ParachainStakingDelegationRequestsScheduledRequest: ParachainStakingDelegationRequestsScheduledRequest; | ||
ParachainStakingDelegations: ParachainStakingDelegations; | ||
ParachainStakingDelegator: ParachainStakingDelegator; | ||
ParachainStakingDelegatorAdded: ParachainStakingDelegatorAdded; | ||
ParachainStakingDelegatorStatus: ParachainStakingDelegatorStatus; | ||
ParachainStakingError: ParachainStakingError; | ||
ParachainStakingEvent: ParachainStakingEvent; | ||
ParachainStakingInflationInflationInfo: ParachainStakingInflationInflationInfo; | ||
ParachainStakingNominator2: ParachainStakingNominator2; | ||
ParachainStakingParachainBondConfig: ParachainStakingParachainBondConfig; | ||
ParachainStakingRoundInfo: ParachainStakingRoundInfo; | ||
ParachainStakingSetOrderedSetAccountId20: ParachainStakingSetOrderedSetAccountId20; | ||
ParachainStakingSetOrderedSetBond: ParachainStakingSetOrderedSetBond; | ||
PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage; | ||
@@ -243,6 +254,2 @@ PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage; | ||
XcmDoubleEncoded: XcmDoubleEncoded; | ||
XcmTransactorCall: XcmTransactorCall; | ||
XcmTransactorError: XcmTransactorError; | ||
XcmTransactorEvent: XcmTransactorEvent; | ||
XcmTransactorRemoteTransactInfoWithMaxWeight: XcmTransactorRemoteTransactInfoWithMaxWeight; | ||
XcmV0Junction: XcmV0Junction; | ||
@@ -249,0 +256,0 @@ XcmV0JunctionBodyId: XcmV0JunctionBodyId; |
@@ -223,2 +223,22 @@ import type { ApiTypes } from "@polkadot/api-base/types"; | ||
}; | ||
moonbeamOrbiters: { | ||
/** | ||
* Maximum number of orbiters per collator. | ||
*/ | ||
maxPoolSize: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Maximum number of round to keep on storage. | ||
*/ | ||
maxRoundArchive: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Number of rounds before changing the selected orbiter. WARNING: when | ||
* changing `RotatePeriod`, you need a migration code that sets | ||
* `ForceRotation` to true to avoid holes in `OrbiterPerRound`. | ||
*/ | ||
rotatePeriod: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Generic const | ||
*/ | ||
[key: string]: Codec; | ||
}; | ||
parachainStaking: { | ||
@@ -225,0 +245,0 @@ /** |
@@ -415,2 +415,6 @@ import type { ApiTypes } from "@polkadot/api-base/types"; | ||
/** | ||
* Voting period too low | ||
*/ | ||
VotingPeriodLow: AugmentedError<ApiType>; | ||
/** | ||
* Invalid upper bound. | ||
@@ -1008,2 +1012,7 @@ */ | ||
/** | ||
* The spend origin is valid but the amount it is allowed to spend is | ||
* lower than the amount to be spent. | ||
*/ | ||
InsufficientPermission: AugmentedError<ApiType>; | ||
/** | ||
* Proposer's balance is too low. | ||
@@ -1029,2 +1038,48 @@ */ | ||
}; | ||
treasuryCouncilCollective: { | ||
/** | ||
* Members are already initialized! | ||
*/ | ||
AlreadyInitialized: AugmentedError<ApiType>; | ||
/** | ||
* Duplicate proposals not allowed | ||
*/ | ||
DuplicateProposal: AugmentedError<ApiType>; | ||
/** | ||
* Duplicate vote ignored | ||
*/ | ||
DuplicateVote: AugmentedError<ApiType>; | ||
/** | ||
* Account is not a member | ||
*/ | ||
NotMember: AugmentedError<ApiType>; | ||
/** | ||
* Proposal must exist | ||
*/ | ||
ProposalMissing: AugmentedError<ApiType>; | ||
/** | ||
* The close call was made too early, before the end of the voting. | ||
*/ | ||
TooEarly: AugmentedError<ApiType>; | ||
/** | ||
* There can only be a maximum of `MaxProposals` active proposals. | ||
*/ | ||
TooManyProposals: AugmentedError<ApiType>; | ||
/** | ||
* Mismatched index | ||
*/ | ||
WrongIndex: AugmentedError<ApiType>; | ||
/** | ||
* The given length bound for the proposal was too low. | ||
*/ | ||
WrongProposalLength: AugmentedError<ApiType>; | ||
/** | ||
* The given weight bound for the proposal was too low. | ||
*/ | ||
WrongProposalWeight: AugmentedError<ApiType>; | ||
/** | ||
* Generic error | ||
*/ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
utility: { | ||
@@ -1031,0 +1086,0 @@ /** |
@@ -1,2 +0,2 @@ | ||
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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonbaseRuntimeAssetConfigAssetRegistrarMetadata, MoonbaseRuntimeOriginCaller, MoonbaseRuntimeProxyType, MoonbaseRuntimeRuntime, MoonbaseRuntimeXcmConfigAssetType, MoonbaseRuntimeXcmConfigCurrencyId, MoonbaseRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsCall, PalletAssetsDestroyWitness, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletBaseFeeCall, PalletBaseFeeEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyReleases, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEthereumXcmCall, PalletEthereumXcmRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingBond, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollator2, PalletParachainStakingCollatorCandidate, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingNominator2, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSetAccountId20, PalletParachainStakingSetOrderedSetBond, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduledV3, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmTransactorCall, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, XcmDoubleEncoded, XcmPrimitivesEthereumXcmEthereumXcmFee, XcmPrimitivesEthereumXcmEthereumXcmTransaction, XcmPrimitivesEthereumXcmEthereumXcmTransactionV1, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonbaseRuntimeAssetConfigAssetRegistrarMetadata, MoonbaseRuntimeOriginCaller, MoonbaseRuntimeProxyType, MoonbaseRuntimeRuntime, MoonbaseRuntimeXcmConfigAssetType, MoonbaseRuntimeXcmConfigCurrencyId, MoonbaseRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsCall, PalletAssetsDestroyWitness, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletBaseFeeCall, PalletBaseFeeEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyReleases, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEthereumXcmCall, PalletEthereumXcmRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingBond, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduledV3, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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"; | ||
declare module "@polkadot/types/types/registry" { | ||
@@ -170,4 +170,2 @@ interface InterfaceTypes { | ||
PalletParachainStakingCapacityStatus: PalletParachainStakingCapacityStatus; | ||
PalletParachainStakingCollator2: PalletParachainStakingCollator2; | ||
PalletParachainStakingCollatorCandidate: PalletParachainStakingCollatorCandidate; | ||
PalletParachainStakingCollatorSnapshot: PalletParachainStakingCollatorSnapshot; | ||
@@ -186,7 +184,5 @@ PalletParachainStakingCollatorStatus: PalletParachainStakingCollatorStatus; | ||
PalletParachainStakingInflationInflationInfo: PalletParachainStakingInflationInflationInfo; | ||
PalletParachainStakingNominator2: PalletParachainStakingNominator2; | ||
PalletParachainStakingParachainBondConfig: PalletParachainStakingParachainBondConfig; | ||
PalletParachainStakingRoundInfo: PalletParachainStakingRoundInfo; | ||
PalletParachainStakingSetOrderedSetAccountId20: PalletParachainStakingSetOrderedSetAccountId20; | ||
PalletParachainStakingSetOrderedSetBond: PalletParachainStakingSetOrderedSetBond; | ||
PalletParachainStakingSetOrderedSet: PalletParachainStakingSetOrderedSet; | ||
PalletProxyAnnouncement: PalletProxyAnnouncement; | ||
@@ -214,2 +210,3 @@ PalletProxyCall: PalletProxyCall; | ||
PalletTransactionPaymentChargeTransactionPayment: PalletTransactionPaymentChargeTransactionPayment; | ||
PalletTransactionPaymentEvent: PalletTransactionPaymentEvent; | ||
PalletTransactionPaymentReleases: PalletTransactionPaymentReleases; | ||
@@ -229,5 +226,8 @@ PalletTreasuryCall: PalletTreasuryCall; | ||
PalletXcmTransactorCall: PalletXcmTransactorCall; | ||
PalletXcmTransactorCurrency: PalletXcmTransactorCurrency; | ||
PalletXcmTransactorCurrencyPayment: PalletXcmTransactorCurrencyPayment; | ||
PalletXcmTransactorError: PalletXcmTransactorError; | ||
PalletXcmTransactorEvent: PalletXcmTransactorEvent; | ||
PalletXcmTransactorRemoteTransactInfoWithMaxWeight: PalletXcmTransactorRemoteTransactInfoWithMaxWeight; | ||
PalletXcmTransactorTransactWeights: PalletXcmTransactorTransactWeights; | ||
PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage; | ||
@@ -262,2 +262,3 @@ PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage; | ||
XcmPrimitivesEthereumXcmEthereumXcmTransactionV1: XcmPrimitivesEthereumXcmEthereumXcmTransactionV1; | ||
XcmPrimitivesEthereumXcmEthereumXcmTransactionV2: XcmPrimitivesEthereumXcmEthereumXcmTransactionV2; | ||
XcmPrimitivesEthereumXcmManualEthereumXcmFee: XcmPrimitivesEthereumXcmManualEthereumXcmFee; | ||
@@ -264,0 +265,0 @@ XcmV0Junction: XcmV0Junction; |
import type { ApiTypes } from "@polkadot/api-base/types"; | ||
import type { Bytes, Option, Vec, bool, u128, u16, u32, u64, u8 } from "@polkadot/types-codec"; | ||
import type { Bytes, Option, bool, u128, u16, u32, u64, u8 } from "@polkadot/types-codec"; | ||
import type { Codec } from "@polkadot/types-codec/types"; | ||
import type { Perbill, Percent, Permill } from "@polkadot/types/interfaces/runtime"; | ||
import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from "@polkadot/types/lookup"; | ||
import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from "@polkadot/types/lookup"; | ||
declare module "@polkadot/api-base/types/consts" { | ||
@@ -223,2 +223,22 @@ interface AugmentedConsts<ApiType extends ApiTypes> { | ||
}; | ||
moonbeamOrbiters: { | ||
/** | ||
* Maximum number of orbiters per collator. | ||
*/ | ||
maxPoolSize: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Maximum number of round to keep on storage. | ||
*/ | ||
maxRoundArchive: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Number of rounds before changing the selected orbiter. WARNING: when | ||
* changing `RotatePeriod`, you need a migration code that sets | ||
* `ForceRotation` to true to avoid holes in `OrbiterPerRound`. | ||
*/ | ||
rotatePeriod: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Generic const | ||
*/ | ||
[key: string]: Codec; | ||
}; | ||
parachainStaking: { | ||
@@ -350,2 +370,35 @@ /** | ||
}; | ||
randomness: { | ||
/** | ||
* Local requests expire and can be purged from storage after this many | ||
* blocks/epochs | ||
*/ | ||
blockExpirationDelay: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* The amount that should be taken as a security deposit when requesting randomness. | ||
*/ | ||
deposit: u128 & AugmentedConst<ApiType>; | ||
/** | ||
* Babe requests expire and can be purged from storage after this many blocks/epochs | ||
*/ | ||
epochExpirationDelay: u64 & AugmentedConst<ApiType>; | ||
/** | ||
* Local per-block VRF requests must be at most this many blocks after the | ||
* block in which they were requested | ||
*/ | ||
maxBlockDelay: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Maximum number of random words that can be requested per request | ||
*/ | ||
maxRandomWords: u8 & AugmentedConst<ApiType>; | ||
/** | ||
* Local per-block VRF requests must be at least this many blocks after | ||
* the block in which they were requested | ||
*/ | ||
minBlockDelay: u32 & AugmentedConst<ApiType>; | ||
/** | ||
* Generic const | ||
*/ | ||
[key: string]: Codec; | ||
}; | ||
scheduler: { | ||
@@ -418,6 +471,2 @@ /** | ||
/** | ||
* The polynomial that is applied in order to derive fee from length. | ||
*/ | ||
lengthToFee: Vec<FrameSupportWeightsWeightToFeeCoefficient> & AugmentedConst<ApiType>; | ||
/** | ||
* A fee mulitplier for `Operational` extrinsics to compute "virtual tip" | ||
@@ -448,6 +497,2 @@ * to boost their `priority` | ||
/** | ||
* The polynomial that is applied in order to derive fee from weight. | ||
*/ | ||
weightToFee: Vec<FrameSupportWeightsWeightToFeeCoefficient> & AugmentedConst<ApiType>; | ||
/** | ||
* Generic const | ||
@@ -454,0 +499,0 @@ */ |
@@ -415,2 +415,6 @@ import type { ApiTypes } from "@polkadot/api-base/types"; | ||
/** | ||
* Voting period too low | ||
*/ | ||
VotingPeriodLow: AugmentedError<ApiType>; | ||
/** | ||
* Invalid upper bound. | ||
@@ -462,2 +466,10 @@ */ | ||
/** | ||
* Gas limit is too high. | ||
*/ | ||
GasLimitTooHigh: AugmentedError<ApiType>; | ||
/** | ||
* Gas limit is too low. | ||
*/ | ||
GasLimitTooLow: AugmentedError<ApiType>; | ||
/** | ||
* Gas price is too low. | ||
@@ -471,6 +483,2 @@ */ | ||
/** | ||
* Maximum address count exceeded | ||
*/ | ||
MaxAddressCountExceeded: AugmentedError<ApiType>; | ||
/** | ||
* Calculating total payment overflowed | ||
@@ -480,2 +488,6 @@ */ | ||
/** | ||
* Undefined error. | ||
*/ | ||
Undefined: AugmentedError<ApiType>; | ||
/** | ||
* Withdraw fee failed | ||
@@ -871,2 +883,20 @@ */ | ||
}; | ||
randomness: { | ||
CannotRequestMoreWordsThanMax: AugmentedError<ApiType>; | ||
CannotRequestRandomnessAfterMaxDelay: AugmentedError<ApiType>; | ||
CannotRequestRandomnessBeforeMinDelay: AugmentedError<ApiType>; | ||
MustRequestAtLeastOneWord: AugmentedError<ApiType>; | ||
OnlyRequesterCanIncreaseFee: AugmentedError<ApiType>; | ||
RandomnessResultDNE: AugmentedError<ApiType>; | ||
RandomnessResultNotFilled: AugmentedError<ApiType>; | ||
RequestCannotYetBeFulfilled: AugmentedError<ApiType>; | ||
RequestCounterOverflowed: AugmentedError<ApiType>; | ||
RequestDNE: AugmentedError<ApiType>; | ||
RequestFeeOverflowed: AugmentedError<ApiType>; | ||
RequestHasNotExpired: AugmentedError<ApiType>; | ||
/** | ||
* Generic error | ||
*/ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
scheduler: { | ||
@@ -976,2 +1006,7 @@ /** | ||
/** | ||
* The spend origin is valid but the amount it is allowed to spend is | ||
* lower than the amount to be spent. | ||
*/ | ||
InsufficientPermission: AugmentedError<ApiType>; | ||
/** | ||
* Proposer's balance is too low. | ||
@@ -985,2 +1020,6 @@ */ | ||
/** | ||
* Proposal has not been approved. | ||
*/ | ||
ProposalNotApproved: AugmentedError<ApiType>; | ||
/** | ||
* Too many approvals in the queue. | ||
@@ -994,2 +1033,48 @@ */ | ||
}; | ||
treasuryCouncilCollective: { | ||
/** | ||
* Members are already initialized! | ||
*/ | ||
AlreadyInitialized: AugmentedError<ApiType>; | ||
/** | ||
* Duplicate proposals not allowed | ||
*/ | ||
DuplicateProposal: AugmentedError<ApiType>; | ||
/** | ||
* Duplicate vote ignored | ||
*/ | ||
DuplicateVote: AugmentedError<ApiType>; | ||
/** | ||
* Account is not a member | ||
*/ | ||
NotMember: AugmentedError<ApiType>; | ||
/** | ||
* Proposal must exist | ||
*/ | ||
ProposalMissing: AugmentedError<ApiType>; | ||
/** | ||
* The close call was made too early, before the end of the voting. | ||
*/ | ||
TooEarly: AugmentedError<ApiType>; | ||
/** | ||
* There can only be a maximum of `MaxProposals` active proposals. | ||
*/ | ||
TooManyProposals: AugmentedError<ApiType>; | ||
/** | ||
* Mismatched index | ||
*/ | ||
WrongIndex: AugmentedError<ApiType>; | ||
/** | ||
* The given length bound for the proposal was too low. | ||
*/ | ||
WrongProposalLength: AugmentedError<ApiType>; | ||
/** | ||
* The given weight bound for the proposal was too low. | ||
*/ | ||
WrongProposalWeight: AugmentedError<ApiType>; | ||
/** | ||
* Generic error | ||
*/ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
utility: { | ||
@@ -1102,2 +1187,6 @@ /** | ||
/** | ||
* MinXcmFee not registered for certain reserve location | ||
*/ | ||
MinXcmFeeNotDefined: AugmentedError<ApiType>; | ||
/** | ||
* Not cross-chain transfer. | ||
@@ -1104,0 +1193,0 @@ */ |
@@ -1,2 +0,2 @@ | ||
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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonriverRuntimeAssetConfigAssetRegistrarMetadata, MoonriverRuntimeOriginCaller, MoonriverRuntimeProxyType, MoonriverRuntimeRuntime, MoonriverRuntimeXcmConfigAssetType, MoonriverRuntimeXcmConfigCurrencyId, MoonriverRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsCall, PalletAssetsDestroyWitness, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletBaseFeeCall, PalletBaseFeeEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyReleases, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduledV3, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmVersionMigrationStage, ParachainStakingBond, ParachainStakingCall, ParachainStakingCandidateBondLessRequest, ParachainStakingCandidateMetadata, ParachainStakingCapacityStatus, ParachainStakingCollator2, ParachainStakingCollatorCandidate, ParachainStakingCollatorSnapshot, ParachainStakingCollatorStatus, ParachainStakingDelayedPayout, ParachainStakingDelegationRequestsCancelledScheduledRequest, ParachainStakingDelegationRequestsDelegationAction, ParachainStakingDelegationRequestsScheduledRequest, ParachainStakingDelegations, ParachainStakingDelegator, ParachainStakingDelegatorAdded, ParachainStakingDelegatorStatus, ParachainStakingError, ParachainStakingEvent, ParachainStakingInflationInflationInfo, ParachainStakingNominator2, ParachainStakingParachainBondConfig, ParachainStakingRoundInfo, ParachainStakingSetOrderedSetAccountId20, ParachainStakingSetOrderedSetBond, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, XcmDoubleEncoded, XcmTransactorCall, XcmTransactorError, XcmTransactorEvent, XcmTransactorRemoteTransactInfoWithMaxWeight, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, MoonriverRuntimeAssetConfigAssetRegistrarMetadata, MoonriverRuntimeOriginCaller, MoonriverRuntimeProxyType, MoonriverRuntimeRuntime, MoonriverRuntimeXcmConfigAssetType, MoonriverRuntimeXcmConfigCurrencyId, MoonriverRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsCall, PalletAssetsDestroyWitness, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletBaseFeeCall, PalletBaseFeeEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCrowdloanRewardsCall, PalletCrowdloanRewardsError, PalletCrowdloanRewardsEvent, PalletCrowdloanRewardsRewardInfo, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyPreimageStatus, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyReleases, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEvmCall, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletParachainStakingBond, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletRandomnessCall, PalletRandomnessError, PalletRandomnessEvent, PalletRandomnessRandomnessResult, PalletRandomnessRequest, PalletRandomnessRequestInfo, PalletRandomnessRequestState, PalletRandomnessRequestType, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduledV3, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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"; | ||
declare module "@polkadot/types/types/registry" { | ||
@@ -57,3 +57,2 @@ interface InterfaceTypes { | ||
FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight; | ||
FrameSupportWeightsWeightToFeeCoefficient: FrameSupportWeightsWeightToFeeCoefficient; | ||
FrameSystemAccountInfo: FrameSystemAccountInfo; | ||
@@ -164,2 +163,23 @@ FrameSystemCall: FrameSystemCall; | ||
PalletMoonbeamOrbitersEvent: PalletMoonbeamOrbitersEvent; | ||
PalletParachainStakingBond: PalletParachainStakingBond; | ||
PalletParachainStakingCall: PalletParachainStakingCall; | ||
PalletParachainStakingCandidateBondLessRequest: PalletParachainStakingCandidateBondLessRequest; | ||
PalletParachainStakingCandidateMetadata: PalletParachainStakingCandidateMetadata; | ||
PalletParachainStakingCapacityStatus: PalletParachainStakingCapacityStatus; | ||
PalletParachainStakingCollatorSnapshot: PalletParachainStakingCollatorSnapshot; | ||
PalletParachainStakingCollatorStatus: PalletParachainStakingCollatorStatus; | ||
PalletParachainStakingDelayedPayout: PalletParachainStakingDelayedPayout; | ||
PalletParachainStakingDelegationRequestsCancelledScheduledRequest: PalletParachainStakingDelegationRequestsCancelledScheduledRequest; | ||
PalletParachainStakingDelegationRequestsDelegationAction: PalletParachainStakingDelegationRequestsDelegationAction; | ||
PalletParachainStakingDelegationRequestsScheduledRequest: PalletParachainStakingDelegationRequestsScheduledRequest; | ||
PalletParachainStakingDelegations: PalletParachainStakingDelegations; | ||
PalletParachainStakingDelegator: PalletParachainStakingDelegator; | ||
PalletParachainStakingDelegatorAdded: PalletParachainStakingDelegatorAdded; | ||
PalletParachainStakingDelegatorStatus: PalletParachainStakingDelegatorStatus; | ||
PalletParachainStakingError: PalletParachainStakingError; | ||
PalletParachainStakingEvent: PalletParachainStakingEvent; | ||
PalletParachainStakingInflationInflationInfo: PalletParachainStakingInflationInflationInfo; | ||
PalletParachainStakingParachainBondConfig: PalletParachainStakingParachainBondConfig; | ||
PalletParachainStakingRoundInfo: PalletParachainStakingRoundInfo; | ||
PalletParachainStakingSetOrderedSet: PalletParachainStakingSetOrderedSet; | ||
PalletProxyAnnouncement: PalletProxyAnnouncement; | ||
@@ -170,2 +190,10 @@ PalletProxyCall: PalletProxyCall; | ||
PalletProxyProxyDefinition: PalletProxyProxyDefinition; | ||
PalletRandomnessCall: PalletRandomnessCall; | ||
PalletRandomnessError: PalletRandomnessError; | ||
PalletRandomnessEvent: PalletRandomnessEvent; | ||
PalletRandomnessRandomnessResult: PalletRandomnessRandomnessResult; | ||
PalletRandomnessRequest: PalletRandomnessRequest; | ||
PalletRandomnessRequestInfo: PalletRandomnessRequestInfo; | ||
PalletRandomnessRequestState: PalletRandomnessRequestState; | ||
PalletRandomnessRequestType: PalletRandomnessRequestType; | ||
PalletSchedulerCall: PalletSchedulerCall; | ||
@@ -177,2 +205,3 @@ PalletSchedulerError: PalletSchedulerError; | ||
PalletTransactionPaymentChargeTransactionPayment: PalletTransactionPaymentChargeTransactionPayment; | ||
PalletTransactionPaymentEvent: PalletTransactionPaymentEvent; | ||
PalletTransactionPaymentReleases: PalletTransactionPaymentReleases; | ||
@@ -191,28 +220,10 @@ PalletTreasuryCall: PalletTreasuryCall; | ||
PalletXcmQueryStatus: PalletXcmQueryStatus; | ||
PalletXcmTransactorCall: PalletXcmTransactorCall; | ||
PalletXcmTransactorCurrency: PalletXcmTransactorCurrency; | ||
PalletXcmTransactorCurrencyPayment: PalletXcmTransactorCurrencyPayment; | ||
PalletXcmTransactorError: PalletXcmTransactorError; | ||
PalletXcmTransactorEvent: PalletXcmTransactorEvent; | ||
PalletXcmTransactorRemoteTransactInfoWithMaxWeight: PalletXcmTransactorRemoteTransactInfoWithMaxWeight; | ||
PalletXcmTransactorTransactWeights: PalletXcmTransactorTransactWeights; | ||
PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage; | ||
ParachainStakingBond: ParachainStakingBond; | ||
ParachainStakingCall: ParachainStakingCall; | ||
ParachainStakingCandidateBondLessRequest: ParachainStakingCandidateBondLessRequest; | ||
ParachainStakingCandidateMetadata: ParachainStakingCandidateMetadata; | ||
ParachainStakingCapacityStatus: ParachainStakingCapacityStatus; | ||
ParachainStakingCollator2: ParachainStakingCollator2; | ||
ParachainStakingCollatorCandidate: ParachainStakingCollatorCandidate; | ||
ParachainStakingCollatorSnapshot: ParachainStakingCollatorSnapshot; | ||
ParachainStakingCollatorStatus: ParachainStakingCollatorStatus; | ||
ParachainStakingDelayedPayout: ParachainStakingDelayedPayout; | ||
ParachainStakingDelegationRequestsCancelledScheduledRequest: ParachainStakingDelegationRequestsCancelledScheduledRequest; | ||
ParachainStakingDelegationRequestsDelegationAction: ParachainStakingDelegationRequestsDelegationAction; | ||
ParachainStakingDelegationRequestsScheduledRequest: ParachainStakingDelegationRequestsScheduledRequest; | ||
ParachainStakingDelegations: ParachainStakingDelegations; | ||
ParachainStakingDelegator: ParachainStakingDelegator; | ||
ParachainStakingDelegatorAdded: ParachainStakingDelegatorAdded; | ||
ParachainStakingDelegatorStatus: ParachainStakingDelegatorStatus; | ||
ParachainStakingError: ParachainStakingError; | ||
ParachainStakingEvent: ParachainStakingEvent; | ||
ParachainStakingInflationInflationInfo: ParachainStakingInflationInflationInfo; | ||
ParachainStakingNominator2: ParachainStakingNominator2; | ||
ParachainStakingParachainBondConfig: ParachainStakingParachainBondConfig; | ||
ParachainStakingRoundInfo: ParachainStakingRoundInfo; | ||
ParachainStakingSetOrderedSetAccountId20: ParachainStakingSetOrderedSetAccountId20; | ||
ParachainStakingSetOrderedSetBond: ParachainStakingSetOrderedSetBond; | ||
PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage; | ||
@@ -243,6 +254,2 @@ PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage; | ||
XcmDoubleEncoded: XcmDoubleEncoded; | ||
XcmTransactorCall: XcmTransactorCall; | ||
XcmTransactorError: XcmTransactorError; | ||
XcmTransactorEvent: XcmTransactorEvent; | ||
XcmTransactorRemoteTransactInfoWithMaxWeight: XcmTransactorRemoteTransactInfoWithMaxWeight; | ||
XcmV0Junction: XcmV0Junction; | ||
@@ -249,0 +256,0 @@ XcmV0JunctionBodyId: XcmV0JunctionBodyId; |
{ | ||
"name": "@moonbeam-network/api-augment", | ||
"version": "0.1700.0", | ||
"version": "0.1801.0", | ||
"private": false, | ||
@@ -68,3 +68,3 @@ "description": "Moonbeam types augment for @polkadot/api", | ||
"devDependencies": { | ||
"@polkadot/api": "^8.10.1", | ||
"@polkadot/api": "^9.4.2", | ||
"@polkadot/typegen": "^8.10.1", | ||
@@ -71,0 +71,0 @@ "prettier": "^2.7.1", |
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
3161364
82616