Returns the last block information for all chains.
OK
Returns the last block information for the provided chain.
"BTC"
const response = await fetch('https://thor.nownodes.io/thorchain/lastblock', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "chain": "text", "last_observed_in": 0, "last_signed_out": 0, "thorchain": 0 } ]
const response = await fetch('https://thor.nownodes.io/thorchain/lastblock/{chain}', { method: 'GET', headers: {}, }); const data = await response.json();