Get chain params for chain

Queries a list of GetChainParamsForChain items.

GEThttps://zetachain.nownodes.io/zeta-chain/observer/get_chain_params_for_chain/{chain_id}
Path parameters
chain_id*string (int64)
Response

A successful response.

Body
chain_paramsobject
Request
const response = await fetch('https://zetachain.nownodes.io/zeta-chain/observer/get_chain_params_for_chain/{chain_id}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "chain_params": {
    "chain_id": "text",
    "confirmation_count": "text",
    "gas_price_ticker": "text",
    "inbound_ticker": "text",
    "outbound_ticker": "text",
    "watch_utxo_ticker": "text",
    "zeta_token_contract_address": "text",
    "connector_contract_address": "text",
    "erc20_custody_contract_address": "text",
    "outbound_schedule_interval": "text",
    "outbound_schedule_lookahead": "text",
    "ballot_threshold": "text",
    "min_observer_delegation": "text",
    "is_supported": false,
    "gateway_address": "text"
  }
}