Last updated 2 months ago
Returns information necessary to build a transaction
The logical name of the network
"{{network}}"
All info needed to build a transaction
An integer between 0 and 10^10, marking the current epoch
0
10^10
const response = await fetch('https://xrd.nownodes.io/core/lts/transaction/construction', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "network": "{{network}}" }), }); const data = await response.json();
{ "current_epoch": 0, "ledger_clock": { "unix_timestamp_ms": 0, "date_time": "text" } }