git.delta.rocks / unique-network / refs/commits / 81e4f2e24fd5

difftreelog

source

tests/src/interfaces/augment-api-errors.ts29.5 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       * Undefined error.308       **/309      Undefined: AugmentedError<ApiType>;310      /**311       * Withdraw fee failed312       **/313      WithdrawFailed: AugmentedError<ApiType>;314      /**315       * Generic error316       **/317      [key: string]: AugmentedError<ApiType>;318    };319    evmCoderSubstrate: {320      OutOfFund: AugmentedError<ApiType>;321      OutOfGas: AugmentedError<ApiType>;322      /**323       * Generic error324       **/325      [key: string]: AugmentedError<ApiType>;326    };327    evmContractHelpers: {328      /**329       * No pending sponsor for contract.330       **/331      NoPendingSponsor: AugmentedError<ApiType>;332      /**333       * This method is only executable by contract owner334       **/335      NoPermission: AugmentedError<ApiType>;336      /**337       * Number of methods that sponsored limit is defined for exceeds maximum.338       **/339      TooManyMethodsHaveSponsoredLimit: AugmentedError<ApiType>;340      /**341       * Generic error342       **/343      [key: string]: AugmentedError<ApiType>;344    };345    evmMigration: {346      /**347       * Migration of this account is not yet started, or already finished.348       **/349      AccountIsNotMigrating: AugmentedError<ApiType>;350      /**351       * Can only migrate to empty address.352       **/353      AccountNotEmpty: AugmentedError<ApiType>;354      /**355       * Failed to decode event bytes356       **/357      BadEvent: AugmentedError<ApiType>;358      /**359       * Generic error360       **/361      [key: string]: AugmentedError<ApiType>;362    };363    foreignAssets: {364      /**365       * AssetId exists366       **/367      AssetIdExisted: AugmentedError<ApiType>;368      /**369       * AssetId not exists370       **/371      AssetIdNotExists: AugmentedError<ApiType>;372      /**373       * The given location could not be used (e.g. because it cannot be expressed in the374       * desired version of XCM).375       **/376      BadLocation: AugmentedError<ApiType>;377      /**378       * MultiLocation existed379       **/380      MultiLocationExisted: AugmentedError<ApiType>;381      /**382       * Generic error383       **/384      [key: string]: AugmentedError<ApiType>;385    };386    fungible: {387      /**388       * Fungible token does not support nesting.389       **/390      FungibleDisallowsNesting: AugmentedError<ApiType>;391      /**392       * Tried to set data for fungible item.393       **/394      FungibleItemsDontHaveData: AugmentedError<ApiType>;395      /**396       * Fungible tokens hold no ID, and the default value of TokenId for Fungible collection is 0.397       **/398      FungibleItemsHaveNoId: AugmentedError<ApiType>;399      /**400       * Only a fungible collection could be possibly broken; any fungible token is valid.401       **/402      FungibleTokensAreAlwaysValid: AugmentedError<ApiType>;403      /**404       * Not Fungible item data used to mint in Fungible collection.405       **/406      NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;407      /**408       * Setting allowance for all is not allowed.409       **/410      SettingAllowanceForAllNotAllowed: AugmentedError<ApiType>;411      /**412       * Setting item properties is not allowed.413       **/414      SettingPropertiesNotAllowed: AugmentedError<ApiType>;415      /**416       * Generic error417       **/418      [key: string]: AugmentedError<ApiType>;419    };420    maintenance: {421      /**422       * Generic error423       **/424      [key: string]: AugmentedError<ApiType>;425    };426    nonfungible: {427      /**428       * Unable to burn NFT with children429       **/430      CantBurnNftWithChildren: AugmentedError<ApiType>;431      /**432       * Used amount > 1 with NFT433       **/434      NonfungibleItemsHaveNoAmount: AugmentedError<ApiType>;435      /**436       * Not Nonfungible item data used to mint in Nonfungible collection.437       **/438      NotNonfungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;439      /**440       * Generic error441       **/442      [key: string]: AugmentedError<ApiType>;443    };444    parachainSystem: {445      /**446       * The inherent which supplies the host configuration did not run this block447       **/448      HostConfigurationNotAvailable: AugmentedError<ApiType>;449      /**450       * No code upgrade has been authorized.451       **/452      NothingAuthorized: AugmentedError<ApiType>;453      /**454       * No validation function upgrade is currently scheduled.455       **/456      NotScheduled: AugmentedError<ApiType>;457      /**458       * Attempt to upgrade validation function while existing upgrade pending459       **/460      OverlappingUpgrades: AugmentedError<ApiType>;461      /**462       * Polkadot currently prohibits this parachain from upgrading its validation function463       **/464      ProhibitedByPolkadot: AugmentedError<ApiType>;465      /**466       * The supplied validation function has compiled into a blob larger than Polkadot is467       * willing to run468       **/469      TooBig: AugmentedError<ApiType>;470      /**471       * The given code upgrade has not been authorized.472       **/473      Unauthorized: AugmentedError<ApiType>;474      /**475       * The inherent which supplies the validation data did not run this block476       **/477      ValidationDataNotAvailable: AugmentedError<ApiType>;478      /**479       * Generic error480       **/481      [key: string]: AugmentedError<ApiType>;482    };483    polkadotXcm: {484      /**485       * The location is invalid since it already has a subscription from us.486       **/487      AlreadySubscribed: AugmentedError<ApiType>;488      /**489       * The given location could not be used (e.g. because it cannot be expressed in the490       * desired version of XCM).491       **/492      BadLocation: AugmentedError<ApiType>;493      /**494       * The version of the `Versioned` value used is not able to be interpreted.495       **/496      BadVersion: AugmentedError<ApiType>;497      /**498       * Could not re-anchor the assets to declare the fees for the destination chain.499       **/500      CannotReanchor: AugmentedError<ApiType>;501      /**502       * The destination `MultiLocation` provided cannot be inverted.503       **/504      DestinationNotInvertible: AugmentedError<ApiType>;505      /**506       * The assets to be sent are empty.507       **/508      Empty: AugmentedError<ApiType>;509      /**510       * The message execution fails the filter.511       **/512      Filtered: AugmentedError<ApiType>;513      /**514       * Origin is invalid for sending.515       **/516      InvalidOrigin: AugmentedError<ApiType>;517      /**518       * The referenced subscription could not be found.519       **/520      NoSubscription: AugmentedError<ApiType>;521      /**522       * There was some other issue (i.e. not to do with routing) in sending the message. Perhaps523       * a lack of space for buffering the message.524       **/525      SendFailure: AugmentedError<ApiType>;526      /**527       * Too many assets have been attempted for transfer.528       **/529      TooManyAssets: AugmentedError<ApiType>;530      /**531       * The desired destination was unreachable, generally because there is a no way of routing532       * to it.533       **/534      Unreachable: AugmentedError<ApiType>;535      /**536       * The message's weight could not be determined.537       **/538      UnweighableMessage: AugmentedError<ApiType>;539      /**540       * Generic error541       **/542      [key: string]: AugmentedError<ApiType>;543    };544    refungible: {545      /**546       * Not Refungible item data used to mint in Refungible collection.547       **/548      NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;549      /**550       * Refungible token can't nest other tokens.551       **/552      RefungibleDisallowsNesting: AugmentedError<ApiType>;553      /**554       * Refungible token can't be repartitioned by user who isn't owns all pieces.555       **/556      RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;557      /**558       * Setting item properties is not allowed.559       **/560      SettingPropertiesNotAllowed: AugmentedError<ApiType>;561      /**562       * Maximum refungibility exceeded.563       **/564      WrongRefungiblePieces: AugmentedError<ApiType>;565      /**566       * Generic error567       **/568      [key: string]: AugmentedError<ApiType>;569    };570    rmrkCore: {571      /**572       * Not the target owner of the sent NFT.573       **/574      CannotAcceptNonOwnedNft: AugmentedError<ApiType>;575      /**576       * Not the target owner of the sent NFT.577       **/578      CannotRejectNonOwnedNft: AugmentedError<ApiType>;579      /**580       * NFT was not sent and is not pending.581       **/582      CannotRejectNonPendingNft: AugmentedError<ApiType>;583      /**584       * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.585       * Sending to self is redundant.586       **/587      CannotSendToDescendentOrSelf: AugmentedError<ApiType>;588      /**589       * Too many tokens created in the collection, no new ones are allowed.590       **/591      CollectionFullOrLocked: AugmentedError<ApiType>;592      /**593       * Only destroying collections without tokens is allowed.594       **/595      CollectionNotEmpty: AugmentedError<ApiType>;596      /**597       * Collection does not exist, has a wrong type, or does not map to a Unique ID.598       **/599      CollectionUnknown: AugmentedError<ApiType>;600      /**601       * Property of the type of RMRK collection could not be read successfully.602       **/603      CorruptedCollectionType: AugmentedError<ApiType>;604      /**605       * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.606       **/607      NoAvailableCollectionId: AugmentedError<ApiType>;608      /**609       * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.610       **/611      NoAvailableNftId: AugmentedError<ApiType>;612      /**613       * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.614       **/615      NoAvailableResourceId: AugmentedError<ApiType>;616      /**617       * Token is marked as non-transferable, and thus cannot be transferred.618       **/619      NonTransferable: AugmentedError<ApiType>;620      /**621       * No permission to perform action.622       **/623      NoPermission: AugmentedError<ApiType>;624      /**625       * No such resource found.626       **/627      ResourceDoesntExist: AugmentedError<ApiType>;628      /**629       * Resource is not pending for the operation.630       **/631      ResourceNotPending: AugmentedError<ApiType>;632      /**633       * Could not find a property by the supplied key.634       **/635      RmrkPropertyIsNotFound: AugmentedError<ApiType>;636      /**637       * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).638       **/639      RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;640      /**641       * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).642       **/643      RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;644      /**645       * Something went wrong when decoding encoded data from the storage.646       * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.647       **/648      UnableToDecodeRmrkData: AugmentedError<ApiType>;649      /**650       * Generic error651       **/652      [key: string]: AugmentedError<ApiType>;653    };654    rmrkEquip: {655      /**656       * Base collection linked to this ID does not exist.657       **/658      BaseDoesntExist: AugmentedError<ApiType>;659      /**660       * No Theme named "default" is associated with the Base.661       **/662      NeedsDefaultThemeFirst: AugmentedError<ApiType>;663      /**664       * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.665       **/666      NoAvailableBaseId: AugmentedError<ApiType>;667      /**668       * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow669       **/670      NoAvailablePartId: AugmentedError<ApiType>;671      /**672       * Cannot assign equippables to a fixed Part.673       **/674      NoEquippableOnFixedPart: AugmentedError<ApiType>;675      /**676       * Part linked to this ID does not exist.677       **/678      PartDoesntExist: AugmentedError<ApiType>;679      /**680       * No permission to perform action.681       **/682      PermissionError: AugmentedError<ApiType>;683      /**684       * Generic error685       **/686      [key: string]: AugmentedError<ApiType>;687    };688    structure: {689      /**690       * While nesting, reached the breadth limit of nesting, exceeding the provided budget.691       **/692      BreadthLimit: AugmentedError<ApiType>;693      /**694       * While nesting, reached the depth limit of nesting, exceeding the provided budget.695       **/696      DepthLimit: AugmentedError<ApiType>;697      /**698       * While nesting, encountered an already checked account, detecting a loop.699       **/700      OuroborosDetected: AugmentedError<ApiType>;701      /**702       * Couldn't find the token owner that is itself a token.703       **/704      TokenNotFound: AugmentedError<ApiType>;705      /**706       * Generic error707       **/708      [key: string]: AugmentedError<ApiType>;709    };710    sudo: {711      /**712       * Sender must be the Sudo account713       **/714      RequireSudo: AugmentedError<ApiType>;715      /**716       * Generic error717       **/718      [key: string]: AugmentedError<ApiType>;719    };720    system: {721      /**722       * The origin filter prevent the call to be dispatched.723       **/724      CallFiltered: AugmentedError<ApiType>;725      /**726       * Failed to extract the runtime version from the new runtime.727       * 728       * Either calling `Core_version` or decoding `RuntimeVersion` failed.729       **/730      FailedToExtractRuntimeVersion: AugmentedError<ApiType>;731      /**732       * The name of specification does not match between the current runtime733       * and the new runtime.734       **/735      InvalidSpecName: AugmentedError<ApiType>;736      /**737       * Suicide called when the account has non-default composite data.738       **/739      NonDefaultComposite: AugmentedError<ApiType>;740      /**741       * There is a non-zero reference count preventing the account from being purged.742       **/743      NonZeroRefCount: AugmentedError<ApiType>;744      /**745       * The specification version is not allowed to decrease between the current runtime746       * and the new runtime.747       **/748      SpecVersionNeedsToIncrease: AugmentedError<ApiType>;749      /**750       * Generic error751       **/752      [key: string]: AugmentedError<ApiType>;753    };754    testUtils: {755      TestPalletDisabled: AugmentedError<ApiType>;756      TriggerRollback: AugmentedError<ApiType>;757      /**758       * Generic error759       **/760      [key: string]: AugmentedError<ApiType>;761    };762    tokens: {763      /**764       * Cannot convert Amount into Balance type765       **/766      AmountIntoBalanceFailed: AugmentedError<ApiType>;767      /**768       * The balance is too low769       **/770      BalanceTooLow: AugmentedError<ApiType>;771      /**772       * Beneficiary account must pre-exist773       **/774      DeadAccount: AugmentedError<ApiType>;775      /**776       * Value too low to create account due to existential deposit777       **/778      ExistentialDeposit: AugmentedError<ApiType>;779      /**780       * Transfer/payment would kill account781       **/782      KeepAlive: AugmentedError<ApiType>;783      /**784       * Failed because liquidity restrictions due to locking785       **/786      LiquidityRestrictions: AugmentedError<ApiType>;787      /**788       * Failed because the maximum locks was exceeded789       **/790      MaxLocksExceeded: AugmentedError<ApiType>;791      TooManyReserves: AugmentedError<ApiType>;792      /**793       * Generic error794       **/795      [key: string]: AugmentedError<ApiType>;796    };797    treasury: {798      /**799       * The spend origin is valid but the amount it is allowed to spend is lower than the800       * amount to be spent.801       **/802      InsufficientPermission: AugmentedError<ApiType>;803      /**804       * Proposer's balance is too low.805       **/806      InsufficientProposersBalance: AugmentedError<ApiType>;807      /**808       * No proposal or bounty at that index.809       **/810      InvalidIndex: AugmentedError<ApiType>;811      /**812       * Proposal has not been approved.813       **/814      ProposalNotApproved: AugmentedError<ApiType>;815      /**816       * Too many approvals in the queue.817       **/818      TooManyApprovals: AugmentedError<ApiType>;819      /**820       * Generic error821       **/822      [key: string]: AugmentedError<ApiType>;823    };824    unique: {825      /**826       * Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].827       **/828      CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;829      /**830       * Length of items properties must be greater than 0.831       **/832      EmptyArgument: AugmentedError<ApiType>;833      /**834       * Repertition is only supported by refungible collection.835       **/836      RepartitionCalledOnNonRefungibleCollection: AugmentedError<ApiType>;837      /**838       * Generic error839       **/840      [key: string]: AugmentedError<ApiType>;841    };842    vesting: {843      /**844       * The vested transfer amount is too low845       **/846      AmountLow: AugmentedError<ApiType>;847      /**848       * Insufficient amount of balance to lock849       **/850      InsufficientBalanceToLock: AugmentedError<ApiType>;851      /**852       * Failed because the maximum vesting schedules was exceeded853       **/854      MaxVestingSchedulesExceeded: AugmentedError<ApiType>;855      /**856       * This account have too many vesting schedules857       **/858      TooManyVestingSchedules: AugmentedError<ApiType>;859      /**860       * Vesting period is zero861       **/862      ZeroVestingPeriod: AugmentedError<ApiType>;863      /**864       * Number of vests is zero865       **/866      ZeroVestingPeriodCount: AugmentedError<ApiType>;867      /**868       * Generic error869       **/870      [key: string]: AugmentedError<ApiType>;871    };872    xcmpQueue: {873      /**874       * Bad overweight index.875       **/876      BadOverweightIndex: AugmentedError<ApiType>;877      /**878       * Bad XCM data.879       **/880      BadXcm: AugmentedError<ApiType>;881      /**882       * Bad XCM origin.883       **/884      BadXcmOrigin: AugmentedError<ApiType>;885      /**886       * Failed to send XCM message.887       **/888      FailedToSend: AugmentedError<ApiType>;889      /**890       * Provided weight is possibly not enough to execute the message.891       **/892      WeightOverLimit: AugmentedError<ApiType>;893      /**894       * Generic error895       **/896      [key: string]: AugmentedError<ApiType>;897    };898    xTokens: {899      /**900       * Asset has no reserve location.901       **/902      AssetHasNoReserve: AugmentedError<ApiType>;903      /**904       * The specified index does not exist in a MultiAssets struct.905       **/906      AssetIndexNonExistent: AugmentedError<ApiType>;907      /**908       * The version of the `Versioned` value used is not able to be909       * interpreted.910       **/911      BadVersion: AugmentedError<ApiType>;912      /**913       * Could not re-anchor the assets to declare the fees for the914       * destination chain.915       **/916      CannotReanchor: AugmentedError<ApiType>;917      /**918       * The destination `MultiLocation` provided cannot be inverted.919       **/920      DestinationNotInvertible: AugmentedError<ApiType>;921      /**922       * We tried sending distinct asset and fee but they have different923       * reserve chains.924       **/925      DistinctReserveForAssetAndFee: AugmentedError<ApiType>;926      /**927       * Fee is not enough.928       **/929      FeeNotEnough: AugmentedError<ApiType>;930      /**931       * Could not get ancestry of asset reserve location.932       **/933      InvalidAncestry: AugmentedError<ApiType>;934      /**935       * The MultiAsset is invalid.936       **/937      InvalidAsset: AugmentedError<ApiType>;938      /**939       * Invalid transfer destination.940       **/941      InvalidDest: AugmentedError<ApiType>;942      /**943       * MinXcmFee not registered for certain reserve location944       **/945      MinXcmFeeNotDefined: AugmentedError<ApiType>;946      /**947       * Not cross-chain transfer.948       **/949      NotCrossChainTransfer: AugmentedError<ApiType>;950      /**951       * Currency is not cross-chain transferable.952       **/953      NotCrossChainTransferableCurrency: AugmentedError<ApiType>;954      /**955       * Not supported MultiLocation956       **/957      NotSupportedMultiLocation: AugmentedError<ApiType>;958      /**959       * The number of assets to be sent is over the maximum.960       **/961      TooManyAssetsBeingSent: AugmentedError<ApiType>;962      /**963       * The message's weight could not be determined.964       **/965      UnweighableMessage: AugmentedError<ApiType>;966      /**967       * XCM execution failed.968       **/969      XcmExecutionFailed: AugmentedError<ApiType>;970      /**971       * The transfering asset amount is zero.972       **/973      ZeroAmount: AugmentedError<ApiType>;974      /**975       * The fee is zero.976       **/977      ZeroFee: AugmentedError<ApiType>;978      /**979       * Generic error980       **/981      [key: string]: AugmentedError<ApiType>;982    };983  } // AugmentedErrors984} // declare module