type ToSerializableTransactionOptions = { from?: string | Account; transaction: PreparedTransaction<any>;};
The from address or account to use for gas estimation and authorization signing.
type from = string | Account;
The transaction to convert to a serializable transaction.
type transaction = PreparedTransaction<any>;