Denom hashes

DenomHash queries a denomination hash information.

GEThttps://inj.nownodes.io/ibc/apps/transfer/v1/denom_hashes/{trace}
Path parameters
trace*string

The denomination trace ([port_id]/[channel_id])+/[denom]

Response

A successful response.

Body
hashstring

hash (in hex format) of the denomination trace information.

Request
const response = await fetch('https://inj.nownodes.io/ibc/apps/transfer/v1/denom_hashes/{trace}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "hash": "text"
}