TransferParams

Represents the parameters for a transfer operation.

type TransferParams = Prettify<
{ to: string } & (
| { amount: number | string }
| { amountWei: bigint }
)
>;