git.delta.rocks / unique-network / refs/commits / cf483e2c63f2

difftreelog

source

tests/src/interfaces/augment-api-errors.ts29.6 KiBsourcehistory
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 value.59       **/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       * This address is not set as sponsor, use setCollectionSponsor first.149       **/150      ConfirmSponsorshipFail: AugmentedError<ApiType>;151      /**152       * Empty property keys are forbidden153       **/154      EmptyPropertyKey: AugmentedError<ApiType>;155      /**156       * Only ASCII letters, digits, and symbols `_`, `-`, and `.` are allowed157       **/158      InvalidCharacterInPropertyKey: AugmentedError<ApiType>;159      /**160       * Metadata flag frozen161       **/162      MetadataFlagFrozen: AugmentedError<ApiType>;163      /**164       * Sender parameter and item owner must be equal.165       **/166      MustBeTokenOwner: AugmentedError<ApiType>;167      /**168       * No permission to perform action169       **/170      NoPermission: AugmentedError<ApiType>;171      /**172       * Tried to store more property data than allowed173       **/174      NoSpaceForProperty: AugmentedError<ApiType>;175      /**176       * Insufficient funds to perform an action177       **/178      NotSufficientFounds: AugmentedError<ApiType>;179      /**180       * Tried to enable permissions which are only permitted to be disabled181       **/182      OwnerPermissionsCantBeReverted: AugmentedError<ApiType>;183      /**184       * Property key is too long185       **/186      PropertyKeyIsTooLong: AugmentedError<ApiType>;187      /**188       * Tried to store more property keys than allowed189       **/190      PropertyLimitReached: AugmentedError<ApiType>;191      /**192       * Collection is not in mint mode.193       **/194      PublicMintingNotAllowed: AugmentedError<ApiType>;195      /**196       * Only tokens from specific collections may nest tokens under this one197       **/198      SourceCollectionIsNotAllowedToNest: AugmentedError<ApiType>;199      /**200       * Item does not exist201       **/202      TokenNotFound: AugmentedError<ApiType>;203      /**204       * Item is balance not enough205       **/206      TokenValueTooLow: AugmentedError<ApiType>;207      /**208       * Total collections bound exceeded.209       **/210      TotalCollectionsLimitExceeded: AugmentedError<ApiType>;211      /**212       * Collection settings not allowing items transferring213       **/214      TransferNotAllowed: AugmentedError<ApiType>;215      /**216       * The operation is not supported217       **/218      UnsupportedOperation: AugmentedError<ApiType>;219      /**220       * User does not satisfy the nesting rule221       **/222      UserIsNotAllowedToNest: AugmentedError<ApiType>;223      /**224       * The user is not an administrator.225       **/226      UserIsNotCollectionAdmin: AugmentedError<ApiType>;227      /**228       * Generic error229       **/230      [key: string]: AugmentedError<ApiType>;231    };232    configuration: {233      InconsistentConfiguration: AugmentedError<ApiType>;234      /**235       * Generic error236       **/237      [key: string]: AugmentedError<ApiType>;238    };239    cumulusXcm: {240      /**241       * Generic error242       **/243      [key: string]: AugmentedError<ApiType>;244    };245    dmpQueue: {246      /**247       * The amount of weight given is possibly not enough for executing the message.248       **/249      OverLimit: AugmentedError<ApiType>;250      /**251       * The message index given is unknown.252       **/253      Unknown: AugmentedError<ApiType>;254      /**255       * Generic error256       **/257      [key: string]: AugmentedError<ApiType>;258    };259    ethereum: {260      /**261       * Signature is invalid.262       **/263      InvalidSignature: AugmentedError<ApiType>;264      /**265       * Pre-log is present, therefore transact is not allowed.266       **/267      PreLogExists: AugmentedError<ApiType>;268      /**269       * Generic error270       **/271      [key: string]: AugmentedError<ApiType>;272    };273    evm: {274      /**275       * Not enough balance to perform action276       **/277      BalanceLow: AugmentedError<ApiType>;278      /**279       * Calculating total fee overflowed280       **/281      FeeOverflow: AugmentedError<ApiType>;282      /**283       * Gas limit is too high.284       **/285      GasLimitTooHigh: AugmentedError<ApiType>;286      /**287       * Gas limit is too low.288       **/289      GasLimitTooLow: AugmentedError<ApiType>;290      /**291       * Gas price is too low.292       **/293      GasPriceTooLow: AugmentedError<ApiType>;294      /**295       * Nonce is invalid296       **/297      InvalidNonce: AugmentedError<ApiType>;298      /**299       * Calculating total payment overflowed300       **/301      PaymentOverflow: AugmentedError<ApiType>;302      /**303       * EVM reentrancy304       **/305      Reentrancy: AugmentedError<ApiType>;306      /**307       * EIP-3607,308       **/309      TransactionMustComeFromEOA: AugmentedError<ApiType>;310      /**311       * Undefined error.312       **/313      Undefined: AugmentedError<ApiType>;314      /**315       * Withdraw fee failed316       **/317      WithdrawFailed: AugmentedError<ApiType>;318      /**319       * Generic error320       **/321      [key: string]: AugmentedError<ApiType>;322    };323    evmCoderSubstrate: {324      OutOfFund: AugmentedError<ApiType>;325      OutOfGas: AugmentedError<ApiType>;326      /**327       * Generic error328       **/329      [key: string]: AugmentedError<ApiType>;330    };331    evmContractHelpers: {332      /**333       * No pending sponsor for contract.334       **/335      NoPendingSponsor: AugmentedError<ApiType>;336      /**337       * This method is only executable by contract owner338       **/339      NoPermission: AugmentedError<ApiType>;340      /**341       * Number of methods that sponsored limit is defined for exceeds maximum.342       **/343      TooManyMethodsHaveSponsoredLimit: AugmentedError<ApiType>;344      /**345       * Generic error346       **/347      [key: string]: AugmentedError<ApiType>;348    };349    evmMigration: {350      /**351       * Migration of this account is not yet started, or already finished.352       **/353      AccountIsNotMigrating: AugmentedError<ApiType>;354      /**355       * Can only migrate to empty address.356       **/357      AccountNotEmpty: AugmentedError<ApiType>;358      /**359       * Failed to decode event bytes360       **/361      BadEvent: AugmentedError<ApiType>;362      /**363       * Generic error364       **/365      [key: string]: AugmentedError<ApiType>;366    };367    foreignAssets: {368      /**369       * AssetId exists370       **/371      AssetIdExisted: AugmentedError<ApiType>;372      /**373       * AssetId not exists374       **/375      AssetIdNotExists: AugmentedError<ApiType>;376      /**377       * The given location could not be used (e.g. because it cannot be expressed in the378       * desired version of XCM).379       **/380      BadLocation: AugmentedError<ApiType>;381      /**382       * MultiLocation existed383       **/384      MultiLocationExisted: AugmentedError<ApiType>;385      /**386       * Generic error387       **/388      [key: string]: AugmentedError<ApiType>;389    };390    fungible: {391      /**392       * Fungible token does not support nesting.393       **/394      FungibleDisallowsNesting: AugmentedError<ApiType>;395      /**396       * Tried to set data for fungible item.397       **/398      FungibleItemsDontHaveData: AugmentedError<ApiType>;399      /**400       * Fungible tokens hold no ID, and the default value of TokenId for Fungible collection is 0.401       **/402      FungibleItemsHaveNoId: AugmentedError<ApiType>;403      /**404       * Only a fungible collection could be possibly broken; any fungible token is valid.405       **/406      FungibleTokensAreAlwaysValid: AugmentedError<ApiType>;407      /**408       * Not Fungible item data used to mint in Fungible collection.409       **/410      NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;411      /**412       * Setting allowance for all is not allowed.413       **/414      SettingAllowanceForAllNotAllowed: AugmentedError<ApiType>;415      /**416       * Setting item properties is not allowed.417       **/418      SettingPropertiesNotAllowed: AugmentedError<ApiType>;419      /**420       * Generic error421       **/422      [key: string]: AugmentedError<ApiType>;423    };424    maintenance: {425      /**426       * Generic error427       **/428      [key: string]: AugmentedError<ApiType>;429    };430    nonfungible: {431      /**432       * Unable to burn NFT with children433       **/434      CantBurnNftWithChildren: AugmentedError<ApiType>;435      /**436       * Used amount > 1 with NFT437       **/438      NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;439      /**440       * Not Nonfungible item data used to mint in Nonfungible collection.441       **/442      NotNonfungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;443      /**444       * Generic error445       **/446      [key: string]: AugmentedError<ApiType>;447    };448    parachainSystem: {449      /**450       * The inherent which supplies the host configuration did not run this block451       **/452      HostConfigurationNotAvailable: AugmentedError<ApiType>;453      /**454       * No code upgrade has been authorized.455       **/456      NothingAuthorized: AugmentedError<ApiType>;457      /**458       * No validation function upgrade is currently scheduled.459       **/460      NotScheduled: AugmentedError<ApiType>;461      /**462       * Attempt to upgrade validation function while existing upgrade pending463       **/464      OverlappingUpgrades: AugmentedError<ApiType>;465      /**466       * Polkadot currently prohibits this parachain from upgrading its validation function467       **/468      ProhibitedByPolkadot: AugmentedError<ApiType>;469      /**470       * The supplied validation function has compiled into a blob larger than Polkadot is471       * willing to run472       **/473      TooBig: AugmentedError<ApiType>;474      /**475       * The given code upgrade has not been authorized.476       **/477      Unauthorized: AugmentedError<ApiType>;478      /**479       * The inherent which supplies the validation data did not run this block480       **/481      ValidationDataNotAvailable: AugmentedError<ApiType>;482      /**483       * Generic error484       **/485      [key: string]: AugmentedError<ApiType>;486    };487    polkadotXcm: {488      /**489       * The location is invalid since it already has a subscription from us.490       **/491      AlreadySubscribed: AugmentedError<ApiType>;492      /**493       * The given location could not be used (e.g. because it cannot be expressed in the494       * desired version of XCM).495       **/496      BadLocation: AugmentedError<ApiType>;497      /**498       * The version of the `Versioned` value used is not able to be interpreted.499       **/500      BadVersion: AugmentedError<ApiType>;501      /**502       * Could not re-anchor the assets to declare the fees for the destination chain.503       **/504      CannotReanchor: AugmentedError<ApiType>;505      /**506       * The destination `MultiLocation` provided cannot be inverted.507       **/508      DestinationNotInvertible: AugmentedError<ApiType>;509      /**510       * The assets to be sent are empty.511       **/512      Empty: AugmentedError<ApiType>;513      /**514       * The message execution fails the filter.515       **/516      Filtered: AugmentedError<ApiType>;517      /**518       * Origin is invalid for sending.519       **/520      InvalidOrigin: AugmentedError<ApiType>;521      /**522       * The referenced subscription could not be found.523       **/524      NoSubscription: AugmentedError<ApiType>;525      /**526       * There was some other issue (i.e. not to do with routing) in sending the message. Perhaps527       * a lack of space for buffering the message.528       **/529      SendFailure: AugmentedError<ApiType>;530      /**531       * Too many assets have been attempted for transfer.532       **/533      TooManyAssets: AugmentedError<ApiType>;534      /**535       * The desired destination was unreachable, generally because there is a no way of routing536       * to it.537       **/538      Unreachable: AugmentedError<ApiType>;539      /**540       * The message's weight could not be determined.541       **/542      UnweighableMessage: AugmentedError<ApiType>;543      /**544       * Generic error545       **/546      [key: string]: AugmentedError<ApiType>;547    };548    refungible: {549      /**550       * Not Refungible item data used to mint in Refungible collection.551       **/552      NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;553      /**554       * Refungible token can't nest other tokens.555       **/556      RefungibleDisallowsNesting: AugmentedError<ApiType>;557      /**558       * Refungible token can't be repartitioned by user who isn't owns all pieces.559       **/560      RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;561      /**562       * Setting item properties is not allowed.563       **/564      SettingPropertiesNotAllowed: AugmentedError<ApiType>;565      /**566       * Maximum refungibility exceeded.567       **/568      WrongRefungiblePieces: AugmentedError<ApiType>;569      /**570       * Generic error571       **/572      [key: string]: AugmentedError<ApiType>;573    };574    rmrkCore: {575      /**576       * Not the target owner of the sent NFT.577       **/578      CannotAcceptNonOwnedNft: AugmentedError<ApiType>;579      /**580       * Not the target owner of the sent NFT.581       **/582      CannotRejectNonOwnedNft: AugmentedError<ApiType>;583      /**584       * NFT was not sent and is not pending.585       **/586      CannotRejectNonPendingNft: AugmentedError<ApiType>;587      /**588       * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.589       * Sending to self is redundant.590       **/591      CannotSendToDescendentOrSelf: AugmentedError<ApiType>;592      /**593       * Too many tokens created in the collection, no new ones are allowed.594       **/595      CollectionFullOrLocked: AugmentedError<ApiType>;596      /**597       * Only destroying collections without tokens is allowed.598       **/599      CollectionNotEmpty: AugmentedError<ApiType>;600      /**601       * Collection does not exist, has a wrong type, or does not map to a Unique ID.602       **/603      CollectionUnknown: AugmentedError<ApiType>;604      /**605       * Property of the type of RMRK collection could not be read successfully.606       **/607      CorruptedCollectionType: AugmentedError<ApiType>;608      /**609       * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.610       **/611      NoAvailableCollectionId: AugmentedError<ApiType>;612      /**613       * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.614       **/615      NoAvailableNftId: AugmentedError<ApiType>;616      /**617       * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.618       **/619      NoAvailableResourceId: AugmentedError<ApiType>;620      /**621       * Token is marked as non-transferable, and thus cannot be transferred.622       **/623      NonTransferable: AugmentedError<ApiType>;624      /**625       * No permission to perform action.626       **/627      NoPermission: AugmentedError<ApiType>;628      /**629       * No such resource found.630       **/631      ResourceDoesntExist: AugmentedError<ApiType>;632      /**633       * Resource is not pending for the operation.634       **/635      ResourceNotPending: AugmentedError<ApiType>;636      /**637       * Could not find a property by the supplied key.638       **/639      RmrkPropertyIsNotFound: AugmentedError<ApiType>;640      /**641       * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).642       **/643      RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;644      /**645       * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).646       **/647      RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;648      /**649       * Something went wrong when decoding encoded data from the storage.650       * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.651       **/652      UnableToDecodeRmrkData: AugmentedError<ApiType>;653      /**654       * Generic error655       **/656      [key: string]: AugmentedError<ApiType>;657    };658    rmrkEquip: {659      /**660       * Base collection linked to this ID does not exist.661       **/662      BaseDoesntExist: AugmentedError<ApiType>;663      /**664       * No Theme named "default" is associated with the Base.665       **/666      NeedsDefaultThemeFirst: AugmentedError<ApiType>;667      /**668       * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.669       **/670      NoAvailableBaseId: AugmentedError<ApiType>;671      /**672       * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow673       **/674      NoAvailablePartId: AugmentedError<ApiType>;675      /**676       * Cannot assign equippables to a fixed Part.677       **/678      NoEquippableOnFixedPart: AugmentedError<ApiType>;679      /**680       * Part linked to this ID does not exist.681       **/682      PartDoesntExist: AugmentedError<ApiType>;683      /**684       * No permission to perform action.685       **/686      PermissionError: AugmentedError<ApiType>;687      /**688       * Generic error689       **/690      [key: string]: AugmentedError<ApiType>;691    };692    structure: {693      /**694       * While nesting, reached the breadth limit of nesting, exceeding the provided budget.695       **/696      BreadthLimit: AugmentedError<ApiType>;697      /**698       * While nesting, reached the depth limit of nesting, exceeding the provided budget.699       **/700      DepthLimit: AugmentedError<ApiType>;701      /**702       * While nesting, encountered an already checked account, detecting a loop.703       **/704      OuroborosDetected: AugmentedError<ApiType>;705      /**706       * Couldn't find the token owner that is itself a token.707       **/708      TokenNotFound: AugmentedError<ApiType>;709      /**710       * Generic error711       **/712      [key: string]: AugmentedError<ApiType>;713    };714    sudo: {715      /**716       * Sender must be the Sudo account717       **/718      RequireSudo: AugmentedError<ApiType>;719      /**720       * Generic error721       **/722      [key: string]: AugmentedError<ApiType>;723    };724    system: {725      /**726       * The origin filter prevent the call to be dispatched.727       **/728      CallFiltered: AugmentedError<ApiType>;729      /**730       * Failed to extract the runtime version from the new runtime.731       * 732       * Either calling `Core_version` or decoding `RuntimeVersion` failed.733       **/734      FailedToExtractRuntimeVersion: AugmentedError<ApiType>;735      /**736       * The name of specification does not match between the current runtime737       * and the new runtime.738       **/739      InvalidSpecName: AugmentedError<ApiType>;740      /**741       * Suicide called when the account has non-default composite data.742       **/743      NonDefaultComposite: AugmentedError<ApiType>;744      /**745       * There is a non-zero reference count preventing the account from being purged.746       **/747      NonZeroRefCount: AugmentedError<ApiType>;748      /**749       * The specification version is not allowed to decrease between the current runtime750       * and the new runtime.751       **/752      SpecVersionNeedsToIncrease: AugmentedError<ApiType>;753      /**754       * Generic error755       **/756      [key: string]: AugmentedError<ApiType>;757    };758    testUtils: {759      TestPalletDisabled: AugmentedError<ApiType>;760      TriggerRollback: AugmentedError<ApiType>;761      /**762       * Generic error763       **/764      [key: string]: AugmentedError<ApiType>;765    };766    tokens: {767      /**768       * Cannot convert Amount into Balance type769       **/770      AmountIntoBalanceFailed: AugmentedError<ApiType>;771      /**772       * The balance is too low773       **/774      BalanceTooLow: AugmentedError<ApiType>;775      /**776       * Beneficiary account must pre-exist777       **/778      DeadAccount: AugmentedError<ApiType>;779      /**780       * Value too low to create account due to existential deposit781       **/782      ExistentialDeposit: AugmentedError<ApiType>;783      /**784       * Transfer/payment would kill account785       **/786      KeepAlive: AugmentedError<ApiType>;787      /**788       * Failed because liquidity restrictions due to locking789       **/790      LiquidityRestrictions: AugmentedError<ApiType>;791      /**792       * Failed because the maximum locks was exceeded793       **/794      MaxLocksExceeded: AugmentedError<ApiType>;795      TooManyReserves: AugmentedError<ApiType>;796      /**797       * Generic error798       **/799      [key: string]: AugmentedError<ApiType>;800    };801    treasury: {802      /**803       * The spend origin is valid but the amount it is allowed to spend is lower than the804       * amount to be spent.805       **/806      InsufficientPermission: AugmentedError<ApiType>;807      /**808       * Proposer's balance is too low.809       **/810      InsufficientProposersBalance: AugmentedError<ApiType>;811      /**812       * No proposal or bounty at that index.813       **/814      InvalidIndex: AugmentedError<ApiType>;815      /**816       * Proposal has not been approved.817       **/818      ProposalNotApproved: AugmentedError<ApiType>;819      /**820       * Too many approvals in the queue.821       **/822      TooManyApprovals: AugmentedError<ApiType>;823      /**824       * Generic error825       **/826      [key: string]: AugmentedError<ApiType>;827    };828    unique: {829      /**830       * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].831       **/832      CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;833      /**834       * Length of items properties must be greater than 0.835       **/836      EmptyArgument: AugmentedError<ApiType>;837      /**838       * Repertition is only supported by refungible collection.839       **/840      RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;841      /**842       * Generic error843       **/844      [key: string]: AugmentedError<ApiType>;845    };846    vesting: {847      /**848       * The vested transfer amount is too low849       **/850      AmountLow: AugmentedError<ApiType>;851      /**852       * Insufficient amount of balance to lock853       **/854      InsufficientBalanceToLock: AugmentedError<ApiType>;855      /**856       * Failed because the maximum vesting schedules was exceeded857       **/858      MaxVestingSchedulesExceeded: AugmentedError<ApiType>;859      /**860       * This account have too many vesting schedules861       **/862      TooManyVestingSchedules: AugmentedError<ApiType>;863      /**864       * Vesting period is zero865       **/866      ZeroVestingPeriod: AugmentedError<ApiType>;867      /**868       * Number of vests is zero869       **/870      ZeroVestingPeriodCount: AugmentedError<ApiType>;871      /**872       * Generic error873       **/874      [key: string]: AugmentedError<ApiType>;875    };876    xcmpQueue: {877      /**878       * Bad overweight index.879       **/880      BadOverweightIndex: AugmentedError<ApiType>;881      /**882       * Bad XCM data.883       **/884      BadXcm: AugmentedError<ApiType>;885      /**886       * Bad XCM origin.887       **/888      BadXcmOrigin: AugmentedError<ApiType>;889      /**890       * Failed to send XCM message.891       **/892      FailedToSend: AugmentedError<ApiType>;893      /**894       * Provided weight is possibly not enough to execute the message.895       **/896      WeightOverLimit: AugmentedError<ApiType>;897      /**898       * Generic error899       **/900      [key: string]: AugmentedError<ApiType>;901    };902    xTokens: {903      /**904       * Asset has no reserve location.905       **/906      AssetHasNoReserve: AugmentedError<ApiType>;907      /**908       * The specified index does not exist in a MultiAssets struct.909       **/910      AssetIndexNonExistent: AugmentedError<ApiType>;911      /**912       * The version of the `Versioned` value used is not able to be913       * interpreted.914       **/915      BadVersion: AugmentedError<ApiType>;916      /**917       * Could not re-anchor the assets to declare the fees for the918       * destination chain.919       **/920      CannotReanchor: AugmentedError<ApiType>;921      /**922       * The destination `MultiLocation` provided cannot be inverted.923       **/924      DestinationNotInvertible: AugmentedError<ApiType>;925      /**926       * We tried sending distinct asset and fee but they have different927       * reserve chains.928       **/929      DistinctReserveForAssetAndFee: AugmentedError<ApiType>;930      /**931       * Fee is not enough.932       **/933      FeeNotEnough: AugmentedError<ApiType>;934      /**935       * Could not get ancestry of asset reserve location.936       **/937      InvalidAncestry: AugmentedError<ApiType>;938      /**939       * The MultiAsset is invalid.940       **/941      InvalidAsset: AugmentedError<ApiType>;942      /**943       * Invalid transfer destination.944       **/945      InvalidDest: AugmentedError<ApiType>;946      /**947       * MinXcmFee not registered for certain reserve location948       **/949      MinXcmFeeNotDefined: AugmentedError<ApiType>;950      /**951       * Not cross-chain transfer.952       **/953      NotCrossChainTransfer: AugmentedError<ApiType>;954      /**955       * Currency is not cross-chain transferable.956       **/957      NotCrossChainTransferableCurrency: AugmentedError<ApiType>;958      /**959       * Not supported MultiLocation960       **/961      NotSupportedMultiLocation: AugmentedError<ApiType>;962      /**963       * The number of assets to be sent is over the maximum.964       **/965      TooManyAssetsBeingSent: AugmentedError<ApiType>;966      /**967       * The message's weight could not be determined.968       **/969      UnweighableMessage: AugmentedError<ApiType>;970      /**971       * XCM execution failed.972       **/973      XcmExecutionFailed: AugmentedError<ApiType>;974      /**975       * The transfering asset amount is zero.976       **/977      ZeroAmount: AugmentedError<ApiType>;978      /**979       * The fee is zero.980       **/981      ZeroFee: AugmentedError<ApiType>;982      /**983       * Generic error984       **/985      [key: string]: AugmentedError<ApiType>;986    };987  } // AugmentedErrors988} // declare module