@moonbeam-network/api-augment
Advanced tools
Comparing version 0.2800.0 to 0.2801.0
@@ -82,8 +82,2 @@ import "@polkadot/api-base/types/consts"; | ||
}; | ||
councilCollective: { | ||
/** The maximum weight of a dispatch call that can be proposed and executed. */ | ||
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
crowdloanRewards: { | ||
@@ -180,24 +174,2 @@ /** Percentage to be payed at initialization */ | ||
}; | ||
localAssets: { | ||
/** The amount of funds that must be reserved when creating a new approval. */ | ||
approvalDeposit: u128 & AugmentedConst<ApiType>; | ||
/** The amount of funds that must be reserved for a non-provider asset account to be maintained. */ | ||
assetAccountDeposit: u128 & AugmentedConst<ApiType>; | ||
/** The basic amount of funds that must be reserved for an asset. */ | ||
assetDeposit: u128 & AugmentedConst<ApiType>; | ||
/** The basic amount of funds that must be reserved when adding metadata to your asset. */ | ||
metadataDepositBase: u128 & AugmentedConst<ApiType>; | ||
/** The additional funds that must be reserved for the number of bytes you store in your metadata. */ | ||
metadataDepositPerByte: u128 & AugmentedConst<ApiType>; | ||
/** | ||
* Max number of items to destroy per `destroy_accounts` and `destroy_approvals` call. | ||
* | ||
* Must be configured to result in a weight that makes each call fit in a block. | ||
*/ | ||
removeItemsLimit: u32 & AugmentedConst<ApiType>; | ||
/** The maximum length of a name or symbol stored on-chain. */ | ||
stringLimit: u32 & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
moonbeamOrbiters: { | ||
@@ -244,2 +216,4 @@ /** Maximum number of orbiters per collator. */ | ||
parachainStaking: { | ||
/** Get the average time beetween 2 blocks in milliseconds */ | ||
blockTime: u64 & AugmentedConst<ApiType>; | ||
/** Number of rounds candidate requests to decrease self-bond must wait to be executable */ | ||
@@ -278,2 +252,4 @@ candidateBondLessDelay: u32 & AugmentedConst<ApiType>; | ||
rewardPaymentDelay: u32 & AugmentedConst<ApiType>; | ||
/** Get the slot duration in milliseconds */ | ||
slotDuration: u64 & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
@@ -398,8 +374,2 @@ [key: string]: Codec; | ||
}; | ||
techCommitteeCollective: { | ||
/** The maximum weight of a dispatch call that can be proposed and executed. */ | ||
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
timestamp: { | ||
@@ -406,0 +376,0 @@ /** |
@@ -154,28 +154,2 @@ import "@polkadot/api-base/types/errors"; | ||
}; | ||
councilCollective: { | ||
/** 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>; | ||
/** Prime account is not a member */ | ||
PrimeAccountNotMember: 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>; | ||
}; | ||
crowdloanRewards: { | ||
@@ -326,2 +300,4 @@ /** | ||
InvalidSignature: AugmentedError<ApiType>; | ||
/** Invalid Transaction */ | ||
InvalidTransaction: AugmentedError<ApiType>; | ||
/** Calculating total payment overflowed */ | ||
@@ -380,53 +356,2 @@ PaymentOverflow: AugmentedError<ApiType>; | ||
}; | ||
localAssets: { | ||
/** The asset-account already exists. */ | ||
AlreadyExists: AugmentedError<ApiType>; | ||
/** The asset is not live, and likely being destroyed. */ | ||
AssetNotLive: AugmentedError<ApiType>; | ||
/** Invalid metadata given. */ | ||
BadMetadata: AugmentedError<ApiType>; | ||
/** Invalid witness data given. */ | ||
BadWitness: AugmentedError<ApiType>; | ||
/** Account balance must be greater than or equal to the transfer amount. */ | ||
BalanceLow: AugmentedError<ApiType>; | ||
/** Callback action resulted in error */ | ||
CallbackFailed: AugmentedError<ApiType>; | ||
/** The origin account is frozen. */ | ||
Frozen: AugmentedError<ApiType>; | ||
/** The asset status is not the expected status. */ | ||
IncorrectStatus: AugmentedError<ApiType>; | ||
/** The asset ID is already taken. */ | ||
InUse: AugmentedError<ApiType>; | ||
/** | ||
* The asset is a live asset and is actively being used. Usually emit for operations such as | ||
* `start_destroy` which require the asset to be in a destroying state. | ||
*/ | ||
LiveAsset: AugmentedError<ApiType>; | ||
/** Minimum balance should be non-zero. */ | ||
MinBalanceZero: AugmentedError<ApiType>; | ||
/** The account to alter does not exist. */ | ||
NoAccount: AugmentedError<ApiType>; | ||
/** The asset-account doesn't have an associated deposit. */ | ||
NoDeposit: AugmentedError<ApiType>; | ||
/** The signing account has no permission to do the operation. */ | ||
NoPermission: AugmentedError<ApiType>; | ||
/** The asset should be frozen before the given operation. */ | ||
NotFrozen: AugmentedError<ApiType>; | ||
/** No approval exists that would allow the transfer. */ | ||
Unapproved: AugmentedError<ApiType>; | ||
/** | ||
* Unable to increment the consumer reference counters on the account. Either no provider | ||
* reference exists to allow a non-zero balance of a non-self-sufficient asset, or one fewer | ||
* then the maximum number of consumers has been reached. | ||
*/ | ||
UnavailableConsumer: AugmentedError<ApiType>; | ||
/** The given asset ID is unknown. */ | ||
Unknown: AugmentedError<ApiType>; | ||
/** The operation would result in funds being burned. */ | ||
WouldBurn: AugmentedError<ApiType>; | ||
/** The source account would not survive the transfer and it needs to stay alive. */ | ||
WouldDie: AugmentedError<ApiType>; | ||
/** Generic error */ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
maintenanceMode: { | ||
@@ -452,2 +377,18 @@ /** The chain cannot enter maintenance mode because it is already in maintenance mode */ | ||
}; | ||
moonbeamLazyMigrations: { | ||
/** There must be at least one address */ | ||
AddressesLengthCannotBeZero: AugmentedError<ApiType>; | ||
/** There are no more VotingOf entries to be removed and democracy funds to be unlocked */ | ||
AllDemocracyFundsUnlocked: AugmentedError<ApiType>; | ||
/** There are no more storage entries to be removed */ | ||
AllStorageEntriesHaveBeenRemoved: AugmentedError<ApiType>; | ||
/** The contract is not corrupted (Still exist or properly suicided) */ | ||
ContractNotCorrupted: AugmentedError<ApiType>; | ||
/** The limit cannot be zero */ | ||
LimitCannotBeZero: AugmentedError<ApiType>; | ||
/** The limit for unlocking funds is too high */ | ||
UnlockLimitTooHigh: AugmentedError<ApiType>; | ||
/** Generic error */ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
moonbeamOrbiters: { | ||
@@ -785,28 +726,2 @@ /** The collator is already added in orbiters program. */ | ||
}; | ||
techCommitteeCollective: { | ||
/** 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>; | ||
/** Prime account is not a member */ | ||
PrimeAccountNotMember: 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>; | ||
}; | ||
treasury: { | ||
@@ -813,0 +728,0 @@ /** The payment has already been attempted. */ |
import "@polkadot/types/types/registry"; | ||
import type { AccountEthereumSignature, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity, CumulusPalletParachainSystemUnincludedSegmentAncestor, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate, CumulusPalletParachainSystemUnincludedSegmentSegmentTracker, CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth, 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, MoonbeamRuntimeAssetConfigAssetRegistrarMetadata, MoonbeamRuntimeGovernanceOriginsCustomOriginsOrigin, MoonbeamRuntimeOriginCaller, MoonbeamRuntimeProxyType, MoonbeamRuntimeRuntime, MoonbeamRuntimeRuntimeHoldReason, MoonbeamRuntimeXcmConfigAssetType, MoonbeamRuntimeXcmConfigCurrencyId, MoonbeamRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsAccountStatus, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsAssetStatus, PalletAssetsCall, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, 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, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEthereumXcmCall, PalletEthereumXcmError, PalletEthereumXcmRawOrigin, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletIdentitySimpleIdentityField, PalletIdentitySimpleIdentityInfo, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsError, PalletMigrationsEvent, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletMultisigCall, PalletMultisigError, PalletMultisigEvent, PalletMultisigMultisig, PalletMultisigTimepoint, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetBoundedOrderedSet, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageHoldReason, PalletPreimageOldRequestStatus, 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, PalletTreasuryPaymentState, PalletTreasuryProposal, PalletTreasurySpendStatus, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletWhitelistCall, PalletWhitelistError, PalletWhitelistEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorHrmpInitParams, PalletXcmTransactorHrmpOperation, PalletXcmTransactorRelayIndicesRelayChainIndices, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesPrimitivesHrmpChannelId, PolkadotParachainPrimitivesPrimitivesXcmpMessageFormat, PolkadotPrimitivesV6AbridgedHostConfiguration, PolkadotPrimitivesV6AbridgedHrmpChannel, PolkadotPrimitivesV6AsyncBackingAsyncBackingParams, PolkadotPrimitivesV6PersistedValidationData, PolkadotPrimitivesV6UpgradeGoAhead, PolkadotPrimitivesV6UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpArithmeticArithmeticError, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeDispatchErrorWithPostInfo, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, 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, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup"; | ||
import type { AccountEthereumSignature, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity, CumulusPalletParachainSystemUnincludedSegmentAncestor, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate, CumulusPalletParachainSystemUnincludedSegmentSegmentTracker, CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth, 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, MoonbeamRuntimeAssetConfigAssetRegistrarMetadata, MoonbeamRuntimeGovernanceOriginsCustomOriginsOrigin, MoonbeamRuntimeOriginCaller, MoonbeamRuntimeProxyType, MoonbeamRuntimeRuntime, MoonbeamRuntimeRuntimeHoldReason, MoonbeamRuntimeXcmConfigAssetType, MoonbeamRuntimeXcmConfigCurrencyId, MoonbeamRuntimeXcmConfigTransactors, NimbusPrimitivesNimbusCryptoPublic, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAssetManagerAssetInfo, PalletAssetManagerCall, PalletAssetManagerError, PalletAssetManagerEvent, PalletAssetsAccountStatus, PalletAssetsApproval, PalletAssetsAssetAccount, PalletAssetsAssetDetails, PalletAssetsAssetMetadata, PalletAssetsAssetStatus, PalletAssetsCall, PalletAssetsError, PalletAssetsEvent, PalletAssetsExistenceReason, PalletAuthorInherentCall, PalletAuthorInherentError, PalletAuthorMappingCall, PalletAuthorMappingError, PalletAuthorMappingEvent, PalletAuthorMappingRegistrationInfo, PalletAuthorSlotFilterCall, PalletAuthorSlotFilterEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, 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, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumRawOrigin, PalletEthereumXcmCall, PalletEthereumXcmError, PalletEthereumXcmRawOrigin, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmError, PalletEvmEvent, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletIdentitySimpleIdentityField, PalletIdentitySimpleIdentityInfo, PalletMaintenanceModeCall, PalletMaintenanceModeError, PalletMaintenanceModeEvent, PalletMigrationsError, PalletMigrationsEvent, PalletMoonbeamLazyMigrationsCall, PalletMoonbeamLazyMigrationsError, PalletMoonbeamOrbitersCall, PalletMoonbeamOrbitersCollatorPoolInfo, PalletMoonbeamOrbitersCurrentOrbiter, PalletMoonbeamOrbitersError, PalletMoonbeamOrbitersEvent, PalletMultisigCall, PalletMultisigError, PalletMultisigEvent, PalletMultisigMultisig, PalletMultisigTimepoint, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetBoundedOrderedSet, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageHoldReason, PalletPreimageOldRequestStatus, 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, PalletTreasuryPaymentState, PalletTreasuryProposal, PalletTreasurySpendStatus, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletWhitelistCall, PalletWhitelistError, PalletWhitelistEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmTransactorCall, PalletXcmTransactorCurrency, PalletXcmTransactorCurrencyPayment, PalletXcmTransactorError, PalletXcmTransactorEvent, PalletXcmTransactorHrmpInitParams, PalletXcmTransactorHrmpOperation, PalletXcmTransactorRelayIndicesRelayChainIndices, PalletXcmTransactorRemoteTransactInfoWithMaxWeight, PalletXcmTransactorTransactWeights, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesPrimitivesHrmpChannelId, PolkadotParachainPrimitivesPrimitivesXcmpMessageFormat, PolkadotPrimitivesV6AbridgedHostConfiguration, PolkadotPrimitivesV6AbridgedHrmpChannel, PolkadotPrimitivesV6AsyncBackingAsyncBackingParams, PolkadotPrimitivesV6PersistedValidationData, PolkadotPrimitivesV6UpgradeGoAhead, PolkadotPrimitivesV6UpgradeRestriction, SessionKeysPrimitivesVrfVrfCryptoPublic, SpArithmeticArithmeticError, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeDispatchErrorWithPostInfo, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, 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, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from "@polkadot/types/lookup"; | ||
declare module "@polkadot/types/types/registry" { | ||
@@ -181,2 +181,4 @@ interface InterfaceTypes { | ||
PalletMigrationsEvent: PalletMigrationsEvent; | ||
PalletMoonbeamLazyMigrationsCall: PalletMoonbeamLazyMigrationsCall; | ||
PalletMoonbeamLazyMigrationsError: PalletMoonbeamLazyMigrationsError; | ||
PalletMoonbeamOrbitersCall: PalletMoonbeamOrbitersCall; | ||
@@ -183,0 +185,0 @@ PalletMoonbeamOrbitersCollatorPoolInfo: PalletMoonbeamOrbitersCollatorPoolInfo; |
@@ -82,8 +82,2 @@ import "@polkadot/api-base/types/consts"; | ||
}; | ||
councilCollective: { | ||
/** The maximum weight of a dispatch call that can be proposed and executed. */ | ||
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
crowdloanRewards: { | ||
@@ -180,24 +174,2 @@ /** Percentage to be payed at initialization */ | ||
}; | ||
localAssets: { | ||
/** The amount of funds that must be reserved when creating a new approval. */ | ||
approvalDeposit: u128 & AugmentedConst<ApiType>; | ||
/** The amount of funds that must be reserved for a non-provider asset account to be maintained. */ | ||
assetAccountDeposit: u128 & AugmentedConst<ApiType>; | ||
/** The basic amount of funds that must be reserved for an asset. */ | ||
assetDeposit: u128 & AugmentedConst<ApiType>; | ||
/** The basic amount of funds that must be reserved when adding metadata to your asset. */ | ||
metadataDepositBase: u128 & AugmentedConst<ApiType>; | ||
/** The additional funds that must be reserved for the number of bytes you store in your metadata. */ | ||
metadataDepositPerByte: u128 & AugmentedConst<ApiType>; | ||
/** | ||
* Max number of items to destroy per `destroy_accounts` and `destroy_approvals` call. | ||
* | ||
* Must be configured to result in a weight that makes each call fit in a block. | ||
*/ | ||
removeItemsLimit: u32 & AugmentedConst<ApiType>; | ||
/** The maximum length of a name or symbol stored on-chain. */ | ||
stringLimit: u32 & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
moonbeamOrbiters: { | ||
@@ -244,2 +216,4 @@ /** Maximum number of orbiters per collator. */ | ||
parachainStaking: { | ||
/** Get the average time beetween 2 blocks in milliseconds */ | ||
blockTime: u64 & AugmentedConst<ApiType>; | ||
/** Number of rounds candidate requests to decrease self-bond must wait to be executable */ | ||
@@ -278,2 +252,4 @@ candidateBondLessDelay: u32 & AugmentedConst<ApiType>; | ||
rewardPaymentDelay: u32 & AugmentedConst<ApiType>; | ||
/** Get the slot duration in milliseconds */ | ||
slotDuration: u64 & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
@@ -362,2 +338,12 @@ [key: string]: Codec; | ||
}; | ||
relayStorageRoots: { | ||
/** | ||
* Limit the number of relay storage roots that will be stored. This limit applies to the | ||
* number of items, not to their age. Decreasing the value of `MaxStorageRoots` is a breaking | ||
* change and needs a migration to clean the `RelayStorageRoots` mapping. | ||
*/ | ||
maxStorageRoots: u32 & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
scheduler: { | ||
@@ -399,8 +385,2 @@ /** The maximum weight that may be scheduled per block for any dispatchables. */ | ||
}; | ||
techCommitteeCollective: { | ||
/** The maximum weight of a dispatch call that can be proposed and executed. */ | ||
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
timestamp: { | ||
@@ -407,0 +387,0 @@ /** |
@@ -154,28 +154,2 @@ import "@polkadot/api-base/types/errors"; | ||
}; | ||
councilCollective: { | ||
/** 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>; | ||
/** Prime account is not a member */ | ||
PrimeAccountNotMember: 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>; | ||
}; | ||
crowdloanRewards: { | ||
@@ -326,2 +300,4 @@ /** | ||
InvalidSignature: AugmentedError<ApiType>; | ||
/** Invalid Transaction */ | ||
InvalidTransaction: AugmentedError<ApiType>; | ||
/** Calculating total payment overflowed */ | ||
@@ -380,53 +356,2 @@ PaymentOverflow: AugmentedError<ApiType>; | ||
}; | ||
localAssets: { | ||
/** The asset-account already exists. */ | ||
AlreadyExists: AugmentedError<ApiType>; | ||
/** The asset is not live, and likely being destroyed. */ | ||
AssetNotLive: AugmentedError<ApiType>; | ||
/** Invalid metadata given. */ | ||
BadMetadata: AugmentedError<ApiType>; | ||
/** Invalid witness data given. */ | ||
BadWitness: AugmentedError<ApiType>; | ||
/** Account balance must be greater than or equal to the transfer amount. */ | ||
BalanceLow: AugmentedError<ApiType>; | ||
/** Callback action resulted in error */ | ||
CallbackFailed: AugmentedError<ApiType>; | ||
/** The origin account is frozen. */ | ||
Frozen: AugmentedError<ApiType>; | ||
/** The asset status is not the expected status. */ | ||
IncorrectStatus: AugmentedError<ApiType>; | ||
/** The asset ID is already taken. */ | ||
InUse: AugmentedError<ApiType>; | ||
/** | ||
* The asset is a live asset and is actively being used. Usually emit for operations such as | ||
* `start_destroy` which require the asset to be in a destroying state. | ||
*/ | ||
LiveAsset: AugmentedError<ApiType>; | ||
/** Minimum balance should be non-zero. */ | ||
MinBalanceZero: AugmentedError<ApiType>; | ||
/** The account to alter does not exist. */ | ||
NoAccount: AugmentedError<ApiType>; | ||
/** The asset-account doesn't have an associated deposit. */ | ||
NoDeposit: AugmentedError<ApiType>; | ||
/** The signing account has no permission to do the operation. */ | ||
NoPermission: AugmentedError<ApiType>; | ||
/** The asset should be frozen before the given operation. */ | ||
NotFrozen: AugmentedError<ApiType>; | ||
/** No approval exists that would allow the transfer. */ | ||
Unapproved: AugmentedError<ApiType>; | ||
/** | ||
* Unable to increment the consumer reference counters on the account. Either no provider | ||
* reference exists to allow a non-zero balance of a non-self-sufficient asset, or one fewer | ||
* then the maximum number of consumers has been reached. | ||
*/ | ||
UnavailableConsumer: AugmentedError<ApiType>; | ||
/** The given asset ID is unknown. */ | ||
Unknown: AugmentedError<ApiType>; | ||
/** The operation would result in funds being burned. */ | ||
WouldBurn: AugmentedError<ApiType>; | ||
/** The source account would not survive the transfer and it needs to stay alive. */ | ||
WouldDie: AugmentedError<ApiType>; | ||
/** Generic error */ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
maintenanceMode: { | ||
@@ -452,2 +377,18 @@ /** The chain cannot enter maintenance mode because it is already in maintenance mode */ | ||
}; | ||
moonbeamLazyMigrations: { | ||
/** There must be at least one address */ | ||
AddressesLengthCannotBeZero: AugmentedError<ApiType>; | ||
/** There are no more VotingOf entries to be removed and democracy funds to be unlocked */ | ||
AllDemocracyFundsUnlocked: AugmentedError<ApiType>; | ||
/** There are no more storage entries to be removed */ | ||
AllStorageEntriesHaveBeenRemoved: AugmentedError<ApiType>; | ||
/** The contract is not corrupted (Still exist or properly suicided) */ | ||
ContractNotCorrupted: AugmentedError<ApiType>; | ||
/** The limit cannot be zero */ | ||
LimitCannotBeZero: AugmentedError<ApiType>; | ||
/** The limit for unlocking funds is too high */ | ||
UnlockLimitTooHigh: AugmentedError<ApiType>; | ||
/** Generic error */ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
moonbeamOrbiters: { | ||
@@ -665,2 +606,7 @@ /** The collator is already added in orbiters program. */ | ||
}; | ||
precompileBenchmarks: { | ||
BenchmarkError: AugmentedError<ApiType>; | ||
/** Generic error */ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
preimage: { | ||
@@ -792,28 +738,2 @@ /** Preimage has already been noted on-chain. */ | ||
}; | ||
techCommitteeCollective: { | ||
/** 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>; | ||
/** Prime account is not a member */ | ||
PrimeAccountNotMember: 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>; | ||
}; | ||
treasury: { | ||
@@ -820,0 +740,0 @@ /** The payment has already been attempted. */ |
@@ -82,8 +82,2 @@ import "@polkadot/api-base/types/consts"; | ||
}; | ||
councilCollective: { | ||
/** The maximum weight of a dispatch call that can be proposed and executed. */ | ||
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
crowdloanRewards: { | ||
@@ -180,24 +174,2 @@ /** Percentage to be payed at initialization */ | ||
}; | ||
localAssets: { | ||
/** The amount of funds that must be reserved when creating a new approval. */ | ||
approvalDeposit: u128 & AugmentedConst<ApiType>; | ||
/** The amount of funds that must be reserved for a non-provider asset account to be maintained. */ | ||
assetAccountDeposit: u128 & AugmentedConst<ApiType>; | ||
/** The basic amount of funds that must be reserved for an asset. */ | ||
assetDeposit: u128 & AugmentedConst<ApiType>; | ||
/** The basic amount of funds that must be reserved when adding metadata to your asset. */ | ||
metadataDepositBase: u128 & AugmentedConst<ApiType>; | ||
/** The additional funds that must be reserved for the number of bytes you store in your metadata. */ | ||
metadataDepositPerByte: u128 & AugmentedConst<ApiType>; | ||
/** | ||
* Max number of items to destroy per `destroy_accounts` and `destroy_approvals` call. | ||
* | ||
* Must be configured to result in a weight that makes each call fit in a block. | ||
*/ | ||
removeItemsLimit: u32 & AugmentedConst<ApiType>; | ||
/** The maximum length of a name or symbol stored on-chain. */ | ||
stringLimit: u32 & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
moonbeamOrbiters: { | ||
@@ -244,2 +216,4 @@ /** Maximum number of orbiters per collator. */ | ||
parachainStaking: { | ||
/** Get the average time beetween 2 blocks in milliseconds */ | ||
blockTime: u64 & AugmentedConst<ApiType>; | ||
/** Number of rounds candidate requests to decrease self-bond must wait to be executable */ | ||
@@ -278,2 +252,4 @@ candidateBondLessDelay: u32 & AugmentedConst<ApiType>; | ||
rewardPaymentDelay: u32 & AugmentedConst<ApiType>; | ||
/** Get the slot duration in milliseconds */ | ||
slotDuration: u64 & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
@@ -398,8 +374,2 @@ [key: string]: Codec; | ||
}; | ||
techCommitteeCollective: { | ||
/** The maximum weight of a dispatch call that can be proposed and executed. */ | ||
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>; | ||
/** Generic const */ | ||
[key: string]: Codec; | ||
}; | ||
timestamp: { | ||
@@ -406,0 +376,0 @@ /** |
@@ -154,28 +154,2 @@ import "@polkadot/api-base/types/errors"; | ||
}; | ||
councilCollective: { | ||
/** 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>; | ||
/** Prime account is not a member */ | ||
PrimeAccountNotMember: 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>; | ||
}; | ||
crowdloanRewards: { | ||
@@ -326,2 +300,4 @@ /** | ||
InvalidSignature: AugmentedError<ApiType>; | ||
/** Invalid Transaction */ | ||
InvalidTransaction: AugmentedError<ApiType>; | ||
/** Calculating total payment overflowed */ | ||
@@ -380,53 +356,2 @@ PaymentOverflow: AugmentedError<ApiType>; | ||
}; | ||
localAssets: { | ||
/** The asset-account already exists. */ | ||
AlreadyExists: AugmentedError<ApiType>; | ||
/** The asset is not live, and likely being destroyed. */ | ||
AssetNotLive: AugmentedError<ApiType>; | ||
/** Invalid metadata given. */ | ||
BadMetadata: AugmentedError<ApiType>; | ||
/** Invalid witness data given. */ | ||
BadWitness: AugmentedError<ApiType>; | ||
/** Account balance must be greater than or equal to the transfer amount. */ | ||
BalanceLow: AugmentedError<ApiType>; | ||
/** Callback action resulted in error */ | ||
CallbackFailed: AugmentedError<ApiType>; | ||
/** The origin account is frozen. */ | ||
Frozen: AugmentedError<ApiType>; | ||
/** The asset status is not the expected status. */ | ||
IncorrectStatus: AugmentedError<ApiType>; | ||
/** The asset ID is already taken. */ | ||
InUse: AugmentedError<ApiType>; | ||
/** | ||
* The asset is a live asset and is actively being used. Usually emit for operations such as | ||
* `start_destroy` which require the asset to be in a destroying state. | ||
*/ | ||
LiveAsset: AugmentedError<ApiType>; | ||
/** Minimum balance should be non-zero. */ | ||
MinBalanceZero: AugmentedError<ApiType>; | ||
/** The account to alter does not exist. */ | ||
NoAccount: AugmentedError<ApiType>; | ||
/** The asset-account doesn't have an associated deposit. */ | ||
NoDeposit: AugmentedError<ApiType>; | ||
/** The signing account has no permission to do the operation. */ | ||
NoPermission: AugmentedError<ApiType>; | ||
/** The asset should be frozen before the given operation. */ | ||
NotFrozen: AugmentedError<ApiType>; | ||
/** No approval exists that would allow the transfer. */ | ||
Unapproved: AugmentedError<ApiType>; | ||
/** | ||
* Unable to increment the consumer reference counters on the account. Either no provider | ||
* reference exists to allow a non-zero balance of a non-self-sufficient asset, or one fewer | ||
* then the maximum number of consumers has been reached. | ||
*/ | ||
UnavailableConsumer: AugmentedError<ApiType>; | ||
/** The given asset ID is unknown. */ | ||
Unknown: AugmentedError<ApiType>; | ||
/** The operation would result in funds being burned. */ | ||
WouldBurn: AugmentedError<ApiType>; | ||
/** The source account would not survive the transfer and it needs to stay alive. */ | ||
WouldDie: AugmentedError<ApiType>; | ||
/** Generic error */ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
maintenanceMode: { | ||
@@ -452,2 +377,18 @@ /** The chain cannot enter maintenance mode because it is already in maintenance mode */ | ||
}; | ||
moonbeamLazyMigrations: { | ||
/** There must be at least one address */ | ||
AddressesLengthCannotBeZero: AugmentedError<ApiType>; | ||
/** There are no more VotingOf entries to be removed and democracy funds to be unlocked */ | ||
AllDemocracyFundsUnlocked: AugmentedError<ApiType>; | ||
/** There are no more storage entries to be removed */ | ||
AllStorageEntriesHaveBeenRemoved: AugmentedError<ApiType>; | ||
/** The contract is not corrupted (Still exist or properly suicided) */ | ||
ContractNotCorrupted: AugmentedError<ApiType>; | ||
/** The limit cannot be zero */ | ||
LimitCannotBeZero: AugmentedError<ApiType>; | ||
/** The limit for unlocking funds is too high */ | ||
UnlockLimitTooHigh: AugmentedError<ApiType>; | ||
/** Generic error */ | ||
[key: string]: AugmentedError<ApiType>; | ||
}; | ||
moonbeamOrbiters: { | ||
@@ -785,28 +726,2 @@ /** The collator is already added in orbiters program. */ | ||
}; | ||
techCommitteeCollective: { | ||
/** 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>; | ||
/** Prime account is not a member */ | ||
PrimeAccountNotMember: 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>; | ||
}; | ||
treasury: { | ||
@@ -813,0 +728,0 @@ /** The payment has already been attempted. */ |
{ | ||
"name": "@moonbeam-network/api-augment", | ||
"version": "0.2800.0", | ||
"version": "0.2801.0", | ||
"type": "module", | ||
@@ -65,4 +65,4 @@ "private": false, | ||
"devDependencies": { | ||
"@polkadot/api": "^10.11.2", | ||
"@polkadot/typegen": "^10.11.2", | ||
"@polkadot/api": "^10.12.1", | ||
"@polkadot/typegen": "^10.12.1", | ||
"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
3340410
78936