Details of balance issues for a swap.

interface SwapBalanceIssue {
    currentBalance: bigint;
    requiredBalance: bigint;
    token: `0x${string}`;
}

Properties

currentBalance: bigint

The current balance of the fromToken by the taker.

requiredBalance: bigint

The amount of the token that the taker must hold.

token: `0x${string}`

The contract address of the token.