CommonSwapResponseIssuesAllowance:
    | { currentAllowance: string; spender: string }
    | null

Details of the allowances that the taker must set in order to execute the swap successfully. Null if no allowance is required.

Type declaration

  • { currentAllowance: string; spender: string }
    • currentAllowance: string

      The current allowance of the fromToken by the taker.

      ^\d+$

    • spender: string

      The 0x-prefixed address of to set the allowance on.

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

  • null