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 limit is too high.269 **/270 GasLimitTooHigh: AugmentedError<ApiType>;271 /**272 * Gas limit is too low.273 **/274 GasLimitTooLow: AugmentedError<ApiType>;275 /**276 * Gas price is too low.277 **/278 GasPriceTooLow: AugmentedError<ApiType>;279 /**280 * Nonce is invalid281 **/282 InvalidNonce: AugmentedError<ApiType>;283 /**284 * Calculating total payment overflowed285 **/286 PaymentOverflow: AugmentedError<ApiType>;287 /**288 * EVM reentrancy289 **/290 Reentrancy: AugmentedError<ApiType>;291 /**292 * Undefined error.293 **/294 Undefined: AugmentedError<ApiType>;295 /**296 * Withdraw fee failed297 **/298 WithdrawFailed: AugmentedError<ApiType>;299 /**300 * Generic error301 **/302 [key: string]: AugmentedError<ApiType>;303 };304 evmCoderSubstrate: {305 OutOfFund: AugmentedError<ApiType>;306 OutOfGas: AugmentedError<ApiType>;307 /**308 * Generic error309 **/310 [key: string]: AugmentedError<ApiType>;311 };312 evmContractHelpers: {313 /**314 * No pending sponsor for contract.315 **/316 NoPendingSponsor: AugmentedError<ApiType>;317 /**318 * This method is only executable by contract owner319 **/320 NoPermission: AugmentedError<ApiType>;321 /**322 * Number of methods that sponsored limit is defined for exceeds maximum.323 **/324 TooManyMethodsHaveSponsoredLimit: AugmentedError<ApiType>;325 /**326 * Generic error327 **/328 [key: string]: AugmentedError<ApiType>;329 };330 evmMigration: {331 /**332 * Migration of this account is not yet started, or already finished.333 **/334 AccountIsNotMigrating: AugmentedError<ApiType>;335 /**336 * Can only migrate to empty address.337 **/338 AccountNotEmpty: AugmentedError<ApiType>;339 /**340 * Generic error341 **/342 [key: string]: AugmentedError<ApiType>;343 };344 foreignAssets: {345 /**346 * AssetId exists347 **/348 AssetIdExisted: AugmentedError<ApiType>;349 /**350 * AssetId not exists351 **/352 AssetIdNotExists: AugmentedError<ApiType>;353 /**354 * The given location could not be used (e.g. because it cannot be expressed in the355 * desired version of XCM).356 **/357 BadLocation: AugmentedError<ApiType>;358 /**359 * MultiLocation existed360 **/361 MultiLocationExisted: AugmentedError<ApiType>;362 /**363 * Generic error364 **/365 [key: string]: AugmentedError<ApiType>;366 };367 fungible: {368 /**369 * Fungible token does not support nesting.370 **/371 FungibleDisallowsNesting: AugmentedError<ApiType>;372 /**373 * Tried to set data for fungible item.374 **/375 FungibleItemsDontHaveData: AugmentedError<ApiType>;376 /**377 * Fungible tokens hold no ID, and the default value of TokenId for Fungible collection is 0.378 **/379 FungibleItemsHaveNoId: AugmentedError<ApiType>;380 /**381 * Not Fungible item data used to mint in Fungible collection.382 **/383 NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;384 /**385 * Setting item properties is not allowed.386 **/387 SettingPropertiesNotAllowed: AugmentedError<ApiType>;388 /**389 * Generic error390 **/391 [key: string]: AugmentedError<ApiType>;392 };393 maintenance: {394 /**395 * Generic error396 **/397 [key: string]: AugmentedError<ApiType>;398 };399 nonfungible: {400 /**401 * Unable to burn NFT with children402 **/403 CantBurnNftWithChildren: AugmentedError<ApiType>;404 /**405 * Used amount > 1 with NFT406 **/407 NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;408 /**409 * Not Nonfungible item data used to mint in Nonfungible collection.410 **/411 NotNonfungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;412 /**413 * Generic error414 **/415 [key: string]: AugmentedError<ApiType>;416 };417 parachainSystem: {418 /**419 * The inherent which supplies the host configuration did not run this block420 **/421 HostConfigurationNotAvailable: AugmentedError<ApiType>;422 /**423 * No code upgrade has been authorized.424 **/425 NothingAuthorized: AugmentedError<ApiType>;426 /**427 * No validation function upgrade is currently scheduled.428 **/429 NotScheduled: AugmentedError<ApiType>;430 /**431 * Attempt to upgrade validation function while existing upgrade pending432 **/433 OverlappingUpgrades: AugmentedError<ApiType>;434 /**435 * Polkadot currently prohibits this parachain from upgrading its validation function436 **/437 ProhibitedByPolkadot: AugmentedError<ApiType>;438 /**439 * The supplied validation function has compiled into a blob larger than Polkadot is440 * willing to run441 **/442 TooBig: AugmentedError<ApiType>;443 /**444 * The given code upgrade has not been authorized.445 **/446 Unauthorized: AugmentedError<ApiType>;447 /**448 * The inherent which supplies the validation data did not run this block449 **/450 ValidationDataNotAvailable: AugmentedError<ApiType>;451 /**452 * Generic error453 **/454 [key: string]: AugmentedError<ApiType>;455 };456 polkadotXcm: {457 /**458 * The location is invalid since it already has a subscription from us.459 **/460 AlreadySubscribed: AugmentedError<ApiType>;461 /**462 * The given location could not be used (e.g. because it cannot be expressed in the463 * desired version of XCM).464 **/465 BadLocation: AugmentedError<ApiType>;466 /**467 * The version of the `Versioned` value used is not able to be interpreted.468 **/469 BadVersion: AugmentedError<ApiType>;470 /**471 * Could not re-anchor the assets to declare the fees for the destination chain.472 **/473 CannotReanchor: AugmentedError<ApiType>;474 /**475 * The destination `MultiLocation` provided cannot be inverted.476 **/477 DestinationNotInvertible: AugmentedError<ApiType>;478 /**479 * The assets to be sent are empty.480 **/481 Empty: AugmentedError<ApiType>;482 /**483 * The message execution fails the filter.484 **/485 Filtered: AugmentedError<ApiType>;486 /**487 * Origin is invalid for sending.488 **/489 InvalidOrigin: AugmentedError<ApiType>;490 /**491 * The referenced subscription could not be found.492 **/493 NoSubscription: AugmentedError<ApiType>;494 /**495 * There was some other issue (i.e. not to do with routing) in sending the message. Perhaps496 * a lack of space for buffering the message.497 **/498 SendFailure: AugmentedError<ApiType>;499 /**500 * Too many assets have been attempted for transfer.501 **/502 TooManyAssets: AugmentedError<ApiType>;503 /**504 * The desired destination was unreachable, generally because there is a no way of routing505 * to it.506 **/507 Unreachable: AugmentedError<ApiType>;508 /**509 * The message's weight could not be determined.510 **/511 UnweighableMessage: AugmentedError<ApiType>;512 /**513 * Generic error514 **/515 [key: string]: AugmentedError<ApiType>;516 };517 refungible: {518 /**519 * Not Refungible item data used to mint in Refungible collection.520 **/521 NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;522 /**523 * Refungible token can't nest other tokens.524 **/525 RefungibleDisallowsNesting: AugmentedError<ApiType>;526 /**527 * Refungible token can't be repartitioned by user who isn't owns all pieces.528 **/529 RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;530 /**531 * Setting item properties is not allowed.532 **/533 SettingPropertiesNotAllowed: AugmentedError<ApiType>;534 /**535 * Maximum refungibility exceeded.536 **/537 WrongRefungiblePieces: AugmentedError<ApiType>;538 /**539 * Generic error540 **/541 [key: string]: AugmentedError<ApiType>;542 };543 rmrkCore: {544 /**545 * Not the target owner of the sent NFT.546 **/547 CannotAcceptNonOwnedNft: AugmentedError<ApiType>;548 /**549 * Not the target owner of the sent NFT.550 **/551 CannotRejectNonOwnedNft: AugmentedError<ApiType>;552 /**553 * NFT was not sent and is not pending.554 **/555 CannotRejectNonPendingNft: AugmentedError<ApiType>;556 /**557 * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.558 * Sending to self is redundant.559 **/560 CannotSendToDescendentOrSelf: AugmentedError<ApiType>;561 /**562 * Too many tokens created in the collection, no new ones are allowed.563 **/564 CollectionFullOrLocked: AugmentedError<ApiType>;565 /**566 * Only destroying collections without tokens is allowed.567 **/568 CollectionNotEmpty: AugmentedError<ApiType>;569 /**570 * Collection does not exist, has a wrong type, or does not map to a Unique ID.571 **/572 CollectionUnknown: AugmentedError<ApiType>;573 /**574 * Property of the type of RMRK collection could not be read successfully.575 **/576 CorruptedCollectionType: AugmentedError<ApiType>;577 /**578 * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.579 **/580 NoAvailableCollectionId: AugmentedError<ApiType>;581 /**582 * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.583 **/584 NoAvailableNftId: AugmentedError<ApiType>;585 /**586 * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.587 **/588 NoAvailableResourceId: AugmentedError<ApiType>;589 /**590 * Token is marked as non-transferable, and thus cannot be transferred.591 **/592 NonTransferable: AugmentedError<ApiType>;593 /**594 * No permission to perform action.595 **/596 NoPermission: AugmentedError<ApiType>;597 /**598 * No such resource found.599 **/600 ResourceDoesntExist: AugmentedError<ApiType>;601 /**602 * Resource is not pending for the operation.603 **/604 ResourceNotPending: AugmentedError<ApiType>;605 /**606 * Could not find a property by the supplied key.607 **/608 RmrkPropertyIsNotFound: AugmentedError<ApiType>;609 /**610 * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).611 **/612 RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;613 /**614 * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).615 **/616 RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;617 /**618 * Something went wrong when decoding encoded data from the storage.619 * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.620 **/621 UnableToDecodeRmrkData: AugmentedError<ApiType>;622 /**623 * Generic error624 **/625 [key: string]: AugmentedError<ApiType>;626 };627 rmrkEquip: {628 /**629 * Base collection linked to this ID does not exist.630 **/631 BaseDoesntExist: AugmentedError<ApiType>;632 /**633 * No Theme named "default" is associated with the Base.634 **/635 NeedsDefaultThemeFirst: AugmentedError<ApiType>;636 /**637 * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.638 **/639 NoAvailableBaseId: AugmentedError<ApiType>;640 /**641 * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow642 **/643 NoAvailablePartId: AugmentedError<ApiType>;644 /**645 * Cannot assign equippables to a fixed Part.646 **/647 NoEquippableOnFixedPart: AugmentedError<ApiType>;648 /**649 * Part linked to this ID does not exist.650 **/651 PartDoesntExist: AugmentedError<ApiType>;652 /**653 * No permission to perform action.654 **/655 PermissionError: AugmentedError<ApiType>;656 /**657 * Generic error658 **/659 [key: string]: AugmentedError<ApiType>;660 };661 scheduler: {662 /**663 * Failed to schedule a call664 **/665 FailedToSchedule: AugmentedError<ApiType>;666 /**667 * Cannot find the scheduled call.668 **/669 NotFound: AugmentedError<ApiType>;670 /**671 * Reschedule failed because it does not change scheduled time.672 **/673 RescheduleNoChange: AugmentedError<ApiType>;674 /**675 * Given target block number is in the past.676 **/677 TargetBlockNumberInPast: AugmentedError<ApiType>;678 /**679 * Generic error680 **/681 [key: string]: AugmentedError<ApiType>;682 };683 structure: {684 /**685 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.686 **/687 BreadthLimit: AugmentedError<ApiType>;688 /**689 * While nesting, reached the depth limit of nesting, exceeding the provided budget.690 **/691 DepthLimit: AugmentedError<ApiType>;692 /**693 * While nesting, encountered an already checked account, detecting a loop.694 **/695 OuroborosDetected: AugmentedError<ApiType>;696 /**697 * Couldn't find the token owner that is itself a token.698 **/699 TokenNotFound: AugmentedError<ApiType>;700 /**701 * Generic error702 **/703 [key: string]: AugmentedError<ApiType>;704 };705 sudo: {706 /**707 * Sender must be the Sudo account708 **/709 RequireSudo: AugmentedError<ApiType>;710 /**711 * Generic error712 **/713 [key: string]: AugmentedError<ApiType>;714 };715 system: {716 /**717 * The origin filter prevent the call to be dispatched.718 **/719 CallFiltered: AugmentedError<ApiType>;720 /**721 * Failed to extract the runtime version from the new runtime.722 * 723 * Either calling `Core_version` or decoding `RuntimeVersion` failed.724 **/725 FailedToExtractRuntimeVersion: AugmentedError<ApiType>;726 /**727 * The name of specification does not match between the current runtime728 * and the new runtime.729 **/730 InvalidSpecName: AugmentedError<ApiType>;731 /**732 * Suicide called when the account has non-default composite data.733 **/734 NonDefaultComposite: AugmentedError<ApiType>;735 /**736 * There is a non-zero reference count preventing the account from being purged.737 **/738 NonZeroRefCount: AugmentedError<ApiType>;739 /**740 * The specification version is not allowed to decrease between the current runtime741 * and the new runtime.742 **/743 SpecVersionNeedsToIncrease: AugmentedError<ApiType>;744 /**745 * Generic error746 **/747 [key: string]: AugmentedError<ApiType>;748 };749 testUtils: {750 TestPalletDisabled: AugmentedError<ApiType>;751 TriggerRollback: AugmentedError<ApiType>;752 /**753 * Generic error754 **/755 [key: string]: AugmentedError<ApiType>;756 };757 tokens: {758 /**759 * Cannot convert Amount into Balance type760 **/761 AmountIntoBalanceFailed: AugmentedError<ApiType>;762 /**763 * The balance is too low764 **/765 BalanceTooLow: AugmentedError<ApiType>;766 /**767 * Beneficiary account must pre-exist768 **/769 DeadAccount: AugmentedError<ApiType>;770 /**771 * Value too low to create account due to existential deposit772 **/773 ExistentialDeposit: AugmentedError<ApiType>;774 /**775 * Transfer/payment would kill account776 **/777 KeepAlive: AugmentedError<ApiType>;778 /**779 * Failed because liquidity restrictions due to locking780 **/781 LiquidityRestrictions: AugmentedError<ApiType>;782 /**783 * Failed because the maximum locks was exceeded784 **/785 MaxLocksExceeded: AugmentedError<ApiType>;786 TooManyReserves: AugmentedError<ApiType>;787 /**788 * Generic error789 **/790 [key: string]: AugmentedError<ApiType>;791 };792 treasury: {793 /**794 * The spend origin is valid but the amount it is allowed to spend is lower than the795 * amount to be spent.796 **/797 InsufficientPermission: AugmentedError<ApiType>;798 /**799 * Proposer's balance is too low.800 **/801 InsufficientProposersBalance: AugmentedError<ApiType>;802 /**803 * No proposal or bounty at that index.804 **/805 InvalidIndex: AugmentedError<ApiType>;806 /**807 * Proposal has not been approved.808 **/809 ProposalNotApproved: AugmentedError<ApiType>;810 /**811 * Too many approvals in the queue.812 **/813 TooManyApprovals: AugmentedError<ApiType>;814 /**815 * Generic error816 **/817 [key: string]: AugmentedError<ApiType>;818 };819 unique: {820 /**821 * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].822 **/823 CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;824 /**825 * This address is not set as sponsor, use setCollectionSponsor first.826 **/827 ConfirmUnsetSponsorFail: AugmentedError<ApiType>;828 /**829 * Length of items properties must be greater than 0.830 **/831 EmptyArgument: AugmentedError<ApiType>;832 /**833 * Repertition is only supported by refungible collection.834 **/835 RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;836 /**837 * Generic error838 **/839 [key: string]: AugmentedError<ApiType>;840 };841 vesting: {842 /**843 * The vested transfer amount is too low844 **/845 AmountLow: AugmentedError<ApiType>;846 /**847 * Insufficient amount of balance to lock848 **/849 InsufficientBalanceToLock: AugmentedError<ApiType>;850 /**851 * Failed because the maximum vesting schedules was exceeded852 **/853 MaxVestingSchedulesExceeded: AugmentedError<ApiType>;854 /**855 * This account have too many vesting schedules856 **/857 TooManyVestingSchedules: AugmentedError<ApiType>;858 /**859 * Vesting period is zero860 **/861 ZeroVestingPeriod: AugmentedError<ApiType>;862 /**863 * Number of vests is zero864 **/865 ZeroVestingPeriodCount: AugmentedError<ApiType>;866 /**867 * Generic error868 **/869 [key: string]: AugmentedError<ApiType>;870 };871 xcmpQueue: {872 /**873 * Bad overweight index.874 **/875 BadOverweightIndex: AugmentedError<ApiType>;876 /**877 * Bad XCM data.878 **/879 BadXcm: AugmentedError<ApiType>;880 /**881 * Bad XCM origin.882 **/883 BadXcmOrigin: AugmentedError<ApiType>;884 /**885 * Failed to send XCM message.886 **/887 FailedToSend: AugmentedError<ApiType>;888 /**889 * Provided weight is possibly not enough to execute the message.890 **/891 WeightOverLimit: AugmentedError<ApiType>;892 /**893 * Generic error894 **/895 [key: string]: AugmentedError<ApiType>;896 };897 xTokens: {898 /**899 * Asset has no reserve location.900 **/901 AssetHasNoReserve: AugmentedError<ApiType>;902 /**903 * The specified index does not exist in a MultiAssets struct.904 **/905 AssetIndexNonExistent: AugmentedError<ApiType>;906 /**907 * The version of the `Versioned` value used is not able to be908 * interpreted.909 **/910 BadVersion: AugmentedError<ApiType>;911 /**912 * Could not re-anchor the assets to declare the fees for the913 * destination chain.914 **/915 CannotReanchor: AugmentedError<ApiType>;916 /**917 * The destination `MultiLocation` provided cannot be inverted.918 **/919 DestinationNotInvertible: AugmentedError<ApiType>;920 /**921 * We tried sending distinct asset and fee but they have different922 * reserve chains.923 **/924 DistinctReserveForAssetAndFee: AugmentedError<ApiType>;925 /**926 * Fee is not enough.927 **/928 FeeNotEnough: AugmentedError<ApiType>;929 /**930 * Could not get ancestry of asset reserve location.931 **/932 InvalidAncestry: AugmentedError<ApiType>;933 /**934 * The MultiAsset is invalid.935 **/936 InvalidAsset: AugmentedError<ApiType>;937 /**938 * Invalid transfer destination.939 **/940 InvalidDest: AugmentedError<ApiType>;941 /**942 * MinXcmFee not registered for certain reserve location943 **/944 MinXcmFeeNotDefined: AugmentedError<ApiType>;945 /**946 * Not cross-chain transfer.947 **/948 NotCrossChainTransfer: AugmentedError<ApiType>;949 /**950 * Currency is not cross-chain transferable.951 **/952 NotCrossChainTransferableCurrency: AugmentedError<ApiType>;953 /**954 * Not supported MultiLocation955 **/956 NotSupportedMultiLocation: AugmentedError<ApiType>;957 /**958 * The number of assets to be sent is over the maximum.959 **/960 TooManyAssetsBeingSent: AugmentedError<ApiType>;961 /**962 * The message's weight could not be determined.963 **/964 UnweighableMessage: AugmentedError<ApiType>;965 /**966 * XCM execution failed.967 **/968 XcmExecutionFailed: AugmentedError<ApiType>;969 /**970 * The transfering asset amount is zero.971 **/972 ZeroAmount: AugmentedError<ApiType>;973 /**974 * The fee is zero.975 **/976 ZeroFee: AugmentedError<ApiType>;977 /**978 * Generic error979 **/980 [key: string]: AugmentedError<ApiType>;981 };982 } // AugmentedErrors983} // declare moduledifftreelog
source
tests/src/interfaces/augment-api-errors.ts29.4 KiBsourcehistory