chains

Get information about a specific chain

get/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).

descriptionstring string required

The description of the chain.

evmChainIdinteger required

The EVM chain ID

isActiveboolean required

Whether or not the chain is active.

maxBlobSizeinteger required

The maximum contract blob size.

maxEventSizeinteger required

The maximum event size.

maxEventsPerReqinteger required

The maximum amount of events per request.

Example response

{
  "chainOwnerId": "tst1qzjsxstc0k850jevpqu08tj0suql9u7hvh3vq3eaaem3gkx7r646zqpdn6e",
  "maxEventsPerReq": 50,
  "chainID": "tst1prcw42l5u4g24tqg628d7qzh7n6m4k4ktvgayh44dyt68y930qzy2lr054v",
  "evmChainId": 1074,
  "description": "description",
  "gasFeePolicy": {
    "gasFeeTokenId": "gasFeeTokenId",
    "gasPerToken": "100",
    "validatorFeeShare": 1
  },
  "isActive": true,
  "maxBlobSize": 2000000,
  "maxEventSize": 2000
}

Changes