Inbound addresses

Returns the set of asgard addresses that should be used for inbound transactions.

GEThttps://thor.nownodes.io/thorchain/inbound_addresses
Query parameters
Response

OK

Body
chainstring
Example: "BTC"
pub_keystring
Example: "thorpub1addwnpepq2jqhv5rdqlkusfxy05stfzcgslhhz5qh8pxetw5ry2aa6awgdh3shq8s82"
addressstring
Example: "bc1qn9esxuw8ca7ts8l6w66kdh800s09msvutydc46"
routerstring
Example: "0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146"
halted*boolean

Returns true if trading is unavailable for this chain, either because trading is halted globally or specifically for this chain

Example: false
global_trading_pausedboolean

Returns true if trading is paused globally

Example: false
chain_trading_pausedboolean

Returns true if trading is paused for this chain

Example: false
chain_lp_actions_pausedboolean

Returns true if LP actions are paused for this chain

Example: false
gas_ratestring

The minimum fee rate used by vaults to send outbound TXs. The actual fee rate may be higher. For EVM chains this is returned in gwei (1e9).

Example: "214"
gas_rate_unitsstring

Units of the gas_rate.

Example: "satsperbyte"
outbound_tx_sizestring

Avg size of outbound TXs on each chain. For UTXO chains it may be larger than average, as it takes into account vault consolidation txs, which can have many vouts

Example: "1000"
outbound_feestring

The total outbound fee charged to the user for outbound txs in the gas asset of the chain.

Example: "428000"
dust_thresholdstring

Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transactions with asset amounts lower than the dust_threshold are ignored.

Example: "10000"
Request
const response = await fetch('https://thor.nownodes.io/thorchain/inbound_addresses', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "chain": "BTC",
    "pub_key": "thorpub1addwnpepq2jqhv5rdqlkusfxy05stfzcgslhhz5qh8pxetw5ry2aa6awgdh3shq8s82",
    "address": "bc1qn9esxuw8ca7ts8l6w66kdh800s09msvutydc46",
    "router": "0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146",
    "halted": false,
    "global_trading_paused": false,
    "chain_trading_paused": false,
    "chain_lp_actions_paused": false,
    "gas_rate": "214",
    "gas_rate_units": "satsperbyte",
    "outbound_tx_size": "1000",
    "outbound_fee": "428000",
    "dust_threshold": "10000"
  }
]