git.delta.rocks / unique-network / refs/commits / 27a93db3a4a4

difftreelog

source

tests/src/interfaces/augment-api-errors.ts29.2 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    cumulusXcm: {233      /**234       * Generic error235       **/236      [key: string]: AugmentedError<ApiType>;237    };238    dmpQueue: {239      /**240       * The amount of weight given is possibly not enough for executing the message.241       **/242      OverLimit: AugmentedError<ApiType>;243      /**244       * The message index given is unknown.245       **/246      Unknown: AugmentedError<ApiType>;247      /**248       * Generic error249       **/250      [key: string]: AugmentedError<ApiType>;251    };252    ethereum: {253      /**254       * Signature is invalid.255       **/256      InvalidSignature: AugmentedError<ApiType>;257      /**258       * Pre-log is present, therefore transact is not allowed.259       **/260      PreLogExists: AugmentedError<ApiType>;261      /**262       * Generic error263       **/264      [key: string]: AugmentedError<ApiType>;265    };266    evm: {267      /**268       * Not enough balance to perform action269       **/270      BalanceLow: AugmentedError<ApiType>;271      /**272       * Calculating total fee overflowed273       **/274      FeeOverflow: AugmentedError<ApiType>;275      /**276       * Gas limit is too high.277       **/278      GasLimitTooHigh: AugmentedError<ApiType>;279      /**280       * Gas limit is too low.281       **/282      GasLimitTooLow: AugmentedError<ApiType>;283      /**284       * Gas price is too low.285       **/286      GasPriceTooLow: AugmentedError<ApiType>;287      /**288       * Nonce is invalid289       **/290      InvalidNonce: AugmentedError<ApiType>;291      /**292       * Calculating total payment overflowed293       **/294      PaymentOverflow: AugmentedError<ApiType>;295      /**296       * EVM reentrancy297       **/298      Reentrancy: AugmentedError<ApiType>;299      /**300       * Undefined error.301       **/302      Undefined: AugmentedError<ApiType>;303      /**304       * Withdraw fee failed305       **/306      WithdrawFailed: AugmentedError<ApiType>;307      /**308       * Generic error309       **/310      [key: string]: AugmentedError<ApiType>;311    };312    evmCoderSubstrate: {313      OutOfFund: AugmentedError<ApiType>;314      OutOfGas: AugmentedError<ApiType>;315      /**316       * Generic error317       **/318      [key: string]: AugmentedError<ApiType>;319    };320    evmContractHelpers: {321      /**322       * No pending sponsor for contract.323       **/324      NoPendingSponsor: AugmentedError<ApiType>;325      /**326       * This method is only executable by contract owner327       **/328      NoPermission: AugmentedError<ApiType>;329      /**330       * Number of methods that sponsored limit is defined for exceeds maximum.331       **/332      TooManyMethodsHaveSponsoredLimit: AugmentedError<ApiType>;333      /**334       * Generic error335       **/336      [key: string]: AugmentedError<ApiType>;337    };338    evmMigration: {339      /**340       * Migration of this account is not yet started, or already finished.341       **/342      AccountIsNotMigrating: AugmentedError<ApiType>;343      /**344       * Can only migrate to empty address.345       **/346      AccountNotEmpty: AugmentedError<ApiType>;347      /**348       * Failed to decode event bytes349       **/350      BadEvent: AugmentedError<ApiType>;351      /**352       * Generic error353       **/354      [key: string]: AugmentedError<ApiType>;355    };356    foreignAssets: {357      /**358       * AssetId exists359       **/360      AssetIdExisted: AugmentedError<ApiType>;361      /**362       * AssetId not exists363       **/364      AssetIdNotExists: AugmentedError<ApiType>;365      /**366       * The given location could not be used (e.g. because it cannot be expressed in the367       * desired version of XCM).368       **/369      BadLocation: AugmentedError<ApiType>;370      /**371       * MultiLocation existed372       **/373      MultiLocationExisted: AugmentedError<ApiType>;374      /**375       * Generic error376       **/377      [key: string]: AugmentedError<ApiType>;378    };379    fungible: {380      /**381       * Fungible token does not support nesting.382       **/383      FungibleDisallowsNesting: AugmentedError<ApiType>;384      /**385       * Tried to set data for fungible item.386       **/387      FungibleItemsDontHaveData: AugmentedError<ApiType>;388      /**389       * Fungible tokens hold no ID, and the default value of TokenId for Fungible collection is 0.390       **/391      FungibleItemsHaveNoId: AugmentedError<ApiType>;392      /**393       * Not Fungible item data used to mint in Fungible collection.394       **/395      NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;396      /**397       * Setting allowance for all is not allowed.398       **/399      SettingAllowanceForAllNotAllowed: AugmentedError<ApiType>;400      /**401       * Setting item properties is not allowed.402       **/403      SettingPropertiesNotAllowed: AugmentedError<ApiType>;404      /**405       * Generic error406       **/407      [key: string]: AugmentedError<ApiType>;408    };409    maintenance: {410      /**411       * Generic error412       **/413      [key: string]: AugmentedError<ApiType>;414    };415    nonfungible: {416      /**417       * Unable to burn NFT with children418       **/419      CantBurnNftWithChildren: AugmentedError<ApiType>;420      /**421       * Used amount > 1 with NFT422       **/423      NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;424      /**425       * Not Nonfungible item data used to mint in Nonfungible collection.426       **/427      NotNonfungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;428      /**429       * Generic error430       **/431      [key: string]: AugmentedError<ApiType>;432    };433    parachainSystem: {434      /**435       * The inherent which supplies the host configuration did not run this block436       **/437      HostConfigurationNotAvailable: AugmentedError<ApiType>;438      /**439       * No code upgrade has been authorized.440       **/441      NothingAuthorized: AugmentedError<ApiType>;442      /**443       * No validation function upgrade is currently scheduled.444       **/445      NotScheduled: AugmentedError<ApiType>;446      /**447       * Attempt to upgrade validation function while existing upgrade pending448       **/449      OverlappingUpgrades: AugmentedError<ApiType>;450      /**451       * Polkadot currently prohibits this parachain from upgrading its validation function452       **/453      ProhibitedByPolkadot: AugmentedError<ApiType>;454      /**455       * The supplied validation function has compiled into a blob larger than Polkadot is456       * willing to run457       **/458      TooBig: AugmentedError<ApiType>;459      /**460       * The given code upgrade has not been authorized.461       **/462      Unauthorized: AugmentedError<ApiType>;463      /**464       * The inherent which supplies the validation data did not run this block465       **/466      ValidationDataNotAvailable: AugmentedError<ApiType>;467      /**468       * Generic error469       **/470      [key: string]: AugmentedError<ApiType>;471    };472    polkadotXcm: {473      /**474       * The location is invalid since it already has a subscription from us.475       **/476      AlreadySubscribed: AugmentedError<ApiType>;477      /**478       * The given location could not be used (e.g. because it cannot be expressed in the479       * desired version of XCM).480       **/481      BadLocation: AugmentedError<ApiType>;482      /**483       * The version of the `Versioned` value used is not able to be interpreted.484       **/485      BadVersion: AugmentedError<ApiType>;486      /**487       * Could not re-anchor the assets to declare the fees for the destination chain.488       **/489      CannotReanchor: AugmentedError<ApiType>;490      /**491       * The destination `MultiLocation` provided cannot be inverted.492       **/493      DestinationNotInvertible: AugmentedError<ApiType>;494      /**495       * The assets to be sent are empty.496       **/497      Empty: AugmentedError<ApiType>;498      /**499       * The message execution fails the filter.500       **/501      Filtered: AugmentedError<ApiType>;502      /**503       * Origin is invalid for sending.504       **/505      InvalidOrigin: AugmentedError<ApiType>;506      /**507       * The referenced subscription could not be found.508       **/509      NoSubscription: AugmentedError<ApiType>;510      /**511       * There was some other issue (i.e. not to do with routing) in sending the message. Perhaps512       * a lack of space for buffering the message.513       **/514      SendFailure: AugmentedError<ApiType>;515      /**516       * Too many assets have been attempted for transfer.517       **/518      TooManyAssets: AugmentedError<ApiType>;519      /**520       * The desired destination was unreachable, generally because there is a no way of routing521       * to it.522       **/523      Unreachable: AugmentedError<ApiType>;524      /**525       * The message's weight could not be determined.526       **/527      UnweighableMessage: AugmentedError<ApiType>;528      /**529       * Generic error530       **/531      [key: string]: AugmentedError<ApiType>;532    };533    refungible: {534      /**535       * Not Refungible item data used to mint in Refungible collection.536       **/537      NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;538      /**539       * Refungible token can't nest other tokens.540       **/541      RefungibleDisallowsNesting: AugmentedError<ApiType>;542      /**543       * Refungible token can't be repartitioned by user who isn't owns all pieces.544       **/545      RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;546      /**547       * Setting item properties is not allowed.548       **/549      SettingPropertiesNotAllowed: AugmentedError<ApiType>;550      /**551       * Maximum refungibility exceeded.552       **/553      WrongRefungiblePieces: AugmentedError<ApiType>;554      /**555       * Generic error556       **/557      [key: string]: AugmentedError<ApiType>;558    };559    rmrkCore: {560      /**561       * Not the target owner of the sent NFT.562       **/563      CannotAcceptNonOwnedNft: AugmentedError<ApiType>;564      /**565       * Not the target owner of the sent NFT.566       **/567      CannotRejectNonOwnedNft: AugmentedError<ApiType>;568      /**569       * NFT was not sent and is not pending.570       **/571      CannotRejectNonPendingNft: AugmentedError<ApiType>;572      /**573       * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.574       * Sending to self is redundant.575       **/576      CannotSendToDescendentOrSelf: AugmentedError<ApiType>;577      /**578       * Too many tokens created in the collection, no new ones are allowed.579       **/580      CollectionFullOrLocked: AugmentedError<ApiType>;581      /**582       * Only destroying collections without tokens is allowed.583       **/584      CollectionNotEmpty: AugmentedError<ApiType>;585      /**586       * Collection does not exist, has a wrong type, or does not map to a Unique ID.587       **/588      CollectionUnknown: AugmentedError<ApiType>;589      /**590       * Property of the type of RMRK collection could not be read successfully.591       **/592      CorruptedCollectionType: AugmentedError<ApiType>;593      /**594       * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.595       **/596      NoAvailableCollectionId: AugmentedError<ApiType>;597      /**598       * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.599       **/600      NoAvailableNftId: AugmentedError<ApiType>;601      /**602       * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.603       **/604      NoAvailableResourceId: AugmentedError<ApiType>;605      /**606       * Token is marked as non-transferable, and thus cannot be transferred.607       **/608      NonTransferable: AugmentedError<ApiType>;609      /**610       * No permission to perform action.611       **/612      NoPermission: AugmentedError<ApiType>;613      /**614       * No such resource found.615       **/616      ResourceDoesntExist: AugmentedError<ApiType>;617      /**618       * Resource is not pending for the operation.619       **/620      ResourceNotPending: AugmentedError<ApiType>;621      /**622       * Could not find a property by the supplied key.623       **/624      RmrkPropertyIsNotFound: AugmentedError<ApiType>;625      /**626       * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).627       **/628      RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;629      /**630       * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).631       **/632      RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;633      /**634       * Something went wrong when decoding encoded data from the storage.635       * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.636       **/637      UnableToDecodeRmrkData: AugmentedError<ApiType>;638      /**639       * Generic error640       **/641      [key: string]: AugmentedError<ApiType>;642    };643    rmrkEquip: {644      /**645       * Base collection linked to this ID does not exist.646       **/647      BaseDoesntExist: AugmentedError<ApiType>;648      /**649       * No Theme named "default" is associated with the Base.650       **/651      NeedsDefaultThemeFirst: AugmentedError<ApiType>;652      /**653       * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.654       **/655      NoAvailableBaseId: AugmentedError<ApiType>;656      /**657       * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow658       **/659      NoAvailablePartId: AugmentedError<ApiType>;660      /**661       * Cannot assign equippables to a fixed Part.662       **/663      NoEquippableOnFixedPart: AugmentedError<ApiType>;664      /**665       * Part linked to this ID does not exist.666       **/667      PartDoesntExist: AugmentedError<ApiType>;668      /**669       * No permission to perform action.670       **/671      PermissionError: AugmentedError<ApiType>;672      /**673       * Generic error674       **/675      [key: string]: AugmentedError<ApiType>;676    };677    structure: {678      /**679       * While nesting, reached the breadth limit of nesting, exceeding the provided budget.680       **/681      BreadthLimit: AugmentedError<ApiType>;682      /**683       * While nesting, reached the depth limit of nesting, exceeding the provided budget.684       **/685      DepthLimit: AugmentedError<ApiType>;686      /**687       * While nesting, encountered an already checked account, detecting a loop.688       **/689      OuroborosDetected: AugmentedError<ApiType>;690      /**691       * Couldn't find the token owner that is itself a token.692       **/693      TokenNotFound: AugmentedError<ApiType>;694      /**695       * Generic error696       **/697      [key: string]: AugmentedError<ApiType>;698    };699    sudo: {700      /**701       * Sender must be the Sudo account702       **/703      RequireSudo: AugmentedError<ApiType>;704      /**705       * Generic error706       **/707      [key: string]: AugmentedError<ApiType>;708    };709    system: {710      /**711       * The origin filter prevent the call to be dispatched.712       **/713      CallFiltered: AugmentedError<ApiType>;714      /**715       * Failed to extract the runtime version from the new runtime.716       * 717       * Either calling `Core_version` or decoding `RuntimeVersion` failed.718       **/719      FailedToExtractRuntimeVersion: AugmentedError<ApiType>;720      /**721       * The name of specification does not match between the current runtime722       * and the new runtime.723       **/724      InvalidSpecName: AugmentedError<ApiType>;725      /**726       * Suicide called when the account has non-default composite data.727       **/728      NonDefaultComposite: AugmentedError<ApiType>;729      /**730       * There is a non-zero reference count preventing the account from being purged.731       **/732      NonZeroRefCount: AugmentedError<ApiType>;733      /**734       * The specification version is not allowed to decrease between the current runtime735       * and the new runtime.736       **/737      SpecVersionNeedsToIncrease: AugmentedError<ApiType>;738      /**739       * Generic error740       **/741      [key: string]: AugmentedError<ApiType>;742    };743    testUtils: {744      TestPalletDisabled: AugmentedError<ApiType>;745      TriggerRollback: AugmentedError<ApiType>;746      /**747       * Generic error748       **/749      [key: string]: AugmentedError<ApiType>;750    };751    tokens: {752      /**753       * Cannot convert Amount into Balance type754       **/755      AmountIntoBalanceFailed: AugmentedError<ApiType>;756      /**757       * The balance is too low758       **/759      BalanceTooLow: AugmentedError<ApiType>;760      /**761       * Beneficiary account must pre-exist762       **/763      DeadAccount: AugmentedError<ApiType>;764      /**765       * Value too low to create account due to existential deposit766       **/767      ExistentialDeposit: AugmentedError<ApiType>;768      /**769       * Transfer/payment would kill account770       **/771      KeepAlive: AugmentedError<ApiType>;772      /**773       * Failed because liquidity restrictions due to locking774       **/775      LiquidityRestrictions: AugmentedError<ApiType>;776      /**777       * Failed because the maximum locks was exceeded778       **/779      MaxLocksExceeded: AugmentedError<ApiType>;780      TooManyReserves: AugmentedError<ApiType>;781      /**782       * Generic error783       **/784      [key: string]: AugmentedError<ApiType>;785    };786    treasury: {787      /**788       * The spend origin is valid but the amount it is allowed to spend is lower than the789       * amount to be spent.790       **/791      InsufficientPermission: AugmentedError<ApiType>;792      /**793       * Proposer's balance is too low.794       **/795      InsufficientProposersBalance: AugmentedError<ApiType>;796      /**797       * No proposal or bounty at that index.798       **/799      InvalidIndex: AugmentedError<ApiType>;800      /**801       * Proposal has not been approved.802       **/803      ProposalNotApproved: AugmentedError<ApiType>;804      /**805       * Too many approvals in the queue.806       **/807      TooManyApprovals: AugmentedError<ApiType>;808      /**809       * Generic error810       **/811      [key: string]: AugmentedError<ApiType>;812    };813    unique: {814      /**815       * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].816       **/817      CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;818      /**819       * Length of items properties must be greater than 0.820       **/821      EmptyArgument: AugmentedError<ApiType>;822      /**823       * Repertition is only supported by refungible collection.824       **/825      RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;826      /**827       * Generic error828       **/829      [key: string]: AugmentedError<ApiType>;830    };831    vesting: {832      /**833       * The vested transfer amount is too low834       **/835      AmountLow: AugmentedError<ApiType>;836      /**837       * Insufficient amount of balance to lock838       **/839      InsufficientBalanceToLock: AugmentedError<ApiType>;840      /**841       * Failed because the maximum vesting schedules was exceeded842       **/843      MaxVestingSchedulesExceeded: AugmentedError<ApiType>;844      /**845       * This account have too many vesting schedules846       **/847      TooManyVestingSchedules: AugmentedError<ApiType>;848      /**849       * Vesting period is zero850       **/851      ZeroVestingPeriod: AugmentedError<ApiType>;852      /**853       * Number of vests is zero854       **/855      ZeroVestingPeriodCount: AugmentedError<ApiType>;856      /**857       * Generic error858       **/859      [key: string]: AugmentedError<ApiType>;860    };861    xcmpQueue: {862      /**863       * Bad overweight index.864       **/865      BadOverweightIndex: AugmentedError<ApiType>;866      /**867       * Bad XCM data.868       **/869      BadXcm: AugmentedError<ApiType>;870      /**871       * Bad XCM origin.872       **/873      BadXcmOrigin: AugmentedError<ApiType>;874      /**875       * Failed to send XCM message.876       **/877      FailedToSend: AugmentedError<ApiType>;878      /**879       * Provided weight is possibly not enough to execute the message.880       **/881      WeightOverLimit: AugmentedError<ApiType>;882      /**883       * Generic error884       **/885      [key: string]: AugmentedError<ApiType>;886    };887    xTokens: {888      /**889       * Asset has no reserve location.890       **/891      AssetHasNoReserve: AugmentedError<ApiType>;892      /**893       * The specified index does not exist in a MultiAssets struct.894       **/895      AssetIndexNonExistent: AugmentedError<ApiType>;896      /**897       * The version of the `Versioned` value used is not able to be898       * interpreted.899       **/900      BadVersion: AugmentedError<ApiType>;901      /**902       * Could not re-anchor the assets to declare the fees for the903       * destination chain.904       **/905      CannotReanchor: AugmentedError<ApiType>;906      /**907       * The destination `MultiLocation` provided cannot be inverted.908       **/909      DestinationNotInvertible: AugmentedError<ApiType>;910      /**911       * We tried sending distinct asset and fee but they have different912       * reserve chains.913       **/914      DistinctReserveForAssetAndFee: AugmentedError<ApiType>;915      /**916       * Fee is not enough.917       **/918      FeeNotEnough: AugmentedError<ApiType>;919      /**920       * Could not get ancestry of asset reserve location.921       **/922      InvalidAncestry: AugmentedError<ApiType>;923      /**924       * The MultiAsset is invalid.925       **/926      InvalidAsset: AugmentedError<ApiType>;927      /**928       * Invalid transfer destination.929       **/930      InvalidDest: AugmentedError<ApiType>;931      /**932       * MinXcmFee not registered for certain reserve location933       **/934      MinXcmFeeNotDefined: AugmentedError<ApiType>;935      /**936       * Not cross-chain transfer.937       **/938      NotCrossChainTransfer: AugmentedError<ApiType>;939      /**940       * Currency is not cross-chain transferable.941       **/942      NotCrossChainTransferableCurrency: AugmentedError<ApiType>;943      /**944       * Not supported MultiLocation945       **/946      NotSupportedMultiLocation: AugmentedError<ApiType>;947      /**948       * The number of assets to be sent is over the maximum.949       **/950      TooManyAssetsBeingSent: AugmentedError<ApiType>;951      /**952       * The message's weight could not be determined.953       **/954      UnweighableMessage: AugmentedError<ApiType>;955      /**956       * XCM execution failed.957       **/958      XcmExecutionFailed: AugmentedError<ApiType>;959      /**960       * The transfering asset amount is zero.961       **/962      ZeroAmount: AugmentedError<ApiType>;963      /**964       * The fee is zero.965       **/966      ZeroFee: AugmentedError<ApiType>;967      /**968       * Generic error969       **/970      [key: string]: AugmentedError<ApiType>;971    };972  } // AugmentedErrors973} // declare module