TransferFromParams

Represents the parameters for the transferFrom function.

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