ApproveParams

Represents the parameters for the approve function.

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