TypeScript SDK

TransferBatchParams

Represents the parameters for a batch transfer operation.

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