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 maintenance: {378 /**379 * Generic error380 **/381 [key: string]: AugmentedError<ApiType>;382 };383 nonfungible: {384 /**385 * Unable to burn NFT with children386 **/387 CantBurnNftWithChildren: AugmentedError<ApiType>;388 /**389 * Used amount > 1 with NFT390 **/391 NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;392 /**393 * Not Nonfungible item data used to mint in Nonfungible collection.394 **/395 NotNonfungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;396 /**397 * Generic error398 **/399 [key: string]: AugmentedError<ApiType>;400 };401 parachainSystem: {402 /**403 * The inherent which supplies the host configuration did not run this block404 **/405 HostConfigurationNotAvailable: AugmentedError<ApiType>;406 /**407 * No code upgrade has been authorized.408 **/409 NothingAuthorized: AugmentedError<ApiType>;410 /**411 * No validation function upgrade is currently scheduled.412 **/413 NotScheduled: AugmentedError<ApiType>;414 /**415 * Attempt to upgrade validation function while existing upgrade pending416 **/417 OverlappingUpgrades: AugmentedError<ApiType>;418 /**419 * Polkadot currently prohibits this parachain from upgrading its validation function420 **/421 ProhibitedByPolkadot: AugmentedError<ApiType>;422 /**423 * The supplied validation function has compiled into a blob larger than Polkadot is424 * willing to run425 **/426 TooBig: AugmentedError<ApiType>;427 /**428 * The given code upgrade has not been authorized.429 **/430 Unauthorized: AugmentedError<ApiType>;431 /**432 * The inherent which supplies the validation data did not run this block433 **/434 ValidationDataNotAvailable: AugmentedError<ApiType>;435 /**436 * Generic error437 **/438 [key: string]: AugmentedError<ApiType>;439 };440 polkadotXcm: {441 /**442 * The location is invalid since it already has a subscription from us.443 **/444 AlreadySubscribed: AugmentedError<ApiType>;445 /**446 * The given location could not be used (e.g. because it cannot be expressed in the447 * desired version of XCM).448 **/449 BadLocation: AugmentedError<ApiType>;450 /**451 * The version of the `Versioned` value used is not able to be interpreted.452 **/453 BadVersion: AugmentedError<ApiType>;454 /**455 * Could not re-anchor the assets to declare the fees for the destination chain.456 **/457 CannotReanchor: AugmentedError<ApiType>;458 /**459 * The destination `MultiLocation` provided cannot be inverted.460 **/461 DestinationNotInvertible: AugmentedError<ApiType>;462 /**463 * The assets to be sent are empty.464 **/465 Empty: AugmentedError<ApiType>;466 /**467 * The message execution fails the filter.468 **/469 Filtered: AugmentedError<ApiType>;470 /**471 * Origin is invalid for sending.472 **/473 InvalidOrigin: AugmentedError<ApiType>;474 /**475 * The referenced subscription could not be found.476 **/477 NoSubscription: AugmentedError<ApiType>;478 /**479 * There was some other issue (i.e. not to do with routing) in sending the message. Perhaps480 * a lack of space for buffering the message.481 **/482 SendFailure: AugmentedError<ApiType>;483 /**484 * Too many assets have been attempted for transfer.485 **/486 TooManyAssets: AugmentedError<ApiType>;487 /**488 * The desired destination was unreachable, generally because there is a no way of routing489 * to it.490 **/491 Unreachable: AugmentedError<ApiType>;492 /**493 * The message's weight could not be determined.494 **/495 UnweighableMessage: AugmentedError<ApiType>;496 /**497 * Generic error498 **/499 [key: string]: AugmentedError<ApiType>;500 };501 refungible: {502 /**503 * Not Refungible item data used to mint in Refungible collection.504 **/505 NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;506 /**507 * Refungible token can't nest other tokens.508 **/509 RefungibleDisallowsNesting: AugmentedError<ApiType>;510 /**511 * Refungible token can't be repartitioned by user who isn't owns all pieces.512 **/513 RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;514 /**515 * Setting item properties is not allowed.516 **/517 SettingPropertiesNotAllowed: AugmentedError<ApiType>;518 /**519 * Maximum refungibility exceeded.520 **/521 WrongRefungiblePieces: AugmentedError<ApiType>;522 /**523 * Generic error524 **/525 [key: string]: AugmentedError<ApiType>;526 };527 rmrkCore: {528 /**529 * Not the target owner of the sent NFT.530 **/531 CannotAcceptNonOwnedNft: AugmentedError<ApiType>;532 /**533 * Not the target owner of the sent NFT.534 **/535 CannotRejectNonOwnedNft: AugmentedError<ApiType>;536 /**537 * NFT was not sent and is not pending.538 **/539 CannotRejectNonPendingNft: AugmentedError<ApiType>;540 /**541 * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.542 * Sending to self is redundant.543 **/544 CannotSendToDescendentOrSelf: AugmentedError<ApiType>;545 /**546 * Too many tokens created in the collection, no new ones are allowed.547 **/548 CollectionFullOrLocked: AugmentedError<ApiType>;549 /**550 * Only destroying collections without tokens is allowed.551 **/552 CollectionNotEmpty: AugmentedError<ApiType>;553 /**554 * Collection does not exist, has a wrong type, or does not map to a Unique ID.555 **/556 CollectionUnknown: AugmentedError<ApiType>;557 /**558 * Property of the type of RMRK collection could not be read successfully.559 **/560 CorruptedCollectionType: AugmentedError<ApiType>;561 /**562 * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.563 **/564 NoAvailableCollectionId: AugmentedError<ApiType>;565 /**566 * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.567 **/568 NoAvailableNftId: AugmentedError<ApiType>;569 /**570 * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.571 **/572 NoAvailableResourceId: AugmentedError<ApiType>;573 /**574 * Token is marked as non-transferable, and thus cannot be transferred.575 **/576 NonTransferable: AugmentedError<ApiType>;577 /**578 * No permission to perform action.579 **/580 NoPermission: AugmentedError<ApiType>;581 /**582 * No such resource found.583 **/584 ResourceDoesntExist: AugmentedError<ApiType>;585 /**586 * Resource is not pending for the operation.587 **/588 ResourceNotPending: AugmentedError<ApiType>;589 /**590 * Could not find a property by the supplied key.591 **/592 RmrkPropertyIsNotFound: AugmentedError<ApiType>;593 /**594 * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).595 **/596 RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;597 /**598 * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).599 **/600 RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;601 /**602 * Something went wrong when decoding encoded data from the storage.603 * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.604 **/605 UnableToDecodeRmrkData: AugmentedError<ApiType>;606 /**607 * Generic error608 **/609 [key: string]: AugmentedError<ApiType>;610 };611 rmrkEquip: {612 /**613 * Base collection linked to this ID does not exist.614 **/615 BaseDoesntExist: AugmentedError<ApiType>;616 /**617 * No Theme named "default" is associated with the Base.618 **/619 NeedsDefaultThemeFirst: AugmentedError<ApiType>;620 /**621 * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.622 **/623 NoAvailableBaseId: AugmentedError<ApiType>;624 /**625 * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow626 **/627 NoAvailablePartId: AugmentedError<ApiType>;628 /**629 * Cannot assign equippables to a fixed Part.630 **/631 NoEquippableOnFixedPart: AugmentedError<ApiType>;632 /**633 * Part linked to this ID does not exist.634 **/635 PartDoesntExist: AugmentedError<ApiType>;636 /**637 * No permission to perform action.638 **/639 PermissionError: AugmentedError<ApiType>;640 /**641 * Generic error642 **/643 [key: string]: AugmentedError<ApiType>;644 };645 scheduler: {646 /**647 * Failed to schedule a call648 **/649 FailedToSchedule: AugmentedError<ApiType>;650 /**651 * Cannot find the scheduled call.652 **/653 NotFound: AugmentedError<ApiType>;654 /**655 * Reschedule failed because it does not change scheduled time.656 **/657 RescheduleNoChange: AugmentedError<ApiType>;658 /**659 * Given target block number is in the past.660 **/661 TargetBlockNumberInPast: AugmentedError<ApiType>;662 /**663 * Generic error664 **/665 [key: string]: AugmentedError<ApiType>;666 };667 structure: {668 /**669 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.670 **/671 BreadthLimit: AugmentedError<ApiType>;672 /**673 * While nesting, reached the depth limit of nesting, exceeding the provided budget.674 **/675 DepthLimit: AugmentedError<ApiType>;676 /**677 * While nesting, encountered an already checked account, detecting a loop.678 **/679 OuroborosDetected: AugmentedError<ApiType>;680 /**681 * Couldn't find the token owner that is itself a token.682 **/683 TokenNotFound: AugmentedError<ApiType>;684 /**685 * Generic error686 **/687 [key: string]: AugmentedError<ApiType>;688 };689 sudo: {690 /**691 * Sender must be the Sudo account692 **/693 RequireSudo: AugmentedError<ApiType>;694 /**695 * Generic error696 **/697 [key: string]: AugmentedError<ApiType>;698 };699 system: {700 /**701 * The origin filter prevent the call to be dispatched.702 **/703 CallFiltered: AugmentedError<ApiType>;704 /**705 * Failed to extract the runtime version from the new runtime.706 * 707 * Either calling `Core_version` or decoding `RuntimeVersion` failed.708 **/709 FailedToExtractRuntimeVersion: AugmentedError<ApiType>;710 /**711 * The name of specification does not match between the current runtime712 * and the new runtime.713 **/714 InvalidSpecName: AugmentedError<ApiType>;715 /**716 * Suicide called when the account has non-default composite data.717 **/718 NonDefaultComposite: AugmentedError<ApiType>;719 /**720 * There is a non-zero reference count preventing the account from being purged.721 **/722 NonZeroRefCount: AugmentedError<ApiType>;723 /**724 * The specification version is not allowed to decrease between the current runtime725 * and the new runtime.726 **/727 SpecVersionNeedsToIncrease: AugmentedError<ApiType>;728 /**729 * Generic error730 **/731 [key: string]: AugmentedError<ApiType>;732 };733 testUtils: {734 TestPalletDisabled: AugmentedError<ApiType>;735 TriggerRollback: AugmentedError<ApiType>;736 /**737 * Generic error738 **/739 [key: string]: AugmentedError<ApiType>;740 };741 tokens: {742 /**743 * Cannot convert Amount into Balance type744 **/745 AmountIntoBalanceFailed: AugmentedError<ApiType>;746 /**747 * The balance is too low748 **/749 BalanceTooLow: AugmentedError<ApiType>;750 /**751 * Beneficiary account must pre-exist752 **/753 DeadAccount: AugmentedError<ApiType>;754 /**755 * Value too low to create account due to existential deposit756 **/757 ExistentialDeposit: AugmentedError<ApiType>;758 /**759 * Transfer/payment would kill account760 **/761 KeepAlive: AugmentedError<ApiType>;762 /**763 * Failed because liquidity restrictions due to locking764 **/765 LiquidityRestrictions: AugmentedError<ApiType>;766 /**767 * Failed because the maximum locks was exceeded768 **/769 MaxLocksExceeded: AugmentedError<ApiType>;770 TooManyReserves: AugmentedError<ApiType>;771 /**772 * Generic error773 **/774 [key: string]: AugmentedError<ApiType>;775 };776 treasury: {777 /**778 * The spend origin is valid but the amount it is allowed to spend is lower than the779 * amount to be spent.780 **/781 InsufficientPermission: AugmentedError<ApiType>;782 /**783 * Proposer's balance is too low.784 **/785 InsufficientProposersBalance: AugmentedError<ApiType>;786 /**787 * No proposal or bounty at that index.788 **/789 InvalidIndex: AugmentedError<ApiType>;790 /**791 * Proposal has not been approved.792 **/793 ProposalNotApproved: AugmentedError<ApiType>;794 /**795 * Too many approvals in the queue.796 **/797 TooManyApprovals: AugmentedError<ApiType>;798 /**799 * Generic error800 **/801 [key: string]: AugmentedError<ApiType>;802 };803 unique: {804 /**805 * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].806 **/807 CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;808 /**809 * This address is not set as sponsor, use setCollectionSponsor first.810 **/811 ConfirmUnsetSponsorFail: AugmentedError<ApiType>;812 /**813 * Length of items properties must be greater than 0.814 **/815 EmptyArgument: AugmentedError<ApiType>;816 /**817 * Repertition is only supported by refungible collection.818 **/819 RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;820 /**821 * Generic error822 **/823 [key: string]: AugmentedError<ApiType>;824 };825 vesting: {826 /**827 * The vested transfer amount is too low828 **/829 AmountLow: AugmentedError<ApiType>;830 /**831 * Insufficient amount of balance to lock832 **/833 InsufficientBalanceToLock: AugmentedError<ApiType>;834 /**835 * Failed because the maximum vesting schedules was exceeded836 **/837 MaxVestingSchedulesExceeded: AugmentedError<ApiType>;838 /**839 * This account have too many vesting schedules840 **/841 TooManyVestingSchedules: AugmentedError<ApiType>;842 /**843 * Vesting period is zero844 **/845 ZeroVestingPeriod: AugmentedError<ApiType>;846 /**847 * Number of vests is zero848 **/849 ZeroVestingPeriodCount: AugmentedError<ApiType>;850 /**851 * Generic error852 **/853 [key: string]: AugmentedError<ApiType>;854 };855 xcmpQueue: {856 /**857 * Bad overweight index.858 **/859 BadOverweightIndex: AugmentedError<ApiType>;860 /**861 * Bad XCM data.862 **/863 BadXcm: AugmentedError<ApiType>;864 /**865 * Bad XCM origin.866 **/867 BadXcmOrigin: AugmentedError<ApiType>;868 /**869 * Failed to send XCM message.870 **/871 FailedToSend: AugmentedError<ApiType>;872 /**873 * Provided weight is possibly not enough to execute the message.874 **/875 WeightOverLimit: AugmentedError<ApiType>;876 /**877 * Generic error878 **/879 [key: string]: AugmentedError<ApiType>;880 };881 xTokens: {882 /**883 * Asset has no reserve location.884 **/885 AssetHasNoReserve: AugmentedError<ApiType>;886 /**887 * The specified index does not exist in a MultiAssets struct.888 **/889 AssetIndexNonExistent: AugmentedError<ApiType>;890 /**891 * The version of the `Versioned` value used is not able to be892 * interpreted.893 **/894 BadVersion: AugmentedError<ApiType>;895 /**896 * Could not re-anchor the assets to declare the fees for the897 * destination chain.898 **/899 CannotReanchor: AugmentedError<ApiType>;900 /**901 * The destination `MultiLocation` provided cannot be inverted.902 **/903 DestinationNotInvertible: AugmentedError<ApiType>;904 /**905 * We tried sending distinct asset and fee but they have different906 * reserve chains.907 **/908 DistinctReserveForAssetAndFee: AugmentedError<ApiType>;909 /**910 * Fee is not enough.911 **/912 FeeNotEnough: AugmentedError<ApiType>;913 /**914 * Could not get ancestry of asset reserve location.915 **/916 InvalidAncestry: AugmentedError<ApiType>;917 /**918 * The MultiAsset is invalid.919 **/920 InvalidAsset: AugmentedError<ApiType>;921 /**922 * Invalid transfer destination.923 **/924 InvalidDest: AugmentedError<ApiType>;925 /**926 * MinXcmFee not registered for certain reserve location927 **/928 MinXcmFeeNotDefined: AugmentedError<ApiType>;929 /**930 * Not cross-chain transfer.931 **/932 NotCrossChainTransfer: AugmentedError<ApiType>;933 /**934 * Currency is not cross-chain transferable.935 **/936 NotCrossChainTransferableCurrency: AugmentedError<ApiType>;937 /**938 * Not supported MultiLocation939 **/940 NotSupportedMultiLocation: AugmentedError<ApiType>;941 /**942 * The number of assets to be sent is over the maximum.943 **/944 TooManyAssetsBeingSent: AugmentedError<ApiType>;945 /**946 * The message's weight could not be determined.947 **/948 UnweighableMessage: AugmentedError<ApiType>;949 /**950 * XCM execution failed.951 **/952 XcmExecutionFailed: AugmentedError<ApiType>;953 /**954 * The transfering asset amount is zero.955 **/956 ZeroAmount: AugmentedError<ApiType>;957 /**958 * The fee is zero.959 **/960 ZeroFee: AugmentedError<ApiType>;961 /**962 * Generic error963 **/964 [key: string]: AugmentedError<ApiType>;965 };966 } // AugmentedErrors967} // declare moduledifftreelog
source
tests/src/interfaces/augment-api-errors.ts29.0 KiBsourcehistory