Type alias TokenBalanceInsufficientDetails

TokenBalanceInsufficientDetails: {
    availableBalance: Type;
    index: number;
    requiredBalance: Type;
}

Details for a reject reason where the account's token balance is insufficient for the attempted operation.

See CIS-7: reject-reasons/tokenBalanceInsufficient

Type declaration

  • availableBalance: Type

    The available balance for the sender at the time of the operation.

  • index: number

    The index in the list of operations of the failing operation.

  • requiredBalance: Type

    The minimum required balance to perform the operation.

Generated using TypeDoc