MintToParams

Represents the parameters for the mintTo function.

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