TypeScript SDK

ApproveParams

Represents the parameters for the approve function.

type ApproveParams = Prettify<
WithOverrides<
{ spender: Address } & (
| { amount: number | string }
| { amountWei: bigint }
)
>
>;