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 authorship: {45 /**46 * The uncle is genesis.47 **/48 GenesisUncle: AugmentedError<ApiType>;49 /**50 * The uncle parent not in the chain.51 **/52 InvalidUncleParent: AugmentedError<ApiType>;53 /**54 * The uncle isn't recent enough to be included.55 **/56 OldUncle: AugmentedError<ApiType>;57 /**58 * The uncle is too high in chain.59 **/60 TooHighUncle: AugmentedError<ApiType>;61 /**62 * Too many uncles.63 **/64 TooManyUncles: AugmentedError<ApiType>;65 /**66 * The uncle is already included.67 **/68 UncleAlreadyIncluded: AugmentedError<ApiType>;69 /**70 * Uncles already set in the block.71 **/72 UnclesAlreadySet: AugmentedError<ApiType>;73 /**74 * Generic error75 **/76 [key: string]: AugmentedError<ApiType>;77 };78 balances: {79 /**80 * Beneficiary account must pre-exist81 **/82 DeadAccount: AugmentedError<ApiType>;83 /**84 * Value too low to create account due to existential deposit85 **/86 ExistentialDeposit: AugmentedError<ApiType>;87 /**88 * A vesting schedule already exists for this account89 **/90 ExistingVestingSchedule: AugmentedError<ApiType>;91 /**92 * Balance too low to send value.93 **/94 InsufficientBalance: AugmentedError<ApiType>;95 /**96 * Transfer/payment would kill account97 **/98 KeepAlive: AugmentedError<ApiType>;99 /**100 * Account liquidity restrictions prevent withdrawal101 **/102 LiquidityRestrictions: AugmentedError<ApiType>;103 /**104 * Number of named reserves exceed MaxReserves105 **/106 TooManyReserves: AugmentedError<ApiType>;107 /**108 * Vesting balance too high to send value109 **/110 VestingBalance: AugmentedError<ApiType>;111 /**112 * Generic error113 **/114 [key: string]: AugmentedError<ApiType>;115 };116 collatorSelection: {117 /**118 * User is already a candidate119 **/120 AlreadyCandidate: AugmentedError<ApiType>;121 /**122 * User already holds license to collate123 **/124 AlreadyHoldingLicense: AugmentedError<ApiType>;125 /**126 * User is already an Invulnerable127 **/128 AlreadyInvulnerable: AugmentedError<ApiType>;129 /**130 * Account has no associated validator ID131 **/132 NoAssociatedValidatorId: AugmentedError<ApiType>;133 /**134 * User does not hold a license to collate135 **/136 NoLicense: AugmentedError<ApiType>;137 /**138 * User is not a candidate139 **/140 NotCandidate: AugmentedError<ApiType>;141 /**142 * User is not an Invulnerable143 **/144 NotInvulnerable: AugmentedError<ApiType>;145 /**146 * Permission issue147 **/148 Permission: AugmentedError<ApiType>;149 /**150 * Too few invulnerables151 **/152 TooFewInvulnerables: AugmentedError<ApiType>;153 /**154 * Too many candidates155 **/156 TooManyCandidates: AugmentedError<ApiType>;157 /**158 * Too many invulnerables159 **/160 TooManyInvulnerables: AugmentedError<ApiType>;161 /**162 * Unknown error163 **/164 Unknown: AugmentedError<ApiType>;165 /**166 * Validator ID is not yet registered167 **/168 ValidatorNotRegistered: AugmentedError<ApiType>;169 /**170 * Generic error171 **/172 [key: string]: AugmentedError<ApiType>;173 };174 common: {175 /**176 * Account token limit exceeded per collection177 **/178 AccountTokenLimitExceeded: AugmentedError<ApiType>;179 /**180 * Can't transfer tokens to ethereum zero address181 **/182 AddressIsZero: AugmentedError<ApiType>;183 /**184 * Address is not in allow list.185 **/186 AddressNotInAllowlist: AugmentedError<ApiType>;187 /**188 * Requested value is more than the approved189 **/190 ApprovedValueTooLow: AugmentedError<ApiType>;191 /**192 * Tried to approve more than owned193 **/194 CantApproveMoreThanOwned: AugmentedError<ApiType>;195 /**196 * Destroying only empty collections is allowed197 **/198 CantDestroyNotEmptyCollection: AugmentedError<ApiType>;199 /**200 * Exceeded max admin count201 **/202 CollectionAdminCountExceeded: AugmentedError<ApiType>;203 /**204 * Collection description can not be longer than 255 char.205 **/206 CollectionDescriptionLimitExceeded: AugmentedError<ApiType>;207 /**208 * Tried to store more data than allowed in collection field209 **/210 CollectionFieldSizeExceeded: AugmentedError<ApiType>;211 /**212 * Tried to access an external collection with an internal API213 **/214 CollectionIsExternal: AugmentedError<ApiType>;215 /**216 * Tried to access an internal collection with an external API217 **/218 CollectionIsInternal: AugmentedError<ApiType>;219 /**220 * Collection limit bounds per collection exceeded221 **/222 CollectionLimitBoundsExceeded: AugmentedError<ApiType>;223 /**224 * Collection name can not be longer than 63 char.225 **/226 CollectionNameLimitExceeded: AugmentedError<ApiType>;227 /**228 * This collection does not exist.229 **/230 CollectionNotFound: AugmentedError<ApiType>;231 /**232 * Collection token limit exceeded233 **/234 CollectionTokenLimitExceeded: AugmentedError<ApiType>;235 /**236 * Token prefix can not be longer than 15 char.237 **/238 CollectionTokenPrefixLimitExceeded: AugmentedError<ApiType>;239 /**240 * This address is not set as sponsor, use setCollectionSponsor first.241 **/242 ConfirmSponsorshipFail: AugmentedError<ApiType>;243 /**244 * Empty property keys are forbidden245 **/246 EmptyPropertyKey: AugmentedError<ApiType>;247 /**248 * Only ASCII letters, digits, and symbols `_`, `-`, and `.` are allowed249 **/250 InvalidCharacterInPropertyKey: AugmentedError<ApiType>;251 /**252 * Metadata flag frozen253 **/254 MetadataFlagFrozen: AugmentedError<ApiType>;255 /**256 * Sender parameter and item owner must be equal.257 **/258 MustBeTokenOwner: AugmentedError<ApiType>;259 /**260 * No permission to perform action261 **/262 NoPermission: AugmentedError<ApiType>;263 /**264 * Tried to store more property data than allowed265 **/266 NoSpaceForProperty: AugmentedError<ApiType>;267 /**268 * Insufficient funds to perform an action269 **/270 NotSufficientFounds: AugmentedError<ApiType>;271 /**272 * Tried to enable permissions which are only permitted to be disabled273 **/274 OwnerPermissionsCantBeReverted: AugmentedError<ApiType>;275 /**276 * Property key is too long277 **/278 PropertyKeyIsTooLong: AugmentedError<ApiType>;279 /**280 * Tried to store more property keys than allowed281 **/282 PropertyLimitReached: AugmentedError<ApiType>;283 /**284 * Collection is not in mint mode.285 **/286 PublicMintingNotAllowed: AugmentedError<ApiType>;287 /**288 * Only tokens from specific collections may nest tokens under this one289 **/290 SourceCollectionIsNotAllowedToNest: AugmentedError<ApiType>;291 /**292 * Item does not exist293 **/294 TokenNotFound: AugmentedError<ApiType>;295 /**296 * Item is balance not enough297 **/298 TokenValueTooLow: AugmentedError<ApiType>;299 /**300 * Total collections bound exceeded.301 **/302 TotalCollectionsLimitExceeded: AugmentedError<ApiType>;303 /**304 * Collection settings not allowing items transferring305 **/306 TransferNotAllowed: AugmentedError<ApiType>;307 /**308 * The operation is not supported309 **/310 UnsupportedOperation: AugmentedError<ApiType>;311 /**312 * User does not satisfy the nesting rule313 **/314 UserIsNotAllowedToNest: AugmentedError<ApiType>;315 /**316 * The user is not an administrator.317 **/318 UserIsNotCollectionAdmin: AugmentedError<ApiType>;319 /**320 * Generic error321 **/322 [key: string]: AugmentedError<ApiType>;323 };324 configuration: {325 InconsistentConfiguration: AugmentedError<ApiType>;326 /**327 * Generic error328 **/329 [key: string]: AugmentedError<ApiType>;330 };331 cumulusXcm: {332 /**333 * Generic error334 **/335 [key: string]: AugmentedError<ApiType>;336 };337 dataManagement: {338 /**339 * Migration of this account is not yet started, or already finished.340 **/341 AccountIsNotMigrating: AugmentedError<ApiType>;342 /**343 * Can only migrate to empty address.344 **/345 AccountNotEmpty: AugmentedError<ApiType>;346 /**347 * Failed to decode event bytes348 **/349 BadEvent: AugmentedError<ApiType>;350 /**351 * Generic error352 **/353 [key: string]: AugmentedError<ApiType>;354 };355 dmpQueue: {356 /**357 * The amount of weight given is possibly not enough for executing the message.358 **/359 OverLimit: AugmentedError<ApiType>;360 /**361 * The message index given is unknown.362 **/363 Unknown: AugmentedError<ApiType>;364 /**365 * Generic error366 **/367 [key: string]: AugmentedError<ApiType>;368 };369 ethereum: {370 /**371 * Signature is invalid.372 **/373 InvalidSignature: AugmentedError<ApiType>;374 /**375 * Pre-log is present, therefore transact is not allowed.376 **/377 PreLogExists: AugmentedError<ApiType>;378 /**379 * Generic error380 **/381 [key: string]: AugmentedError<ApiType>;382 };383 evm: {384 /**385 * Not enough balance to perform action386 **/387 BalanceLow: AugmentedError<ApiType>;388 /**389 * Calculating total fee overflowed390 **/391 FeeOverflow: AugmentedError<ApiType>;392 /**393 * Gas limit is too high.394 **/395 GasLimitTooHigh: AugmentedError<ApiType>;396 /**397 * Gas limit is too low.398 **/399 GasLimitTooLow: AugmentedError<ApiType>;400 /**401 * Gas price is too low.402 **/403 GasPriceTooLow: AugmentedError<ApiType>;404 /**405 * Nonce is invalid406 **/407 InvalidNonce: AugmentedError<ApiType>;408 /**409 * Calculating total payment overflowed410 **/411 PaymentOverflow: AugmentedError<ApiType>;412 /**413 * EVM reentrancy414 **/415 Reentrancy: AugmentedError<ApiType>;416 /**417 * Undefined error.418 **/419 Undefined: AugmentedError<ApiType>;420 /**421 * Withdraw fee failed422 **/423 WithdrawFailed: AugmentedError<ApiType>;424 /**425 * Generic error426 **/427 [key: string]: AugmentedError<ApiType>;428 };429 evmCoderSubstrate: {430 OutOfFund: AugmentedError<ApiType>;431 OutOfGas: AugmentedError<ApiType>;432 /**433 * Generic error434 **/435 [key: string]: AugmentedError<ApiType>;436 };437 evmContractHelpers: {438 /**439 * No pending sponsor for contract.440 **/441 NoPendingSponsor: AugmentedError<ApiType>;442 /**443 * This method is only executable by contract owner444 **/445 NoPermission: AugmentedError<ApiType>;446 /**447 * Number of methods that sponsored limit is defined for exceeds maximum.448 **/449 TooManyMethodsHaveSponsoredLimit: AugmentedError<ApiType>;450 /**451 * Generic error452 **/453 [key: string]: AugmentedError<ApiType>;454 };455 foreignAssets: {456 /**457 * AssetId exists458 **/459 AssetIdExisted: AugmentedError<ApiType>;460 /**461 * AssetId not exists462 **/463 AssetIdNotExists: AugmentedError<ApiType>;464 /**465 * The given location could not be used (e.g. because it cannot be expressed in the466 * desired version of XCM).467 **/468 BadLocation: AugmentedError<ApiType>;469 /**470 * MultiLocation existed471 **/472 MultiLocationExisted: AugmentedError<ApiType>;473 /**474 * Generic error475 **/476 [key: string]: AugmentedError<ApiType>;477 };478 fungible: {479 /**480 * Fungible token does not support nesting.481 **/482 FungibleDisallowsNesting: AugmentedError<ApiType>;483 /**484 * Tried to set data for fungible item.485 **/486 FungibleItemsDontHaveData: AugmentedError<ApiType>;487 /**488 * Fungible tokens hold no ID, and the default value of TokenId for Fungible collection is 0.489 **/490 FungibleItemsHaveNoId: AugmentedError<ApiType>;491 /**492 * Only a fungible collection could be possibly broken; any fungible token is valid.493 **/494 FungibleTokensAreAlwaysValid: AugmentedError<ApiType>;495 /**496 * Not Fungible item data used to mint in Fungible collection.497 **/498 NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;499 /**500 * Setting allowance for all is not allowed.501 **/502 SettingAllowanceForAllNotAllowed: AugmentedError<ApiType>;503 /**504 * Setting item properties is not allowed.505 **/506 SettingPropertiesNotAllowed: AugmentedError<ApiType>;507 /**508 * Generic error509 **/510 [key: string]: AugmentedError<ApiType>;511 };512 identity: {513 /**514 * Account ID is already named.515 **/516 AlreadyClaimed: AugmentedError<ApiType>;517 /**518 * Empty index.519 **/520 EmptyIndex: AugmentedError<ApiType>;521 /**522 * Fee is changed.523 **/524 FeeChanged: AugmentedError<ApiType>;525 /**526 * The index is invalid.527 **/528 InvalidIndex: AugmentedError<ApiType>;529 /**530 * Invalid judgement.531 **/532 InvalidJudgement: AugmentedError<ApiType>;533 /**534 * The target is invalid.535 **/536 InvalidTarget: AugmentedError<ApiType>;537 /**538 * The provided judgement was for a different identity.539 **/540 JudgementForDifferentIdentity: AugmentedError<ApiType>;541 /**542 * Judgement given.543 **/544 JudgementGiven: AugmentedError<ApiType>;545 /**546 * Error that occurs when there is an issue paying for judgement.547 **/548 JudgementPaymentFailed: AugmentedError<ApiType>;549 /**550 * No identity found.551 **/552 NoIdentity: AugmentedError<ApiType>;553 /**554 * Account isn't found.555 **/556 NotFound: AugmentedError<ApiType>;557 /**558 * Account isn't named.559 **/560 NotNamed: AugmentedError<ApiType>;561 /**562 * Sub-account isn't owned by sender.563 **/564 NotOwned: AugmentedError<ApiType>;565 /**566 * Sender is not a sub-account.567 **/568 NotSub: AugmentedError<ApiType>;569 /**570 * Sticky judgement.571 **/572 StickyJudgement: AugmentedError<ApiType>;573 /**574 * Too many additional fields.575 **/576 TooManyFields: AugmentedError<ApiType>;577 /**578 * Maximum amount of registrars reached. Cannot add any more.579 **/580 TooManyRegistrars: AugmentedError<ApiType>;581 /**582 * Too many subs-accounts.583 **/584 TooManySubAccounts: AugmentedError<ApiType>;585 /**586 * Generic error587 **/588 [key: string]: AugmentedError<ApiType>;589 };590 maintenance: {591 /**592 * Generic error593 **/594 [key: string]: AugmentedError<ApiType>;595 };596 nonfungible: {597 /**598 * Unable to burn NFT with children599 **/600 CantBurnNftWithChildren: AugmentedError<ApiType>;601 /**602 * Used amount > 1 with NFT603 **/604 NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;605 /**606 * Not Nonfungible item data used to mint in Nonfungible collection.607 **/608 NotNonfungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;609 /**610 * Generic error611 **/612 [key: string]: AugmentedError<ApiType>;613 };614 parachainSystem: {615 /**616 * The inherent which supplies the host configuration did not run this block617 **/618 HostConfigurationNotAvailable: AugmentedError<ApiType>;619 /**620 * No code upgrade has been authorized.621 **/622 NothingAuthorized: AugmentedError<ApiType>;623 /**624 * No validation function upgrade is currently scheduled.625 **/626 NotScheduled: AugmentedError<ApiType>;627 /**628 * Attempt to upgrade validation function while existing upgrade pending629 **/630 OverlappingUpgrades: AugmentedError<ApiType>;631 /**632 * Polkadot currently prohibits this parachain from upgrading its validation function633 **/634 ProhibitedByPolkadot: AugmentedError<ApiType>;635 /**636 * The supplied validation function has compiled into a blob larger than Polkadot is637 * willing to run638 **/639 TooBig: AugmentedError<ApiType>;640 /**641 * The given code upgrade has not been authorized.642 **/643 Unauthorized: AugmentedError<ApiType>;644 /**645 * The inherent which supplies the validation data did not run this block646 **/647 ValidationDataNotAvailable: AugmentedError<ApiType>;648 /**649 * Generic error650 **/651 [key: string]: AugmentedError<ApiType>;652 };653 polkadotXcm: {654 /**655 * The location is invalid since it already has a subscription from us.656 **/657 AlreadySubscribed: AugmentedError<ApiType>;658 /**659 * The given location could not be used (e.g. because it cannot be expressed in the660 * desired version of XCM).661 **/662 BadLocation: AugmentedError<ApiType>;663 /**664 * The version of the `Versioned` value used is not able to be interpreted.665 **/666 BadVersion: AugmentedError<ApiType>;667 /**668 * Could not re-anchor the assets to declare the fees for the destination chain.669 **/670 CannotReanchor: AugmentedError<ApiType>;671 /**672 * The destination `MultiLocation` provided cannot be inverted.673 **/674 DestinationNotInvertible: AugmentedError<ApiType>;675 /**676 * The assets to be sent are empty.677 **/678 Empty: AugmentedError<ApiType>;679 /**680 * The message execution fails the filter.681 **/682 Filtered: AugmentedError<ApiType>;683 /**684 * Origin is invalid for sending.685 **/686 InvalidOrigin: AugmentedError<ApiType>;687 /**688 * The referenced subscription could not be found.689 **/690 NoSubscription: AugmentedError<ApiType>;691 /**692 * There was some other issue (i.e. not to do with routing) in sending the message. Perhaps693 * a lack of space for buffering the message.694 **/695 SendFailure: AugmentedError<ApiType>;696 /**697 * Too many assets have been attempted for transfer.698 **/699 TooManyAssets: AugmentedError<ApiType>;700 /**701 * The desired destination was unreachable, generally because there is a no way of routing702 * to it.703 **/704 Unreachable: AugmentedError<ApiType>;705 /**706 * The message's weight could not be determined.707 **/708 UnweighableMessage: AugmentedError<ApiType>;709 /**710 * Generic error711 **/712 [key: string]: AugmentedError<ApiType>;713 };714 refungible: {715 /**716 * Not Refungible item data used to mint in Refungible collection.717 **/718 NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;719 /**720 * Refungible token can't nest other tokens.721 **/722 RefungibleDisallowsNesting: AugmentedError<ApiType>;723 /**724 * Refungible token can't be repartitioned by user who isn't owns all pieces.725 **/726 RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;727 /**728 * Setting item properties is not allowed.729 **/730 SettingPropertiesNotAllowed: AugmentedError<ApiType>;731 /**732 * Maximum refungibility exceeded.733 **/734 WrongRefungiblePieces: AugmentedError<ApiType>;735 /**736 * Generic error737 **/738 [key: string]: AugmentedError<ApiType>;739 };740 rmrkCore: {741 /**742 * Not the target owner of the sent NFT.743 **/744 CannotAcceptNonOwnedNft: AugmentedError<ApiType>;745 /**746 * Not the target owner of the sent NFT.747 **/748 CannotRejectNonOwnedNft: AugmentedError<ApiType>;749 /**750 * NFT was not sent and is not pending.751 **/752 CannotRejectNonPendingNft: AugmentedError<ApiType>;753 /**754 * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.755 * Sending to self is redundant.756 **/757 CannotSendToDescendentOrSelf: AugmentedError<ApiType>;758 /**759 * Too many tokens created in the collection, no new ones are allowed.760 **/761 CollectionFullOrLocked: AugmentedError<ApiType>;762 /**763 * Only destroying collections without tokens is allowed.764 **/765 CollectionNotEmpty: AugmentedError<ApiType>;766 /**767 * Collection does not exist, has a wrong type, or does not map to a Unique ID.768 **/769 CollectionUnknown: AugmentedError<ApiType>;770 /**771 * Property of the type of RMRK collection could not be read successfully.772 **/773 CorruptedCollectionType: AugmentedError<ApiType>;774 /**775 * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.776 **/777 NoAvailableCollectionId: AugmentedError<ApiType>;778 /**779 * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.780 **/781 NoAvailableNftId: AugmentedError<ApiType>;782 /**783 * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.784 **/785 NoAvailableResourceId: AugmentedError<ApiType>;786 /**787 * Token is marked as non-transferable, and thus cannot be transferred.788 **/789 NonTransferable: AugmentedError<ApiType>;790 /**791 * No permission to perform action.792 **/793 NoPermission: AugmentedError<ApiType>;794 /**795 * No such resource found.796 **/797 ResourceDoesntExist: AugmentedError<ApiType>;798 /**799 * Resource is not pending for the operation.800 **/801 ResourceNotPending: AugmentedError<ApiType>;802 /**803 * Could not find a property by the supplied key.804 **/805 RmrkPropertyIsNotFound: AugmentedError<ApiType>;806 /**807 * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).808 **/809 RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;810 /**811 * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).812 **/813 RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;814 /**815 * Something went wrong when decoding encoded data from the storage.816 * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.817 **/818 UnableToDecodeRmrkData: AugmentedError<ApiType>;819 /**820 * Generic error821 **/822 [key: string]: AugmentedError<ApiType>;823 };824 rmrkEquip: {825 /**826 * Base collection linked to this ID does not exist.827 **/828 BaseDoesntExist: AugmentedError<ApiType>;829 /**830 * No Theme named "default" is associated with the Base.831 **/832 NeedsDefaultThemeFirst: AugmentedError<ApiType>;833 /**834 * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.835 **/836 NoAvailableBaseId: AugmentedError<ApiType>;837 /**838 * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow839 **/840 NoAvailablePartId: AugmentedError<ApiType>;841 /**842 * Cannot assign equippables to a fixed Part.843 **/844 NoEquippableOnFixedPart: AugmentedError<ApiType>;845 /**846 * Part linked to this ID does not exist.847 **/848 PartDoesntExist: AugmentedError<ApiType>;849 /**850 * No permission to perform action.851 **/852 PermissionError: AugmentedError<ApiType>;853 /**854 * Generic error855 **/856 [key: string]: AugmentedError<ApiType>;857 };858 session: {859 /**860 * Registered duplicate key.861 **/862 DuplicatedKey: AugmentedError<ApiType>;863 /**864 * Invalid ownership proof.865 **/866 InvalidProof: AugmentedError<ApiType>;867 /**868 * Key setting account is not live, so it's impossible to associate keys.869 **/870 NoAccount: AugmentedError<ApiType>;871 /**872 * No associated validator ID for account.873 **/874 NoAssociatedValidatorId: AugmentedError<ApiType>;875 /**876 * No keys are associated with this account.877 **/878 NoKeys: AugmentedError<ApiType>;879 /**880 * Generic error881 **/882 [key: string]: AugmentedError<ApiType>;883 };884 structure: {885 /**886 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.887 **/888 BreadthLimit: AugmentedError<ApiType>;889 /**890 * While nesting, reached the depth limit of nesting, exceeding the provided budget.891 **/892 DepthLimit: AugmentedError<ApiType>;893 /**894 * While nesting, encountered an already checked account, detecting a loop.895 **/896 OuroborosDetected: AugmentedError<ApiType>;897 /**898 * Couldn't find the token owner that is itself a token.899 **/900 TokenNotFound: AugmentedError<ApiType>;901 /**902 * Generic error903 **/904 [key: string]: AugmentedError<ApiType>;905 };906 sudo: {907 /**908 * Sender must be the Sudo account909 **/910 RequireSudo: AugmentedError<ApiType>;911 /**912 * Generic error913 **/914 [key: string]: AugmentedError<ApiType>;915 };916 system: {917 /**918 * The origin filter prevent the call to be dispatched.919 **/920 CallFiltered: AugmentedError<ApiType>;921 /**922 * Failed to extract the runtime version from the new runtime.923 * 924 * Either calling `Core_version` or decoding `RuntimeVersion` failed.925 **/926 FailedToExtractRuntimeVersion: AugmentedError<ApiType>;927 /**928 * The name of specification does not match between the current runtime929 * and the new runtime.930 **/931 InvalidSpecName: AugmentedError<ApiType>;932 /**933 * Suicide called when the account has non-default composite data.934 **/935 NonDefaultComposite: AugmentedError<ApiType>;936 /**937 * There is a non-zero reference count preventing the account from being purged.938 **/939 NonZeroRefCount: AugmentedError<ApiType>;940 /**941 * The specification version is not allowed to decrease between the current runtime942 * and the new runtime.943 **/944 SpecVersionNeedsToIncrease: AugmentedError<ApiType>;945 /**946 * Generic error947 **/948 [key: string]: AugmentedError<ApiType>;949 };950 testUtils: {951 TestPalletDisabled: AugmentedError<ApiType>;952 TriggerRollback: AugmentedError<ApiType>;953 /**954 * Generic error955 **/956 [key: string]: AugmentedError<ApiType>;957 };958 tokens: {959 /**960 * Cannot convert Amount into Balance type961 **/962 AmountIntoBalanceFailed: AugmentedError<ApiType>;963 /**964 * The balance is too low965 **/966 BalanceTooLow: AugmentedError<ApiType>;967 /**968 * Beneficiary account must pre-exist969 **/970 DeadAccount: AugmentedError<ApiType>;971 /**972 * Value too low to create account due to existential deposit973 **/974 ExistentialDeposit: AugmentedError<ApiType>;975 /**976 * Transfer/payment would kill account977 **/978 KeepAlive: AugmentedError<ApiType>;979 /**980 * Failed because liquidity restrictions due to locking981 **/982 LiquidityRestrictions: AugmentedError<ApiType>;983 /**984 * Failed because the maximum locks was exceeded985 **/986 MaxLocksExceeded: AugmentedError<ApiType>;987 TooManyReserves: AugmentedError<ApiType>;988 /**989 * Generic error990 **/991 [key: string]: AugmentedError<ApiType>;992 };993 treasury: {994 /**995 * The spend origin is valid but the amount it is allowed to spend is lower than the996 * amount to be spent.997 **/998 InsufficientPermission: AugmentedError<ApiType>;999 /**1000 * Proposer's balance is too low.1001 **/1002 InsufficientProposersBalance: AugmentedError<ApiType>;1003 /**1004 * No proposal or bounty at that index.1005 **/1006 InvalidIndex: AugmentedError<ApiType>;1007 /**1008 * Proposal has not been approved.1009 **/1010 ProposalNotApproved: AugmentedError<ApiType>;1011 /**1012 * Too many approvals in the queue.1013 **/1014 TooManyApprovals: AugmentedError<ApiType>;1015 /**1016 * Generic error1017 **/1018 [key: string]: AugmentedError<ApiType>;1019 };1020 unique: {1021 /**1022 * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].1023 **/1024 CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;1025 /**1026 * Length of items properties must be greater than 0.1027 **/1028 EmptyArgument: AugmentedError<ApiType>;1029 /**1030 * Repertition is only supported by refungible collection.1031 **/1032 RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;1033 /**1034 * Generic error1035 **/1036 [key: string]: AugmentedError<ApiType>;1037 };1038 vesting: {1039 /**1040 * The vested transfer amount is too low1041 **/1042 AmountLow: AugmentedError<ApiType>;1043 /**1044 * Insufficient amount of balance to lock1045 **/1046 InsufficientBalanceToLock: AugmentedError<ApiType>;1047 /**1048 * Failed because the maximum vesting schedules was exceeded1049 **/1050 MaxVestingSchedulesExceeded: AugmentedError<ApiType>;1051 /**1052 * This account have too many vesting schedules1053 **/1054 TooManyVestingSchedules: AugmentedError<ApiType>;1055 /**1056 * Vesting period is zero1057 **/1058 ZeroVestingPeriod: AugmentedError<ApiType>;1059 /**1060 * Number of vests is zero1061 **/1062 ZeroVestingPeriodCount: AugmentedError<ApiType>;1063 /**1064 * Generic error1065 **/1066 [key: string]: AugmentedError<ApiType>;1067 };1068 xcmpQueue: {1069 /**1070 * Bad overweight index.1071 **/1072 BadOverweightIndex: AugmentedError<ApiType>;1073 /**1074 * Bad XCM data.1075 **/1076 BadXcm: AugmentedError<ApiType>;1077 /**1078 * Bad XCM origin.1079 **/1080 BadXcmOrigin: AugmentedError<ApiType>;1081 /**1082 * Failed to send XCM message.1083 **/1084 FailedToSend: AugmentedError<ApiType>;1085 /**1086 * Provided weight is possibly not enough to execute the message.1087 **/1088 WeightOverLimit: AugmentedError<ApiType>;1089 /**1090 * Generic error1091 **/1092 [key: string]: AugmentedError<ApiType>;1093 };1094 xTokens: {1095 /**1096 * Asset has no reserve location.1097 **/1098 AssetHasNoReserve: AugmentedError<ApiType>;1099 /**1100 * The specified index does not exist in a MultiAssets struct.1101 **/1102 AssetIndexNonExistent: AugmentedError<ApiType>;1103 /**1104 * The version of the `Versioned` value used is not able to be1105 * interpreted.1106 **/1107 BadVersion: AugmentedError<ApiType>;1108 /**1109 * Could not re-anchor the assets to declare the fees for the1110 * destination chain.1111 **/1112 CannotReanchor: AugmentedError<ApiType>;1113 /**1114 * The destination `MultiLocation` provided cannot be inverted.1115 **/1116 DestinationNotInvertible: AugmentedError<ApiType>;1117 /**1118 * We tried sending distinct asset and fee but they have different1119 * reserve chains.1120 **/1121 DistinctReserveForAssetAndFee: AugmentedError<ApiType>;1122 /**1123 * Fee is not enough.1124 **/1125 FeeNotEnough: AugmentedError<ApiType>;1126 /**1127 * Could not get ancestry of asset reserve location.1128 **/1129 InvalidAncestry: AugmentedError<ApiType>;1130 /**1131 * The MultiAsset is invalid.1132 **/1133 InvalidAsset: AugmentedError<ApiType>;1134 /**1135 * Invalid transfer destination.1136 **/1137 InvalidDest: AugmentedError<ApiType>;1138 /**1139 * MinXcmFee not registered for certain reserve location1140 **/1141 MinXcmFeeNotDefined: AugmentedError<ApiType>;1142 /**1143 * Not cross-chain transfer.1144 **/1145 NotCrossChainTransfer: AugmentedError<ApiType>;1146 /**1147 * Currency is not cross-chain transferable.1148 **/1149 NotCrossChainTransferableCurrency: AugmentedError<ApiType>;1150 /**1151 * Not supported MultiLocation1152 **/1153 NotSupportedMultiLocation: AugmentedError<ApiType>;1154 /**1155 * The number of assets to be sent is over the maximum.1156 **/1157 TooManyAssetsBeingSent: AugmentedError<ApiType>;1158 /**1159 * The message's weight could not be determined.1160 **/1161 UnweighableMessage: AugmentedError<ApiType>;1162 /**1163 * XCM execution failed.1164 **/1165 XcmExecutionFailed: AugmentedError<ApiType>;1166 /**1167 * The transfering asset amount is zero.1168 **/1169 ZeroAmount: AugmentedError<ApiType>;1170 /**1171 * The fee is zero.1172 **/1173 ZeroFee: AugmentedError<ApiType>;1174 /**1175 * Generic error1176 **/1177 [key: string]: AugmentedError<ApiType>;1178 };1179 } // AugmentedErrors1180} // declare moduledifftreelog
source
tests/src/interfaces/augment-api-errors.ts34.5 KiBsourcehistory