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 * Failed to decode event bytes341 **/342 BadEvent: AugmentedError<ApiType>;343 /**344 * Generic error345 **/346 [key: string]: AugmentedError<ApiType>;347 };348 foreignAssets: {349 /**350 * AssetId exists351 **/352 AssetIdExisted: AugmentedError<ApiType>;353 /**354 * AssetId not exists355 **/356 AssetIdNotExists: AugmentedError<ApiType>;357 /**358 * The given location could not be used (e.g. because it cannot be expressed in the359 * desired version of XCM).360 **/361 BadLocation: AugmentedError<ApiType>;362 /**363 * MultiLocation existed364 **/365 MultiLocationExisted: AugmentedError<ApiType>;366 /**367 * Generic error368 **/369 [key: string]: AugmentedError<ApiType>;370 };371 fungible: {372 /**373 * Fungible token does not support nesting.374 **/375 FungibleDisallowsNesting: AugmentedError<ApiType>;376 /**377 * Tried to set data for fungible item.378 **/379 FungibleItemsDontHaveData: AugmentedError<ApiType>;380 /**381 * Fungible tokens hold no ID, and the default value of TokenId for Fungible collection is 0.382 **/383 FungibleItemsHaveNoId: AugmentedError<ApiType>;384 /**385 * Not Fungible item data used to mint in Fungible collection.386 **/387 NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;388 /**389 * Setting approval for all is not allowed.390 **/391 SettingApprovalForAllNotAllowed: AugmentedError<ApiType>;392 /**393 * Setting item properties is not allowed.394 **/395 SettingPropertiesNotAllowed: AugmentedError<ApiType>;396 /**397 * Generic error398 **/399 [key: string]: AugmentedError<ApiType>;400 };401 maintenance: {402 /**403 * Generic error404 **/405 [key: string]: AugmentedError<ApiType>;406 };407 nonfungible: {408 /**409 * Unable to burn NFT with children410 **/411 CantBurnNftWithChildren: AugmentedError<ApiType>;412 /**413 * Used amount > 1 with NFT414 **/415 NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;416 /**417 * Not Nonfungible item data used to mint in Nonfungible collection.418 **/419 NotNonfungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;420 /**421 * Generic error422 **/423 [key: string]: AugmentedError<ApiType>;424 };425 parachainSystem: {426 /**427 * The inherent which supplies the host configuration did not run this block428 **/429 HostConfigurationNotAvailable: AugmentedError<ApiType>;430 /**431 * No code upgrade has been authorized.432 **/433 NothingAuthorized: AugmentedError<ApiType>;434 /**435 * No validation function upgrade is currently scheduled.436 **/437 NotScheduled: AugmentedError<ApiType>;438 /**439 * Attempt to upgrade validation function while existing upgrade pending440 **/441 OverlappingUpgrades: AugmentedError<ApiType>;442 /**443 * Polkadot currently prohibits this parachain from upgrading its validation function444 **/445 ProhibitedByPolkadot: AugmentedError<ApiType>;446 /**447 * The supplied validation function has compiled into a blob larger than Polkadot is448 * willing to run449 **/450 TooBig: AugmentedError<ApiType>;451 /**452 * The given code upgrade has not been authorized.453 **/454 Unauthorized: AugmentedError<ApiType>;455 /**456 * The inherent which supplies the validation data did not run this block457 **/458 ValidationDataNotAvailable: AugmentedError<ApiType>;459 /**460 * Generic error461 **/462 [key: string]: AugmentedError<ApiType>;463 };464 polkadotXcm: {465 /**466 * The location is invalid since it already has a subscription from us.467 **/468 AlreadySubscribed: AugmentedError<ApiType>;469 /**470 * The given location could not be used (e.g. because it cannot be expressed in the471 * desired version of XCM).472 **/473 BadLocation: AugmentedError<ApiType>;474 /**475 * The version of the `Versioned` value used is not able to be interpreted.476 **/477 BadVersion: AugmentedError<ApiType>;478 /**479 * Could not re-anchor the assets to declare the fees for the destination chain.480 **/481 CannotReanchor: AugmentedError<ApiType>;482 /**483 * The destination `MultiLocation` provided cannot be inverted.484 **/485 DestinationNotInvertible: AugmentedError<ApiType>;486 /**487 * The assets to be sent are empty.488 **/489 Empty: AugmentedError<ApiType>;490 /**491 * The message execution fails the filter.492 **/493 Filtered: AugmentedError<ApiType>;494 /**495 * Origin is invalid for sending.496 **/497 InvalidOrigin: AugmentedError<ApiType>;498 /**499 * The referenced subscription could not be found.500 **/501 NoSubscription: AugmentedError<ApiType>;502 /**503 * There was some other issue (i.e. not to do with routing) in sending the message. Perhaps504 * a lack of space for buffering the message.505 **/506 SendFailure: AugmentedError<ApiType>;507 /**508 * Too many assets have been attempted for transfer.509 **/510 TooManyAssets: AugmentedError<ApiType>;511 /**512 * The desired destination was unreachable, generally because there is a no way of routing513 * to it.514 **/515 Unreachable: AugmentedError<ApiType>;516 /**517 * The message's weight could not be determined.518 **/519 UnweighableMessage: AugmentedError<ApiType>;520 /**521 * Generic error522 **/523 [key: string]: AugmentedError<ApiType>;524 };525 refungible: {526 /**527 * Not Refungible item data used to mint in Refungible collection.528 **/529 NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;530 /**531 * Refungible token can't nest other tokens.532 **/533 RefungibleDisallowsNesting: AugmentedError<ApiType>;534 /**535 * Refungible token can't be repartitioned by user who isn't owns all pieces.536 **/537 RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;538 /**539 * Setting item properties is not allowed.540 **/541 SettingPropertiesNotAllowed: AugmentedError<ApiType>;542 /**543 * Maximum refungibility exceeded.544 **/545 WrongRefungiblePieces: AugmentedError<ApiType>;546 /**547 * Generic error548 **/549 [key: string]: AugmentedError<ApiType>;550 };551 rmrkCore: {552 /**553 * Not the target owner of the sent NFT.554 **/555 CannotAcceptNonOwnedNft: AugmentedError<ApiType>;556 /**557 * Not the target owner of the sent NFT.558 **/559 CannotRejectNonOwnedNft: AugmentedError<ApiType>;560 /**561 * NFT was not sent and is not pending.562 **/563 CannotRejectNonPendingNft: AugmentedError<ApiType>;564 /**565 * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.566 * Sending to self is redundant.567 **/568 CannotSendToDescendentOrSelf: AugmentedError<ApiType>;569 /**570 * Too many tokens created in the collection, no new ones are allowed.571 **/572 CollectionFullOrLocked: AugmentedError<ApiType>;573 /**574 * Only destroying collections without tokens is allowed.575 **/576 CollectionNotEmpty: AugmentedError<ApiType>;577 /**578 * Collection does not exist, has a wrong type, or does not map to a Unique ID.579 **/580 CollectionUnknown: AugmentedError<ApiType>;581 /**582 * Property of the type of RMRK collection could not be read successfully.583 **/584 CorruptedCollectionType: AugmentedError<ApiType>;585 /**586 * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.587 **/588 NoAvailableCollectionId: AugmentedError<ApiType>;589 /**590 * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.591 **/592 NoAvailableNftId: AugmentedError<ApiType>;593 /**594 * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.595 **/596 NoAvailableResourceId: AugmentedError<ApiType>;597 /**598 * Token is marked as non-transferable, and thus cannot be transferred.599 **/600 NonTransferable: AugmentedError<ApiType>;601 /**602 * No permission to perform action.603 **/604 NoPermission: AugmentedError<ApiType>;605 /**606 * No such resource found.607 **/608 ResourceDoesntExist: AugmentedError<ApiType>;609 /**610 * Resource is not pending for the operation.611 **/612 ResourceNotPending: AugmentedError<ApiType>;613 /**614 * Could not find a property by the supplied key.615 **/616 RmrkPropertyIsNotFound: AugmentedError<ApiType>;617 /**618 * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).619 **/620 RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;621 /**622 * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).623 **/624 RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;625 /**626 * Something went wrong when decoding encoded data from the storage.627 * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.628 **/629 UnableToDecodeRmrkData: AugmentedError<ApiType>;630 /**631 * Generic error632 **/633 [key: string]: AugmentedError<ApiType>;634 };635 rmrkEquip: {636 /**637 * Base collection linked to this ID does not exist.638 **/639 BaseDoesntExist: AugmentedError<ApiType>;640 /**641 * No Theme named "default" is associated with the Base.642 **/643 NeedsDefaultThemeFirst: AugmentedError<ApiType>;644 /**645 * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.646 **/647 NoAvailableBaseId: AugmentedError<ApiType>;648 /**649 * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow650 **/651 NoAvailablePartId: AugmentedError<ApiType>;652 /**653 * Cannot assign equippables to a fixed Part.654 **/655 NoEquippableOnFixedPart: AugmentedError<ApiType>;656 /**657 * Part linked to this ID does not exist.658 **/659 PartDoesntExist: AugmentedError<ApiType>;660 /**661 * No permission to perform action.662 **/663 PermissionError: AugmentedError<ApiType>;664 /**665 * Generic error666 **/667 [key: string]: AugmentedError<ApiType>;668 };669 scheduler: {670 /**671 * There is no place for a new task in the agenda672 **/673 AgendaIsExhausted: AugmentedError<ApiType>;674 /**675 * Failed to schedule a call676 **/677 FailedToSchedule: AugmentedError<ApiType>;678 /**679 * Attempt to use a non-named function on a named task.680 **/681 Named: AugmentedError<ApiType>;682 /**683 * Cannot find the scheduled call.684 **/685 NotFound: AugmentedError<ApiType>;686 /**687 * Scheduled call preimage is not found688 **/689 PreimageNotFound: AugmentedError<ApiType>;690 /**691 * Scheduled call is corrupted692 **/693 ScheduledCallCorrupted: AugmentedError<ApiType>;694 /**695 * Given target block number is in the past.696 **/697 TargetBlockNumberInPast: AugmentedError<ApiType>;698 /**699 * Scheduled call is too big700 **/701 TooBigScheduledCall: AugmentedError<ApiType>;702 /**703 * Generic error704 **/705 [key: string]: AugmentedError<ApiType>;706 };707 structure: {708 /**709 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.710 **/711 BreadthLimit: AugmentedError<ApiType>;712 /**713 * While nesting, reached the depth limit of nesting, exceeding the provided budget.714 **/715 DepthLimit: AugmentedError<ApiType>;716 /**717 * While nesting, encountered an already checked account, detecting a loop.718 **/719 OuroborosDetected: AugmentedError<ApiType>;720 /**721 * Couldn't find the token owner that is itself a token.722 **/723 TokenNotFound: AugmentedError<ApiType>;724 /**725 * Generic error726 **/727 [key: string]: AugmentedError<ApiType>;728 };729 sudo: {730 /**731 * Sender must be the Sudo account732 **/733 RequireSudo: AugmentedError<ApiType>;734 /**735 * Generic error736 **/737 [key: string]: AugmentedError<ApiType>;738 };739 system: {740 /**741 * The origin filter prevent the call to be dispatched.742 **/743 CallFiltered: AugmentedError<ApiType>;744 /**745 * Failed to extract the runtime version from the new runtime.746 * 747 * Either calling `Core_version` or decoding `RuntimeVersion` failed.748 **/749 FailedToExtractRuntimeVersion: AugmentedError<ApiType>;750 /**751 * The name of specification does not match between the current runtime752 * and the new runtime.753 **/754 InvalidSpecName: AugmentedError<ApiType>;755 /**756 * Suicide called when the account has non-default composite data.757 **/758 NonDefaultComposite: AugmentedError<ApiType>;759 /**760 * There is a non-zero reference count preventing the account from being purged.761 **/762 NonZeroRefCount: AugmentedError<ApiType>;763 /**764 * The specification version is not allowed to decrease between the current runtime765 * and the new runtime.766 **/767 SpecVersionNeedsToIncrease: AugmentedError<ApiType>;768 /**769 * Generic error770 **/771 [key: string]: AugmentedError<ApiType>;772 };773 testUtils: {774 TestPalletDisabled: AugmentedError<ApiType>;775 TriggerRollback: AugmentedError<ApiType>;776 /**777 * Generic error778 **/779 [key: string]: AugmentedError<ApiType>;780 };781 tokens: {782 /**783 * Cannot convert Amount into Balance type784 **/785 AmountIntoBalanceFailed: AugmentedError<ApiType>;786 /**787 * The balance is too low788 **/789 BalanceTooLow: AugmentedError<ApiType>;790 /**791 * Beneficiary account must pre-exist792 **/793 DeadAccount: AugmentedError<ApiType>;794 /**795 * Value too low to create account due to existential deposit796 **/797 ExistentialDeposit: AugmentedError<ApiType>;798 /**799 * Transfer/payment would kill account800 **/801 KeepAlive: AugmentedError<ApiType>;802 /**803 * Failed because liquidity restrictions due to locking804 **/805 LiquidityRestrictions: AugmentedError<ApiType>;806 /**807 * Failed because the maximum locks was exceeded808 **/809 MaxLocksExceeded: AugmentedError<ApiType>;810 TooManyReserves: AugmentedError<ApiType>;811 /**812 * Generic error813 **/814 [key: string]: AugmentedError<ApiType>;815 };816 treasury: {817 /**818 * The spend origin is valid but the amount it is allowed to spend is lower than the819 * amount to be spent.820 **/821 InsufficientPermission: AugmentedError<ApiType>;822 /**823 * Proposer's balance is too low.824 **/825 InsufficientProposersBalance: AugmentedError<ApiType>;826 /**827 * No proposal or bounty at that index.828 **/829 InvalidIndex: AugmentedError<ApiType>;830 /**831 * Proposal has not been approved.832 **/833 ProposalNotApproved: AugmentedError<ApiType>;834 /**835 * Too many approvals in the queue.836 **/837 TooManyApprovals: AugmentedError<ApiType>;838 /**839 * Generic error840 **/841 [key: string]: AugmentedError<ApiType>;842 };843 unique: {844 /**845 * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].846 **/847 CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;848 /**849 * This address is not set as sponsor, use setCollectionSponsor first.850 **/851 ConfirmUnsetSponsorFail: AugmentedError<ApiType>;852 /**853 * Length of items properties must be greater than 0.854 **/855 EmptyArgument: AugmentedError<ApiType>;856 /**857 * Repertition is only supported by refungible collection.858 **/859 RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;860 /**861 * Generic error862 **/863 [key: string]: AugmentedError<ApiType>;864 };865 vesting: {866 /**867 * The vested transfer amount is too low868 **/869 AmountLow: AugmentedError<ApiType>;870 /**871 * Insufficient amount of balance to lock872 **/873 InsufficientBalanceToLock: AugmentedError<ApiType>;874 /**875 * Failed because the maximum vesting schedules was exceeded876 **/877 MaxVestingSchedulesExceeded: AugmentedError<ApiType>;878 /**879 * This account have too many vesting schedules880 **/881 TooManyVestingSchedules: AugmentedError<ApiType>;882 /**883 * Vesting period is zero884 **/885 ZeroVestingPeriod: AugmentedError<ApiType>;886 /**887 * Number of vests is zero888 **/889 ZeroVestingPeriodCount: AugmentedError<ApiType>;890 /**891 * Generic error892 **/893 [key: string]: AugmentedError<ApiType>;894 };895 xcmpQueue: {896 /**897 * Bad overweight index.898 **/899 BadOverweightIndex: AugmentedError<ApiType>;900 /**901 * Bad XCM data.902 **/903 BadXcm: AugmentedError<ApiType>;904 /**905 * Bad XCM origin.906 **/907 BadXcmOrigin: AugmentedError<ApiType>;908 /**909 * Failed to send XCM message.910 **/911 FailedToSend: AugmentedError<ApiType>;912 /**913 * Provided weight is possibly not enough to execute the message.914 **/915 WeightOverLimit: AugmentedError<ApiType>;916 /**917 * Generic error918 **/919 [key: string]: AugmentedError<ApiType>;920 };921 xTokens: {922 /**923 * Asset has no reserve location.924 **/925 AssetHasNoReserve: AugmentedError<ApiType>;926 /**927 * The specified index does not exist in a MultiAssets struct.928 **/929 AssetIndexNonExistent: AugmentedError<ApiType>;930 /**931 * The version of the `Versioned` value used is not able to be932 * interpreted.933 **/934 BadVersion: AugmentedError<ApiType>;935 /**936 * Could not re-anchor the assets to declare the fees for the937 * destination chain.938 **/939 CannotReanchor: AugmentedError<ApiType>;940 /**941 * The destination `MultiLocation` provided cannot be inverted.942 **/943 DestinationNotInvertible: AugmentedError<ApiType>;944 /**945 * We tried sending distinct asset and fee but they have different946 * reserve chains.947 **/948 DistinctReserveForAssetAndFee: AugmentedError<ApiType>;949 /**950 * Fee is not enough.951 **/952 FeeNotEnough: AugmentedError<ApiType>;953 /**954 * Could not get ancestry of asset reserve location.955 **/956 InvalidAncestry: AugmentedError<ApiType>;957 /**958 * The MultiAsset is invalid.959 **/960 InvalidAsset: AugmentedError<ApiType>;961 /**962 * Invalid transfer destination.963 **/964 InvalidDest: AugmentedError<ApiType>;965 /**966 * MinXcmFee not registered for certain reserve location967 **/968 MinXcmFeeNotDefined: AugmentedError<ApiType>;969 /**970 * Not cross-chain transfer.971 **/972 NotCrossChainTransfer: AugmentedError<ApiType>;973 /**974 * Currency is not cross-chain transferable.975 **/976 NotCrossChainTransferableCurrency: AugmentedError<ApiType>;977 /**978 * Not supported MultiLocation979 **/980 NotSupportedMultiLocation: AugmentedError<ApiType>;981 /**982 * The number of assets to be sent is over the maximum.983 **/984 TooManyAssetsBeingSent: AugmentedError<ApiType>;985 /**986 * The message's weight could not be determined.987 **/988 UnweighableMessage: AugmentedError<ApiType>;989 /**990 * XCM execution failed.991 **/992 XcmExecutionFailed: AugmentedError<ApiType>;993 /**994 * The transfering asset amount is zero.995 **/996 ZeroAmount: AugmentedError<ApiType>;997 /**998 * The fee is zero.999 **/1000 ZeroFee: AugmentedError<ApiType>;1001 /**1002 * Generic error1003 **/1004 [key: string]: AugmentedError<ApiType>;1005 };1006 } // AugmentedErrors1007} // declare moduledifftreelog
source
tests/src/interfaces/augment-api-errors.ts30.1 KiBsourcehistory