Use the /api/Wallet/build-transaction call to create transactions.
An object containing the necessary parameters used to a send transaction request.
A string containing the transaction in hexadecimal format.
Returns transaction details
const response = await fetch('https://strax.nownodes.io/api/Wallet/send-transaction', { method: 'POST', headers: { "Content-Type": "application/json-patch+json" }, body: JSON.stringify({ "hex": "text" }), }); const data = await response.json();