Returns the hashes of all the transactions currently in the mempool
The logical name of the network
"{{network}}"
Mempool List Response
const response = await fetch('https://xrd.nownodes.io/core/mempool/list', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "network": "{{network}}" }), }); const data = await response.json();
{ "contents": [ { "intent_hash": "text", "intent_hash_bech32m": "text", "payload_hash": "text", "payload_hash_bech32m": "text" } ] }