Docs

SendTransactionOptions

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