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 buffer with a max length of 32 bytes
Response
{
account: string;
hash: string;
transaction: string;
}