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 * Generic error307 **/308 [key: string]: AugmentedError<ApiType>;309 };310 evmMigration: {311 /**312 * Migration of this account is not yet started, or already finished.313 **/314 AccountIsNotMigrating: AugmentedError<ApiType>;315 /**316 * Can only migrate to empty address.317 **/318 AccountNotEmpty: AugmentedError<ApiType>;319 /**320 * Generic error321 **/322 [key: string]: AugmentedError<ApiType>;323 };324 foreignAssets: {325 /**326 * AssetId exists327 **/328 AssetIdExisted: AugmentedError<ApiType>;329 /**330 * AssetId not exists331 **/332 AssetIdNotExists: AugmentedError<ApiType>;333 /**334 * The given location could not be used (e.g. because it cannot be expressed in the335 * desired version of XCM).336 **/337 BadLocation: AugmentedError<ApiType>;338 /**339 * MultiLocation existed340 **/341 MultiLocationExisted: AugmentedError<ApiType>;342 /**343 * Generic error344 **/345 [key: string]: AugmentedError<ApiType>;346 };347 fungible: {348 /**349 * Fungible token does not support nesting.350 **/351 FungibleDisallowsNesting: AugmentedError<ApiType>;352 /**353 * Tried to set data for fungible item.354 **/355 FungibleItemsDontHaveData: AugmentedError<ApiType>;356 /**357 * Fungible tokens hold no ID, and the default value of TokenId for Fungible collection is 0.358 **/359 FungibleItemsHaveNoId: AugmentedError<ApiType>;360 /**361 * Not Fungible item data used to mint in Fungible collection.362 **/363 NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;364 /**365 * Setting item properties is not allowed.366 **/367 SettingPropertiesNotAllowed: AugmentedError<ApiType>;368 /**369 * Generic error370 **/371 [key: string]: AugmentedError<ApiType>;372 };373 nonfungible: {374 /**375 * Unable to burn NFT with children376 **/377 CantBurnNftWithChildren: AugmentedError<ApiType>;378 /**379 * Used amount > 1 with NFT380 **/381 NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;382 /**383 * Not Nonfungible item data used to mint in Nonfungible collection.384 **/385 NotNonfungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;386 /**387 * Generic error388 **/389 [key: string]: AugmentedError<ApiType>;390 };391 parachainSystem: {392 /**393 * The inherent which supplies the host configuration did not run this block394 **/395 HostConfigurationNotAvailable: AugmentedError<ApiType>;396 /**397 * No code upgrade has been authorized.398 **/399 NothingAuthorized: AugmentedError<ApiType>;400 /**401 * No validation function upgrade is currently scheduled.402 **/403 NotScheduled: AugmentedError<ApiType>;404 /**405 * Attempt to upgrade validation function while existing upgrade pending406 **/407 OverlappingUpgrades: AugmentedError<ApiType>;408 /**409 * Polkadot currently prohibits this parachain from upgrading its validation function410 **/411 ProhibitedByPolkadot: AugmentedError<ApiType>;412 /**413 * The supplied validation function has compiled into a blob larger than Polkadot is414 * willing to run415 **/416 TooBig: AugmentedError<ApiType>;417 /**418 * The given code upgrade has not been authorized.419 **/420 Unauthorized: AugmentedError<ApiType>;421 /**422 * The inherent which supplies the validation data did not run this block423 **/424 ValidationDataNotAvailable: AugmentedError<ApiType>;425 /**426 * Generic error427 **/428 [key: string]: AugmentedError<ApiType>;429 };430 polkadotXcm: {431 /**432 * The location is invalid since it already has a subscription from us.433 **/434 AlreadySubscribed: AugmentedError<ApiType>;435 /**436 * The given location could not be used (e.g. because it cannot be expressed in the437 * desired version of XCM).438 **/439 BadLocation: AugmentedError<ApiType>;440 /**441 * The version of the `Versioned` value used is not able to be interpreted.442 **/443 BadVersion: AugmentedError<ApiType>;444 /**445 * Could not re-anchor the assets to declare the fees for the destination chain.446 **/447 CannotReanchor: AugmentedError<ApiType>;448 /**449 * The destination `MultiLocation` provided cannot be inverted.450 **/451 DestinationNotInvertible: AugmentedError<ApiType>;452 /**453 * The assets to be sent are empty.454 **/455 Empty: AugmentedError<ApiType>;456 /**457 * The message execution fails the filter.458 **/459 Filtered: AugmentedError<ApiType>;460 /**461 * Origin is invalid for sending.462 **/463 InvalidOrigin: AugmentedError<ApiType>;464 /**465 * The referenced subscription could not be found.466 **/467 NoSubscription: AugmentedError<ApiType>;468 /**469 * There was some other issue (i.e. not to do with routing) in sending the message. Perhaps470 * a lack of space for buffering the message.471 **/472 SendFailure: AugmentedError<ApiType>;473 /**474 * Too many assets have been attempted for transfer.475 **/476 TooManyAssets: AugmentedError<ApiType>;477 /**478 * The desired destination was unreachable, generally because there is a no way of routing479 * to it.480 **/481 Unreachable: AugmentedError<ApiType>;482 /**483 * The message's weight could not be determined.484 **/485 UnweighableMessage: AugmentedError<ApiType>;486 /**487 * Generic error488 **/489 [key: string]: AugmentedError<ApiType>;490 };491 refungible: {492 /**493 * Not Refungible item data used to mint in Refungible collection.494 **/495 NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;496 /**497 * Refungible token can't nest other tokens.498 **/499 RefungibleDisallowsNesting: AugmentedError<ApiType>;500 /**501 * Refungible token can't be repartitioned by user who isn't owns all pieces.502 **/503 RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;504 /**505 * Setting item properties is not allowed.506 **/507 SettingPropertiesNotAllowed: AugmentedError<ApiType>;508 /**509 * Maximum refungibility exceeded.510 **/511 WrongRefungiblePieces: AugmentedError<ApiType>;512 /**513 * Generic error514 **/515 [key: string]: AugmentedError<ApiType>;516 };517 rmrkCore: {518 /**519 * Not the target owner of the sent NFT.520 **/521 CannotAcceptNonOwnedNft: AugmentedError<ApiType>;522 /**523 * Not the target owner of the sent NFT.524 **/525 CannotRejectNonOwnedNft: AugmentedError<ApiType>;526 /**527 * NFT was not sent and is not pending.528 **/529 CannotRejectNonPendingNft: AugmentedError<ApiType>;530 /**531 * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.532 * Sending to self is redundant.533 **/534 CannotSendToDescendentOrSelf: AugmentedError<ApiType>;535 /**536 * Too many tokens created in the collection, no new ones are allowed.537 **/538 CollectionFullOrLocked: AugmentedError<ApiType>;539 /**540 * Only destroying collections without tokens is allowed.541 **/542 CollectionNotEmpty: AugmentedError<ApiType>;543 /**544 * Collection does not exist, has a wrong type, or does not map to a Unique ID.545 **/546 CollectionUnknown: AugmentedError<ApiType>;547 /**548 * Property of the type of RMRK collection could not be read successfully.549 **/550 CorruptedCollectionType: AugmentedError<ApiType>;551 /**552 * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.553 **/554 NoAvailableCollectionId: AugmentedError<ApiType>;555 /**556 * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.557 **/558 NoAvailableNftId: AugmentedError<ApiType>;559 /**560 * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.561 **/562 NoAvailableResourceId: AugmentedError<ApiType>;563 /**564 * Token is marked as non-transferable, and thus cannot be transferred.565 **/566 NonTransferable: AugmentedError<ApiType>;567 /**568 * No permission to perform action.569 **/570 NoPermission: AugmentedError<ApiType>;571 /**572 * No such resource found.573 **/574 ResourceDoesntExist: AugmentedError<ApiType>;575 /**576 * Resource is not pending for the operation.577 **/578 ResourceNotPending: AugmentedError<ApiType>;579 /**580 * Could not find a property by the supplied key.581 **/582 RmrkPropertyIsNotFound: AugmentedError<ApiType>;583 /**584 * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).585 **/586 RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;587 /**588 * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).589 **/590 RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;591 /**592 * Something went wrong when decoding encoded data from the storage.593 * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.594 **/595 UnableToDecodeRmrkData: AugmentedError<ApiType>;596 /**597 * Generic error598 **/599 [key: string]: AugmentedError<ApiType>;600 };601 rmrkEquip: {602 /**603 * Base collection linked to this ID does not exist.604 **/605 BaseDoesntExist: AugmentedError<ApiType>;606 /**607 * No Theme named "default" is associated with the Base.608 **/609 NeedsDefaultThemeFirst: AugmentedError<ApiType>;610 /**611 * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.612 **/613 NoAvailableBaseId: AugmentedError<ApiType>;614 /**615 * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow616 **/617 NoAvailablePartId: AugmentedError<ApiType>;618 /**619 * Cannot assign equippables to a fixed Part.620 **/621 NoEquippableOnFixedPart: AugmentedError<ApiType>;622 /**623 * Part linked to this ID does not exist.624 **/625 PartDoesntExist: AugmentedError<ApiType>;626 /**627 * No permission to perform action.628 **/629 PermissionError: AugmentedError<ApiType>;630 /**631 * Generic error632 **/633 [key: string]: AugmentedError<ApiType>;634 };635 scheduler: {636 /**637 * Failed to schedule a call638 **/639 FailedToSchedule: AugmentedError<ApiType>;640 /**641 * Cannot find the scheduled call.642 **/643 NotFound: AugmentedError<ApiType>;644 /**645 * Reschedule failed because it does not change scheduled time.646 **/647 RescheduleNoChange: AugmentedError<ApiType>;648 /**649 * Given target block number is in the past.650 **/651 TargetBlockNumberInPast: AugmentedError<ApiType>;652 /**653 * Generic error654 **/655 [key: string]: AugmentedError<ApiType>;656 };657 structure: {658 /**659 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.660 **/661 BreadthLimit: AugmentedError<ApiType>;662 /**663 * While nesting, reached the depth limit of nesting, exceeding the provided budget.664 **/665 DepthLimit: AugmentedError<ApiType>;666 /**667 * While nesting, encountered an already checked account, detecting a loop.668 **/669 OuroborosDetected: AugmentedError<ApiType>;670 /**671 * Couldn't find the token owner that is itself a token.672 **/673 TokenNotFound: AugmentedError<ApiType>;674 /**675 * Generic error676 **/677 [key: string]: AugmentedError<ApiType>;678 };679 sudo: {680 /**681 * Sender must be the Sudo account682 **/683 RequireSudo: AugmentedError<ApiType>;684 /**685 * Generic error686 **/687 [key: string]: AugmentedError<ApiType>;688 };689 system: {690 /**691 * The origin filter prevent the call to be dispatched.692 **/693 CallFiltered: AugmentedError<ApiType>;694 /**695 * Failed to extract the runtime version from the new runtime.696 * 697 * Either calling `Core_version` or decoding `RuntimeVersion` failed.698 **/699 FailedToExtractRuntimeVersion: AugmentedError<ApiType>;700 /**701 * The name of specification does not match between the current runtime702 * and the new runtime.703 **/704 InvalidSpecName: AugmentedError<ApiType>;705 /**706 * Suicide called when the account has non-default composite data.707 **/708 NonDefaultComposite: AugmentedError<ApiType>;709 /**710 * There is a non-zero reference count preventing the account from being purged.711 **/712 NonZeroRefCount: AugmentedError<ApiType>;713 /**714 * The specification version is not allowed to decrease between the current runtime715 * and the new runtime.716 **/717 SpecVersionNeedsToIncrease: AugmentedError<ApiType>;718 /**719 * Generic error720 **/721 [key: string]: AugmentedError<ApiType>;722 };723 tokens: {724 /**725 * Cannot convert Amount into Balance type726 **/727 AmountIntoBalanceFailed: AugmentedError<ApiType>;728 /**729 * The balance is too low730 **/731 BalanceTooLow: AugmentedError<ApiType>;732 /**733 * Beneficiary account must pre-exist734 **/735 DeadAccount: AugmentedError<ApiType>;736 /**737 * Value too low to create account due to existential deposit738 **/739 ExistentialDeposit: AugmentedError<ApiType>;740 /**741 * Transfer/payment would kill account742 **/743 KeepAlive: AugmentedError<ApiType>;744 /**745 * Failed because liquidity restrictions due to locking746 **/747 LiquidityRestrictions: AugmentedError<ApiType>;748 /**749 * Failed because the maximum locks was exceeded750 **/751 MaxLocksExceeded: AugmentedError<ApiType>;752 TooManyReserves: AugmentedError<ApiType>;753 /**754 * Generic error755 **/756 [key: string]: AugmentedError<ApiType>;757 };758 treasury: {759 /**760 * The spend origin is valid but the amount it is allowed to spend is lower than the761 * amount to be spent.762 **/763 InsufficientPermission: AugmentedError<ApiType>;764 /**765 * Proposer's balance is too low.766 **/767 InsufficientProposersBalance: AugmentedError<ApiType>;768 /**769 * No proposal or bounty at that index.770 **/771 InvalidIndex: AugmentedError<ApiType>;772 /**773 * Proposal has not been approved.774 **/775 ProposalNotApproved: AugmentedError<ApiType>;776 /**777 * Too many approvals in the queue.778 **/779 TooManyApprovals: AugmentedError<ApiType>;780 /**781 * Generic error782 **/783 [key: string]: AugmentedError<ApiType>;784 };785 unique: {786 /**787 * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].788 **/789 CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;790 /**791 * This address is not set as sponsor, use setCollectionSponsor first.792 **/793 ConfirmUnsetSponsorFail: AugmentedError<ApiType>;794 /**795 * Length of items properties must be greater than 0.796 **/797 EmptyArgument: AugmentedError<ApiType>;798 /**799 * Repertition is only supported by refungible collection.800 **/801 RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;802 /**803 * Generic error804 **/805 [key: string]: AugmentedError<ApiType>;806 };807 vesting: {808 /**809 * The vested transfer amount is too low810 **/811 AmountLow: AugmentedError<ApiType>;812 /**813 * Insufficient amount of balance to lock814 **/815 InsufficientBalanceToLock: AugmentedError<ApiType>;816 /**817 * Failed because the maximum vesting schedules was exceeded818 **/819 MaxVestingSchedulesExceeded: AugmentedError<ApiType>;820 /**821 * This account have too many vesting schedules822 **/823 TooManyVestingSchedules: AugmentedError<ApiType>;824 /**825 * Vesting period is zero826 **/827 ZeroVestingPeriod: AugmentedError<ApiType>;828 /**829 * Number of vests is zero830 **/831 ZeroVestingPeriodCount: AugmentedError<ApiType>;832 /**833 * Generic error834 **/835 [key: string]: AugmentedError<ApiType>;836 };837 xcmpQueue: {838 /**839 * Bad overweight index.840 **/841 BadOverweightIndex: AugmentedError<ApiType>;842 /**843 * Bad XCM data.844 **/845 BadXcm: AugmentedError<ApiType>;846 /**847 * Bad XCM origin.848 **/849 BadXcmOrigin: AugmentedError<ApiType>;850 /**851 * Failed to send XCM message.852 **/853 FailedToSend: AugmentedError<ApiType>;854 /**855 * Provided weight is possibly not enough to execute the message.856 **/857 WeightOverLimit: AugmentedError<ApiType>;858 /**859 * Generic error860 **/861 [key: string]: AugmentedError<ApiType>;862 };863 xTokens: {864 /**865 * Asset has no reserve location.866 **/867 AssetHasNoReserve: AugmentedError<ApiType>;868 /**869 * The specified index does not exist in a MultiAssets struct.870 **/871 AssetIndexNonExistent: AugmentedError<ApiType>;872 /**873 * The version of the `Versioned` value used is not able to be874 * interpreted.875 **/876 BadVersion: AugmentedError<ApiType>;877 /**878 * Could not re-anchor the assets to declare the fees for the879 * destination chain.880 **/881 CannotReanchor: AugmentedError<ApiType>;882 /**883 * The destination `MultiLocation` provided cannot be inverted.884 **/885 DestinationNotInvertible: AugmentedError<ApiType>;886 /**887 * We tried sending distinct asset and fee but they have different888 * reserve chains.889 **/890 DistinctReserveForAssetAndFee: AugmentedError<ApiType>;891 /**892 * Fee is not enough.893 **/894 FeeNotEnough: AugmentedError<ApiType>;895 /**896 * Could not get ancestry of asset reserve location.897 **/898 InvalidAncestry: AugmentedError<ApiType>;899 /**900 * The MultiAsset is invalid.901 **/902 InvalidAsset: AugmentedError<ApiType>;903 /**904 * Invalid transfer destination.905 **/906 InvalidDest: AugmentedError<ApiType>;907 /**908 * MinXcmFee not registered for certain reserve location909 **/910 MinXcmFeeNotDefined: AugmentedError<ApiType>;911 /**912 * Not cross-chain transfer.913 **/914 NotCrossChainTransfer: AugmentedError<ApiType>;915 /**916 * Currency is not cross-chain transferable.917 **/918 NotCrossChainTransferableCurrency: AugmentedError<ApiType>;919 /**920 * Not supported MultiLocation921 **/922 NotSupportedMultiLocation: AugmentedError<ApiType>;923 /**924 * The number of assets to be sent is over the maximum.925 **/926 TooManyAssetsBeingSent: AugmentedError<ApiType>;927 /**928 * The message's weight could not be determined.929 **/930 UnweighableMessage: AugmentedError<ApiType>;931 /**932 * XCM execution failed.933 **/934 XcmExecutionFailed: AugmentedError<ApiType>;935 /**936 * The transfering asset amount is zero.937 **/938 ZeroAmount: AugmentedError<ApiType>;939 /**940 * The fee is zero.941 **/942 ZeroFee: AugmentedError<ApiType>;943 /**944 * Generic error945 **/946 [key: string]: AugmentedError<ApiType>;947 };948 } // AugmentedErrors949} // declare moduledifftreelog
source
tests/src/interfaces/augment-api-errors.ts28.6 KiBsourcehistory