Payee

Payee returns the registered payee address for a specific channel given the relayer address

GEThttps://luna.nownodes.io/ibc/apps/fee/v1/channels/{channel_id}/relayers/{relayer}/payee
Path parameters
channel_id*string

unique channel identifier

relayer*string

the relayer address to which the distribution address is registered

Response

A successful response.

Body
payee_addressthe payee address to which packet fees are paid out
Request
const response = await fetch('https://luna.nownodes.io/ibc/apps/fee/v1/channels/{channel_id}/relayers/{relayer}/payee', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "payee_address": "text"
}