Submits a signed transaction payload to the network.
Hex-encoded notarized transaction payload which can be submitted.
Successful Submission
Is true if the transaction is a duplicate of an existing pending transaction.
const response = await fetch('https://xrd-gateway.nownodes.io/transaction/submit', { method: 'POST', headers: { "api-key": "text", "Content-Type": "application/json" }, body: JSON.stringify({ "notarized_transaction_hex": "text" }), }); const data = await response.json();
{ "duplicate": false }