Address

generates the Merkle proof for the given address at a specific root hash

GEThttps://egld.nownodes.io/proof/root-hash/{roothash}/address/{address}
Path parameters
roothash*string

the root hash to be used when generating the proof

address*string

the address to be used when generating the proof

Response

successful operation

Body
dataobject
errorstring
codestring
Request
const response = await fetch('https://egld.nownodes.io/proof/root-hash/{roothash}/address/{address}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "error": "text",
  "code": "text"
}