1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/api-base/types/errors';78import type { ApiTypes, AugmentedError } from '@polkadot/api-base/types';910export type __AugmentedError<ApiType extends ApiTypes> = AugmentedError<ApiType>;1112declare module '@polkadot/api-base/types/errors' {13 interface AugmentedErrors<ApiType extends ApiTypes> {14 appPromotion: {15 /**16 * Error due to action requiring admin to be set.17 **/18 AdminNotSet: AugmentedError<ApiType>;19 /**20 * Errors caused by incorrect actions with a locked balance.21 **/22 IncorrectLockedBalanceOperation: AugmentedError<ApiType>;23 /**24 * No permission to perform an action.25 **/26 NoPermission: AugmentedError<ApiType>;27 /**28 * Insufficient funds to perform an action.29 **/30 NotSufficientFunds: AugmentedError<ApiType>;31 /**32 * Occurs when a pending unstake cannot be added in this block. PENDING_LIMIT_PER_BLOCK` limits exceeded.33 **/34 PendingForBlockOverflow: AugmentedError<ApiType>;35 /**36 * The error is due to the fact that the collection/contract must already be sponsored in order to perform the action.37 **/38 SponsorNotSet: AugmentedError<ApiType>;39 /**40 * Generic error41 **/42 [key: string]: AugmentedError<ApiType>;43 };44 balances: {45 /**46 * Beneficiary account must pre-exist47 **/48 DeadAccount: AugmentedError<ApiType>;49 /**50 * Value too low to create account due to existential deposit51 **/52 ExistentialDeposit: AugmentedError<ApiType>;53 /**54 * A vesting schedule already exists for this account55 **/56 ExistingVestingSchedule: AugmentedError<ApiType>;57 /**58 * Balance too low to send value59 **/60 InsufficientBalance: AugmentedError<ApiType>;61 /**62 * Transfer/payment would kill account63 **/64 KeepAlive: AugmentedError<ApiType>;65 /**66 * Account liquidity restrictions prevent withdrawal67 **/68 LiquidityRestrictions: AugmentedError<ApiType>;69 /**70 * Number of named reserves exceed MaxReserves71 **/72 TooManyReserves: AugmentedError<ApiType>;73 /**74 * Vesting balance too high to send value75 **/76 VestingBalance: AugmentedError<ApiType>;77 /**78 * Generic error79 **/80 [key: string]: AugmentedError<ApiType>;81 };82 common: {83 /**84 * Account token limit exceeded per collection85 **/86 AccountTokenLimitExceeded: AugmentedError<ApiType>;87 /**88 * Can't transfer tokens to ethereum zero address89 **/90 AddressIsZero: AugmentedError<ApiType>;91 /**92 * Address is not in allow list.93 **/94 AddressNotInAllowlist: AugmentedError<ApiType>;95 /**96 * Requested value is more than the approved97 **/98 ApprovedValueTooLow: AugmentedError<ApiType>;99 /**100 * Tried to approve more than owned101 **/102 CantApproveMoreThanOwned: AugmentedError<ApiType>;103 /**104 * Destroying only empty collections is allowed105 **/106 CantDestroyNotEmptyCollection: AugmentedError<ApiType>;107 /**108 * Exceeded max admin count109 **/110 CollectionAdminCountExceeded: AugmentedError<ApiType>;111 /**112 * Collection description can not be longer than 255 char.113 **/114 CollectionDescriptionLimitExceeded: AugmentedError<ApiType>;115 /**116 * Tried to store more data than allowed in collection field117 **/118 CollectionFieldSizeExceeded: AugmentedError<ApiType>;119 /**120 * Tried to access an external collection with an internal API121 **/122 CollectionIsExternal: AugmentedError<ApiType>;123 /**124 * Tried to access an internal collection with an external API125 **/126 CollectionIsInternal: AugmentedError<ApiType>;127 /**128 * Collection limit bounds per collection exceeded129 **/130 CollectionLimitBoundsExceeded: AugmentedError<ApiType>;131 /**132 * Collection name can not be longer than 63 char.133 **/134 CollectionNameLimitExceeded: AugmentedError<ApiType>;135 /**136 * This collection does not exist.137 **/138 CollectionNotFound: AugmentedError<ApiType>;139 /**140 * Collection token limit exceeded141 **/142 CollectionTokenLimitExceeded: AugmentedError<ApiType>;143 /**144 * Token prefix can not be longer than 15 char.145 **/146 CollectionTokenPrefixLimitExceeded: AugmentedError<ApiType>;147 /**148 * Empty property keys are forbidden149 **/150 EmptyPropertyKey: AugmentedError<ApiType>;151 /**152 * Only ASCII letters, digits, and symbols `_`, `-`, and `.` are allowed153 **/154 InvalidCharacterInPropertyKey: AugmentedError<ApiType>;155 /**156 * Metadata flag frozen157 **/158 MetadataFlagFrozen: AugmentedError<ApiType>;159 /**160 * Sender parameter and item owner must be equal.161 **/162 MustBeTokenOwner: AugmentedError<ApiType>;163 /**164 * No permission to perform action165 **/166 NoPermission: AugmentedError<ApiType>;167 /**168 * Tried to store more property data than allowed169 **/170 NoSpaceForProperty: AugmentedError<ApiType>;171 /**172 * Insufficient funds to perform an action173 **/174 NotSufficientFounds: AugmentedError<ApiType>;175 /**176 * Tried to enable permissions which are only permitted to be disabled177 **/178 OwnerPermissionsCantBeReverted: AugmentedError<ApiType>;179 /**180 * Property key is too long181 **/182 PropertyKeyIsTooLong: AugmentedError<ApiType>;183 /**184 * Tried to store more property keys than allowed185 **/186 PropertyLimitReached: AugmentedError<ApiType>;187 /**188 * Collection is not in mint mode.189 **/190 PublicMintingNotAllowed: AugmentedError<ApiType>;191 /**192 * Only tokens from specific collections may nest tokens under this one193 **/194 SourceCollectionIsNotAllowedToNest: AugmentedError<ApiType>;195 /**196 * Item does not exist197 **/198 TokenNotFound: AugmentedError<ApiType>;199 /**200 * Item is balance not enough201 **/202 TokenValueTooLow: AugmentedError<ApiType>;203 /**204 * Total collections bound exceeded.205 **/206 TotalCollectionsLimitExceeded: AugmentedError<ApiType>;207 /**208 * Collection settings not allowing items transferring209 **/210 TransferNotAllowed: AugmentedError<ApiType>;211 /**212 * The operation is not supported213 **/214 UnsupportedOperation: AugmentedError<ApiType>;215 /**216 * User does not satisfy the nesting rule217 **/218 UserIsNotAllowedToNest: AugmentedError<ApiType>;219 /**220 * Generic error221 **/222 [key: string]: AugmentedError<ApiType>;223 };224 cumulusXcm: {225 /**226 * Generic error227 **/228 [key: string]: AugmentedError<ApiType>;229 };230 dmpQueue: {231 /**232 * The amount of weight given is possibly not enough for executing the message.233 **/234 OverLimit: AugmentedError<ApiType>;235 /**236 * The message index given is unknown.237 **/238 Unknown: AugmentedError<ApiType>;239 /**240 * Generic error241 **/242 [key: string]: AugmentedError<ApiType>;243 };244 ethereum: {245 /**246 * Signature is invalid.247 **/248 InvalidSignature: AugmentedError<ApiType>;249 /**250 * Pre-log is present, therefore transact is not allowed.251 **/252 PreLogExists: AugmentedError<ApiType>;253 /**254 * Generic error255 **/256 [key: string]: AugmentedError<ApiType>;257 };258 evm: {259 /**260 * Not enough balance to perform action261 **/262 BalanceLow: AugmentedError<ApiType>;263 /**264 * Calculating total fee overflowed265 **/266 FeeOverflow: AugmentedError<ApiType>;267 /**268 * Gas price is too low.269 **/270 GasPriceTooLow: AugmentedError<ApiType>;271 /**272 * Nonce is invalid273 **/274 InvalidNonce: AugmentedError<ApiType>;275 /**276 * Calculating total payment overflowed277 **/278 PaymentOverflow: AugmentedError<ApiType>;279 /**280 * Withdraw fee failed281 **/282 WithdrawFailed: AugmentedError<ApiType>;283 /**284 * Generic error285 **/286 [key: string]: AugmentedError<ApiType>;287 };288 evmCoderSubstrate: {289 OutOfFund: AugmentedError<ApiType>;290 OutOfGas: AugmentedError<ApiType>;291 /**292 * Generic error293 **/294 [key: string]: AugmentedError<ApiType>;295 };296 evmContractHelpers: {297 /**298 * No pending sponsor for contract.299 **/300 NoPendingSponsor: AugmentedError<ApiType>;301 /**302 * This method is only executable by contract owner303 **/304 NoPermission: AugmentedError<ApiType>;305 /**306 * Number of methods that sponsored limit is defined for exceeds maximum.307 **/308 TooManyMethodsHaveSponsoredLimit: AugmentedError<ApiType>;309 /**310 * Generic error311 **/312 [key: string]: AugmentedError<ApiType>;313 };314 evmMigration: {315 /**316 * Migration of this account is not yet started, or already finished.317 **/318 AccountIsNotMigrating: AugmentedError<ApiType>;319 /**320 * Can only migrate to empty address.321 **/322 AccountNotEmpty: AugmentedError<ApiType>;323 /**324 * Generic error325 **/326 [key: string]: AugmentedError<ApiType>;327 };328 foreignAssets: {329 /**330 * AssetId exists331 **/332 AssetIdExisted: AugmentedError<ApiType>;333 /**334 * AssetId not exists335 **/336 AssetIdNotExists: AugmentedError<ApiType>;337 /**338 * The given location could not be used (e.g. because it cannot be expressed in the339 * desired version of XCM).340 **/341 BadLocation: AugmentedError<ApiType>;342 /**343 * MultiLocation existed344 **/345 MultiLocationExisted: AugmentedError<ApiType>;346 /**347 * Generic error348 **/349 [key: string]: AugmentedError<ApiType>;350 };351 fungible: {352 /**353 * Fungible token does not support nesting.354 **/355 FungibleDisallowsNesting: AugmentedError<ApiType>;356 /**357 * Tried to set data for fungible item.358 **/359 FungibleItemsDontHaveData: AugmentedError<ApiType>;360 /**361 * Fungible tokens hold no ID, and the default value of TokenId for Fungible collection is 0.362 **/363 FungibleItemsHaveNoId: AugmentedError<ApiType>;364 /**365 * Not Fungible item data used to mint in Fungible collection.366 **/367 NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;368 /**369 * Setting item properties is not allowed.370 **/371 SettingPropertiesNotAllowed: AugmentedError<ApiType>;372 /**373 * Generic error374 **/375 [key: string]: AugmentedError<ApiType>;376 };377 nonfungible: {378 /**379 * Unable to burn NFT with children380 **/381 CantBurnNftWithChildren: AugmentedError<ApiType>;382 /**383 * Used amount > 1 with NFT384 **/385 NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;386 /**387 * Not Nonfungible item data used to mint in Nonfungible collection.388 **/389 NotNonfungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;390 /**391 * Generic error392 **/393 [key: string]: AugmentedError<ApiType>;394 };395 parachainSystem: {396 /**397 * The inherent which supplies the host configuration did not run this block398 **/399 HostConfigurationNotAvailable: AugmentedError<ApiType>;400 /**401 * No code upgrade has been authorized.402 **/403 NothingAuthorized: AugmentedError<ApiType>;404 /**405 * No validation function upgrade is currently scheduled.406 **/407 NotScheduled: AugmentedError<ApiType>;408 /**409 * Attempt to upgrade validation function while existing upgrade pending410 **/411 OverlappingUpgrades: AugmentedError<ApiType>;412 /**413 * Polkadot currently prohibits this parachain from upgrading its validation function414 **/415 ProhibitedByPolkadot: AugmentedError<ApiType>;416 /**417 * The supplied validation function has compiled into a blob larger than Polkadot is418 * willing to run419 **/420 TooBig: AugmentedError<ApiType>;421 /**422 * The given code upgrade has not been authorized.423 **/424 Unauthorized: AugmentedError<ApiType>;425 /**426 * The inherent which supplies the validation data did not run this block427 **/428 ValidationDataNotAvailable: AugmentedError<ApiType>;429 /**430 * Generic error431 **/432 [key: string]: AugmentedError<ApiType>;433 };434 polkadotXcm: {435 /**436 * The location is invalid since it already has a subscription from us.437 **/438 AlreadySubscribed: AugmentedError<ApiType>;439 /**440 * The given location could not be used (e.g. because it cannot be expressed in the441 * desired version of XCM).442 **/443 BadLocation: AugmentedError<ApiType>;444 /**445 * The version of the `Versioned` value used is not able to be interpreted.446 **/447 BadVersion: AugmentedError<ApiType>;448 /**449 * Could not re-anchor the assets to declare the fees for the destination chain.450 **/451 CannotReanchor: AugmentedError<ApiType>;452 /**453 * The destination `MultiLocation` provided cannot be inverted.454 **/455 DestinationNotInvertible: AugmentedError<ApiType>;456 /**457 * The assets to be sent are empty.458 **/459 Empty: AugmentedError<ApiType>;460 /**461 * The message execution fails the filter.462 **/463 Filtered: AugmentedError<ApiType>;464 /**465 * Origin is invalid for sending.466 **/467 InvalidOrigin: AugmentedError<ApiType>;468 /**469 * The referenced subscription could not be found.470 **/471 NoSubscription: AugmentedError<ApiType>;472 /**473 * There was some other issue (i.e. not to do with routing) in sending the message. Perhaps474 * a lack of space for buffering the message.475 **/476 SendFailure: AugmentedError<ApiType>;477 /**478 * Too many assets have been attempted for transfer.479 **/480 TooManyAssets: AugmentedError<ApiType>;481 /**482 * The desired destination was unreachable, generally because there is a no way of routing483 * to it.484 **/485 Unreachable: AugmentedError<ApiType>;486 /**487 * The message's weight could not be determined.488 **/489 UnweighableMessage: AugmentedError<ApiType>;490 /**491 * Generic error492 **/493 [key: string]: AugmentedError<ApiType>;494 };495 refungible: {496 /**497 * Not Refungible item data used to mint in Refungible collection.498 **/499 NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;500 /**501 * Refungible token can't nest other tokens.502 **/503 RefungibleDisallowsNesting: AugmentedError<ApiType>;504 /**505 * Refungible token can't be repartitioned by user who isn't owns all pieces.506 **/507 RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;508 /**509 * Setting item properties is not allowed.510 **/511 SettingPropertiesNotAllowed: AugmentedError<ApiType>;512 /**513 * Maximum refungibility exceeded.514 **/515 WrongRefungiblePieces: AugmentedError<ApiType>;516 /**517 * Generic error518 **/519 [key: string]: AugmentedError<ApiType>;520 };521 rmrkCore: {522 /**523 * Not the target owner of the sent NFT.524 **/525 CannotAcceptNonOwnedNft: AugmentedError<ApiType>;526 /**527 * Not the target owner of the sent NFT.528 **/529 CannotRejectNonOwnedNft: AugmentedError<ApiType>;530 /**531 * NFT was not sent and is not pending.532 **/533 CannotRejectNonPendingNft: AugmentedError<ApiType>;534 /**535 * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.536 * Sending to self is redundant.537 **/538 CannotSendToDescendentOrSelf: AugmentedError<ApiType>;539 /**540 * Too many tokens created in the collection, no new ones are allowed.541 **/542 CollectionFullOrLocked: AugmentedError<ApiType>;543 /**544 * Only destroying collections without tokens is allowed.545 **/546 CollectionNotEmpty: AugmentedError<ApiType>;547 /**548 * Collection does not exist, has a wrong type, or does not map to a Unique ID.549 **/550 CollectionUnknown: AugmentedError<ApiType>;551 /**552 * Property of the type of RMRK collection could not be read successfully.553 **/554 CorruptedCollectionType: AugmentedError<ApiType>;555 /**556 * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.557 **/558 NoAvailableCollectionId: AugmentedError<ApiType>;559 /**560 * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.561 **/562 NoAvailableNftId: AugmentedError<ApiType>;563 /**564 * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.565 **/566 NoAvailableResourceId: AugmentedError<ApiType>;567 /**568 * Token is marked as non-transferable, and thus cannot be transferred.569 **/570 NonTransferable: AugmentedError<ApiType>;571 /**572 * No permission to perform action.573 **/574 NoPermission: AugmentedError<ApiType>;575 /**576 * No such resource found.577 **/578 ResourceDoesntExist: AugmentedError<ApiType>;579 /**580 * Resource is not pending for the operation.581 **/582 ResourceNotPending: AugmentedError<ApiType>;583 /**584 * Could not find a property by the supplied key.585 **/586 RmrkPropertyIsNotFound: AugmentedError<ApiType>;587 /**588 * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).589 **/590 RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;591 /**592 * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).593 **/594 RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;595 /**596 * Something went wrong when decoding encoded data from the storage.597 * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.598 **/599 UnableToDecodeRmrkData: AugmentedError<ApiType>;600 /**601 * Generic error602 **/603 [key: string]: AugmentedError<ApiType>;604 };605 rmrkEquip: {606 /**607 * Base collection linked to this ID does not exist.608 **/609 BaseDoesntExist: AugmentedError<ApiType>;610 /**611 * No Theme named "default" is associated with the Base.612 **/613 NeedsDefaultThemeFirst: AugmentedError<ApiType>;614 /**615 * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.616 **/617 NoAvailableBaseId: AugmentedError<ApiType>;618 /**619 * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow620 **/621 NoAvailablePartId: AugmentedError<ApiType>;622 /**623 * Cannot assign equippables to a fixed Part.624 **/625 NoEquippableOnFixedPart: AugmentedError<ApiType>;626 /**627 * Part linked to this ID does not exist.628 **/629 PartDoesntExist: AugmentedError<ApiType>;630 /**631 * No permission to perform action.632 **/633 PermissionError: AugmentedError<ApiType>;634 /**635 * Generic error636 **/637 [key: string]: AugmentedError<ApiType>;638 };639 scheduler: {640 /**641 * Failed to schedule a call642 **/643 FailedToSchedule: AugmentedError<ApiType>;644 /**645 * Cannot find the scheduled call.646 **/647 NotFound: AugmentedError<ApiType>;648 /**649 * Reschedule failed because it does not change scheduled time.650 **/651 RescheduleNoChange: AugmentedError<ApiType>;652 /**653 * Given target block number is in the past.654 **/655 TargetBlockNumberInPast: AugmentedError<ApiType>;656 /**657 * Generic error658 **/659 [key: string]: AugmentedError<ApiType>;660 };661 structure: {662 /**663 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.664 **/665 BreadthLimit: AugmentedError<ApiType>;666 /**667 * While nesting, reached the depth limit of nesting, exceeding the provided budget.668 **/669 DepthLimit: AugmentedError<ApiType>;670 /**671 * While nesting, encountered an already checked account, detecting a loop.672 **/673 OuroborosDetected: AugmentedError<ApiType>;674 /**675 * Couldn't find the token owner that is itself a token.676 **/677 TokenNotFound: AugmentedError<ApiType>;678 /**679 * Generic error680 **/681 [key: string]: AugmentedError<ApiType>;682 };683 sudo: {684 /**685 * Sender must be the Sudo account686 **/687 RequireSudo: AugmentedError<ApiType>;688 /**689 * Generic error690 **/691 [key: string]: AugmentedError<ApiType>;692 };693 system: {694 /**695 * The origin filter prevent the call to be dispatched.696 **/697 CallFiltered: AugmentedError<ApiType>;698 /**699 * Failed to extract the runtime version from the new runtime.700 * 701 * Either calling `Core_version` or decoding `RuntimeVersion` failed.702 **/703 FailedToExtractRuntimeVersion: AugmentedError<ApiType>;704 /**705 * The name of specification does not match between the current runtime706 * and the new runtime.707 **/708 InvalidSpecName: AugmentedError<ApiType>;709 /**710 * Suicide called when the account has non-default composite data.711 **/712 NonDefaultComposite: AugmentedError<ApiType>;713 /**714 * There is a non-zero reference count preventing the account from being purged.715 **/716 NonZeroRefCount: AugmentedError<ApiType>;717 /**718 * The specification version is not allowed to decrease between the current runtime719 * and the new runtime.720 **/721 SpecVersionNeedsToIncrease: AugmentedError<ApiType>;722 /**723 * Generic error724 **/725 [key: string]: AugmentedError<ApiType>;726 };727 tokens: {728 /**729 * Cannot convert Amount into Balance type730 **/731 AmountIntoBalanceFailed: AugmentedError<ApiType>;732 /**733 * The balance is too low734 **/735 BalanceTooLow: AugmentedError<ApiType>;736 /**737 * Beneficiary account must pre-exist738 **/739 DeadAccount: AugmentedError<ApiType>;740 /**741 * Value too low to create account due to existential deposit742 **/743 ExistentialDeposit: AugmentedError<ApiType>;744 /**745 * Transfer/payment would kill account746 **/747 KeepAlive: AugmentedError<ApiType>;748 /**749 * Failed because liquidity restrictions due to locking750 **/751 LiquidityRestrictions: AugmentedError<ApiType>;752 /**753 * Failed because the maximum locks was exceeded754 **/755 MaxLocksExceeded: AugmentedError<ApiType>;756 TooManyReserves: AugmentedError<ApiType>;757 /**758 * Generic error759 **/760 [key: string]: AugmentedError<ApiType>;761 };762 treasury: {763 /**764 * The spend origin is valid but the amount it is allowed to spend is lower than the765 * amount to be spent.766 **/767 InsufficientPermission: AugmentedError<ApiType>;768 /**769 * Proposer's balance is too low.770 **/771 InsufficientProposersBalance: AugmentedError<ApiType>;772 /**773 * No proposal or bounty at that index.774 **/775 InvalidIndex: AugmentedError<ApiType>;776 /**777 * Proposal has not been approved.778 **/779 ProposalNotApproved: AugmentedError<ApiType>;780 /**781 * Too many approvals in the queue.782 **/783 TooManyApprovals: AugmentedError<ApiType>;784 /**785 * Generic error786 **/787 [key: string]: AugmentedError<ApiType>;788 };789 unique: {790 /**791 * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].792 **/793 CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;794 /**795 * This address is not set as sponsor, use setCollectionSponsor first.796 **/797 ConfirmUnsetSponsorFail: AugmentedError<ApiType>;798 /**799 * Length of items properties must be greater than 0.800 **/801 EmptyArgument: AugmentedError<ApiType>;802 /**803 * Repertition is only supported by refungible collection.804 **/805 RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;806 /**807 * Generic error808 **/809 [key: string]: AugmentedError<ApiType>;810 };811 vesting: {812 /**813 * The vested transfer amount is too low814 **/815 AmountLow: AugmentedError<ApiType>;816 /**817 * Insufficient amount of balance to lock818 **/819 InsufficientBalanceToLock: AugmentedError<ApiType>;820 /**821 * Failed because the maximum vesting schedules was exceeded822 **/823 MaxVestingSchedulesExceeded: AugmentedError<ApiType>;824 /**825 * This account have too many vesting schedules826 **/827 TooManyVestingSchedules: AugmentedError<ApiType>;828 /**829 * Vesting period is zero830 **/831 ZeroVestingPeriod: AugmentedError<ApiType>;832 /**833 * Number of vests is zero834 **/835 ZeroVestingPeriodCount: AugmentedError<ApiType>;836 /**837 * Generic error838 **/839 [key: string]: AugmentedError<ApiType>;840 };841 xcmpQueue: {842 /**843 * Bad overweight index.844 **/845 BadOverweightIndex: AugmentedError<ApiType>;846 /**847 * Bad XCM data.848 **/849 BadXcm: AugmentedError<ApiType>;850 /**851 * Bad XCM origin.852 **/853 BadXcmOrigin: AugmentedError<ApiType>;854 /**855 * Failed to send XCM message.856 **/857 FailedToSend: AugmentedError<ApiType>;858 /**859 * Provided weight is possibly not enough to execute the message.860 **/861 WeightOverLimit: AugmentedError<ApiType>;862 /**863 * Generic error864 **/865 [key: string]: AugmentedError<ApiType>;866 };867 xTokens: {868 /**869 * Asset has no reserve location.870 **/871 AssetHasNoReserve: AugmentedError<ApiType>;872 /**873 * The specified index does not exist in a MultiAssets struct.874 **/875 AssetIndexNonExistent: AugmentedError<ApiType>;876 /**877 * The version of the `Versioned` value used is not able to be878 * interpreted.879 **/880 BadVersion: AugmentedError<ApiType>;881 /**882 * Could not re-anchor the assets to declare the fees for the883 * destination chain.884 **/885 CannotReanchor: AugmentedError<ApiType>;886 /**887 * The destination `MultiLocation` provided cannot be inverted.888 **/889 DestinationNotInvertible: AugmentedError<ApiType>;890 /**891 * We tried sending distinct asset and fee but they have different892 * reserve chains.893 **/894 DistinctReserveForAssetAndFee: AugmentedError<ApiType>;895 /**896 * Fee is not enough.897 **/898 FeeNotEnough: AugmentedError<ApiType>;899 /**900 * Could not get ancestry of asset reserve location.901 **/902 InvalidAncestry: AugmentedError<ApiType>;903 /**904 * The MultiAsset is invalid.905 **/906 InvalidAsset: AugmentedError<ApiType>;907 /**908 * Invalid transfer destination.909 **/910 InvalidDest: AugmentedError<ApiType>;911 /**912 * MinXcmFee not registered for certain reserve location913 **/914 MinXcmFeeNotDefined: AugmentedError<ApiType>;915 /**916 * Not cross-chain transfer.917 **/918 NotCrossChainTransfer: AugmentedError<ApiType>;919 /**920 * Currency is not cross-chain transferable.921 **/922 NotCrossChainTransferableCurrency: AugmentedError<ApiType>;923 /**924 * Not supported MultiLocation925 **/926 NotSupportedMultiLocation: AugmentedError<ApiType>;927 /**928 * The number of assets to be sent is over the maximum.929 **/930 TooManyAssetsBeingSent: AugmentedError<ApiType>;931 /**932 * The message's weight could not be determined.933 **/934 UnweighableMessage: AugmentedError<ApiType>;935 /**936 * XCM execution failed.937 **/938 XcmExecutionFailed: AugmentedError<ApiType>;939 /**940 * The transfering asset amount is zero.941 **/942 ZeroAmount: AugmentedError<ApiType>;943 /**944 * The fee is zero.945 **/946 ZeroFee: AugmentedError<ApiType>;947 /**948 * Generic error949 **/950 [key: string]: AugmentedError<ApiType>;951 };952 } // AugmentedErrors953} // declare moduledifftreelog
source
tests/src/interfaces/augment-api-errors.ts28.7 KiBsourcehistory