Docs

SendBatchTransactionOptions

type SendBatchTransactionOptions = Prettify<
{ transactions: Array<PreparedTransaction> } & (
| { account?: never; wallet: Wallet }
| { account: Account; wallet?: never }
)
>;