chains

Get information about a specific chain

get/v1/chains/{chainID}

Path parameters

chainIDstring string required

ChainID (Bech32)

Response

Information about a specific chain

chainIDstring string required

ChainID (Bech32-encoded).

chainOwnerIdstring string required

The chain owner address (Bech32-encoded).

evmChainIdinteger required

The EVM chain ID

evmJsonRpcUrlstring string required

The EVM json rpc url

evmWebSocketUrlstring string required

The EVM websocket url

isActiveboolean required

Whether or not the chain is active.

publicUrlstring string required

The fully qualified public url leading to the chains metadata

standardstring string required

The chain info standard

Example response

{
  "standard": "standard",
  "chainOwnerId": "tst1qzjsxstc0k850jevpqu08tj0suql9u7hvh3vq3eaaem3gkx7r646zqpdn6e",
  "gasLimits": {
    "maxGasExternalViewCall": 5,
    "minGasPerRequest": 7,
    "maxGasPerBlock": 5,
    "maxGasPerRequest": 2
  },
  "chainID": "tst1prcw42l5u4g24tqg628d7qzh7n6m4k4ktvgayh44dyt68y930qzy2lr054v",
  "evmChainId": 1074,
  "evmWebSocketUrl": "evmWebSocketUrl",
  "publicUrl": "publicUrl",
  "gasFeePolicy": {
    "gasPerToken": {
      "a": 1,
      "b": 100
    },
    "validatorFeeShare": 1,
    "evmGasRatio": {
      "a": 0,
      "b": 0
    }
  },
  "evmJsonRpcUrl": "evmJsonRpcUrl",
  "isActive": true
}

Changes