CommonSwapResponseIssuesBalance:
    | { currentBalance: string; requiredBalance: string; token: string }
    | null

Details of the balance of the fromToken that the taker must hold. Null if the taker has a sufficient balance.

Type declaration

  • { currentBalance: string; requiredBalance: string; token: string }
    • currentBalance: string

      The current balance of the fromToken by the taker.

      ^\d+$

    • requiredBalance: string

      The amount of the token that the taker must hold.

      ^\d+$

    • token: string

      The 0x-prefixed contract address of the token.

      ^0x[a-fA-F0-9]{40}$

  • null