wallet/sendTransaction
Creates a transaction, posts the transaction, and submits it to the wallet, mempool, and network.
Request
{
  account?: string
  outputs: {
    publicAddress: string
    amount: string
    memo?: string
    memoHex?: string
    assetId?: string
  }[]
  fee?: string
  feeRate?: string
  expiration?: number | null
  expirationDelta?: number | null
  confirmations?: number | null
}
Note: outputs.memoHex is a hex-encoded string with a max length of 32 bytes (64 characters)
Response
{
  account: string;
  hash: string;
  transaction: string;
}