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 structure: {640 /**641 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.642 **/643 BreadthLimit: AugmentedError<ApiType>;644 /**645 * While nesting, reached the depth limit of nesting, exceeding the provided budget.646 **/647 DepthLimit: AugmentedError<ApiType>;648 /**649 * While nesting, encountered an already checked account, detecting a loop.650 **/651 OuroborosDetected: AugmentedError<ApiType>;652 /**653 * Couldn't find the token owner that is itself a token.654 **/655 TokenNotFound: AugmentedError<ApiType>;656 /**657 * Generic error658 **/659 [key: string]: AugmentedError<ApiType>;660 };661 sudo: {662 /**663 * Sender must be the Sudo account664 **/665 RequireSudo: AugmentedError<ApiType>;666 /**667 * Generic error668 **/669 [key: string]: AugmentedError<ApiType>;670 };671 system: {672 /**673 * The origin filter prevent the call to be dispatched.674 **/675 CallFiltered: AugmentedError<ApiType>;676 /**677 * Failed to extract the runtime version from the new runtime.678 * 679 * Either calling `Core_version` or decoding `RuntimeVersion` failed.680 **/681 FailedToExtractRuntimeVersion: AugmentedError<ApiType>;682 /**683 * The name of specification does not match between the current runtime684 * and the new runtime.685 **/686 InvalidSpecName: AugmentedError<ApiType>;687 /**688 * Suicide called when the account has non-default composite data.689 **/690 NonDefaultComposite: AugmentedError<ApiType>;691 /**692 * There is a non-zero reference count preventing the account from being purged.693 **/694 NonZeroRefCount: AugmentedError<ApiType>;695 /**696 * The specification version is not allowed to decrease between the current runtime697 * and the new runtime.698 **/699 SpecVersionNeedsToIncrease: AugmentedError<ApiType>;700 /**701 * Generic error702 **/703 [key: string]: AugmentedError<ApiType>;704 };705 tokens: {706 /**707 * Cannot convert Amount into Balance type708 **/709 AmountIntoBalanceFailed: AugmentedError<ApiType>;710 /**711 * The balance is too low712 **/713 BalanceTooLow: AugmentedError<ApiType>;714 /**715 * Beneficiary account must pre-exist716 **/717 DeadAccount: AugmentedError<ApiType>;718 /**719 * Value too low to create account due to existential deposit720 **/721 ExistentialDeposit: AugmentedError<ApiType>;722 /**723 * Transfer/payment would kill account724 **/725 KeepAlive: AugmentedError<ApiType>;726 /**727 * Failed because liquidity restrictions due to locking728 **/729 LiquidityRestrictions: AugmentedError<ApiType>;730 /**731 * Failed because the maximum locks was exceeded732 **/733 MaxLocksExceeded: AugmentedError<ApiType>;734 TooManyReserves: AugmentedError<ApiType>;735 /**736 * Generic error737 **/738 [key: string]: AugmentedError<ApiType>;739 };740 treasury: {741 /**742 * The spend origin is valid but the amount it is allowed to spend is lower than the743 * amount to be spent.744 **/745 InsufficientPermission: AugmentedError<ApiType>;746 /**747 * Proposer's balance is too low.748 **/749 InsufficientProposersBalance: AugmentedError<ApiType>;750 /**751 * No proposal or bounty at that index.752 **/753 InvalidIndex: AugmentedError<ApiType>;754 /**755 * Proposal has not been approved.756 **/757 ProposalNotApproved: AugmentedError<ApiType>;758 /**759 * Too many approvals in the queue.760 **/761 TooManyApprovals: AugmentedError<ApiType>;762 /**763 * Generic error764 **/765 [key: string]: AugmentedError<ApiType>;766 };767 unique: {768 /**769 * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].770 **/771 CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;772 /**773 * This address is not set as sponsor, use setCollectionSponsor first.774 **/775 ConfirmUnsetSponsorFail: AugmentedError<ApiType>;776 /**777 * Length of items properties must be greater than 0.778 **/779 EmptyArgument: AugmentedError<ApiType>;780 /**781 * Repertition is only supported by refungible collection.782 **/783 RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;784 /**785 * Generic error786 **/787 [key: string]: AugmentedError<ApiType>;788 };789 vesting: {790 /**791 * The vested transfer amount is too low792 **/793 AmountLow: AugmentedError<ApiType>;794 /**795 * Insufficient amount of balance to lock796 **/797 InsufficientBalanceToLock: AugmentedError<ApiType>;798 /**799 * Failed because the maximum vesting schedules was exceeded800 **/801 MaxVestingSchedulesExceeded: AugmentedError<ApiType>;802 /**803 * This account have too many vesting schedules804 **/805 TooManyVestingSchedules: AugmentedError<ApiType>;806 /**807 * Vesting period is zero808 **/809 ZeroVestingPeriod: AugmentedError<ApiType>;810 /**811 * Number of vests is zero812 **/813 ZeroVestingPeriodCount: AugmentedError<ApiType>;814 /**815 * Generic error816 **/817 [key: string]: AugmentedError<ApiType>;818 };819 xcmpQueue: {820 /**821 * Bad overweight index.822 **/823 BadOverweightIndex: AugmentedError<ApiType>;824 /**825 * Bad XCM data.826 **/827 BadXcm: AugmentedError<ApiType>;828 /**829 * Bad XCM origin.830 **/831 BadXcmOrigin: AugmentedError<ApiType>;832 /**833 * Failed to send XCM message.834 **/835 FailedToSend: AugmentedError<ApiType>;836 /**837 * Provided weight is possibly not enough to execute the message.838 **/839 WeightOverLimit: AugmentedError<ApiType>;840 /**841 * Generic error842 **/843 [key: string]: AugmentedError<ApiType>;844 };845 xTokens: {846 /**847 * Asset has no reserve location.848 **/849 AssetHasNoReserve: AugmentedError<ApiType>;850 /**851 * The specified index does not exist in a MultiAssets struct.852 **/853 AssetIndexNonExistent: AugmentedError<ApiType>;854 /**855 * The version of the `Versioned` value used is not able to be856 * interpreted.857 **/858 BadVersion: AugmentedError<ApiType>;859 /**860 * Could not re-anchor the assets to declare the fees for the861 * destination chain.862 **/863 CannotReanchor: AugmentedError<ApiType>;864 /**865 * The destination `MultiLocation` provided cannot be inverted.866 **/867 DestinationNotInvertible: AugmentedError<ApiType>;868 /**869 * We tried sending distinct asset and fee but they have different870 * reserve chains.871 **/872 DistinctReserveForAssetAndFee: AugmentedError<ApiType>;873 /**874 * Fee is not enough.875 **/876 FeeNotEnough: AugmentedError<ApiType>;877 /**878 * Could not get ancestry of asset reserve location.879 **/880 InvalidAncestry: AugmentedError<ApiType>;881 /**882 * The MultiAsset is invalid.883 **/884 InvalidAsset: AugmentedError<ApiType>;885 /**886 * Invalid transfer destination.887 **/888 InvalidDest: AugmentedError<ApiType>;889 /**890 * MinXcmFee not registered for certain reserve location891 **/892 MinXcmFeeNotDefined: AugmentedError<ApiType>;893 /**894 * Not cross-chain transfer.895 **/896 NotCrossChainTransfer: AugmentedError<ApiType>;897 /**898 * Currency is not cross-chain transferable.899 **/900 NotCrossChainTransferableCurrency: AugmentedError<ApiType>;901 /**902 * Not supported MultiLocation903 **/904 NotSupportedMultiLocation: AugmentedError<ApiType>;905 /**906 * The number of assets to be sent is over the maximum.907 **/908 TooManyAssetsBeingSent: AugmentedError<ApiType>;909 /**910 * The message's weight could not be determined.911 **/912 UnweighableMessage: AugmentedError<ApiType>;913 /**914 * XCM execution failed.915 **/916 XcmExecutionFailed: AugmentedError<ApiType>;917 /**918 * The transfering asset amount is zero.919 **/920 ZeroAmount: AugmentedError<ApiType>;921 /**922 * The fee is zero.923 **/924 ZeroFee: AugmentedError<ApiType>;925 /**926 * Generic error927 **/928 [key: string]: AugmentedError<ApiType>;929 };930 } // AugmentedErrors931} // declare moduledifftreelog
source
tests/src/interfaces/augment-api-errors.ts28.1 KiBsourcehistory