Network

Check the health and status of bwickchain nodes.

Get Node Info

Returns node software version, chain ID, and protocol information.
curl https://rest.bwick.fun/cosmos/base/tendermint/v1beta1/node_info
{
  "default_node_info": {
    "protocol_version": {
      "p2p": "8",
      "block": "11",
      "app": "0"
    },
    "default_node_id": "abc123def456...",
    "network": "bwick-1",
    "version": "0.38.0",
    "moniker": "validator-1"
  },
  "application_version": {
    "name": "bwick",
    "app_name": "bwickd",
    "version": "5.0.0",
    "cosmos_sdk_version": "v0.53.4",
    "build_tags": "",
    "go_version": "go1.24.1"
  }
}

Key Fields

FieldDescription
default_node_info.networkChain ID (bwick-1 for mainnet)
default_node_info.versionConsensus version
default_node_info.monikerNode’s human-readable name
application_version.versionbwickd binary version
application_version.cosmos_sdk_versionRuntime version

Get Syncing Status

Check if the node is currently catching up to the latest block.
curl https://rest.bwick.fun/cosmos/base/tendermint/v1beta1/syncing
{
  "syncing": false
}
ValueMeaning
falseNode is fully synced and up to date
trueNode is still catching up - queries may return stale data
If syncing is true, block and transaction queries may be behind the actual chain tip. Wait for sync to complete before relying on query results.

Health Check

The simplest way to verify the node is reachable. Available on the Chain RPC port:
curl https://rpc.bwick.fun/health
{
  "jsonrpc": "2.0",
  "id": -1,
  "result": {}
}
An empty result with no error means the node is healthy.

Get Latest Block Height

A quick way to check how far along the chain is:
curl -s https://rest.bwick.fun/cosmos/base/tendermint/v1beta1/blocks/latest \
  | jq '.block.header.height'

Chain Parameters

Mint Parameters (Zero Inflation)

curl https://rest.bwick.fun/cosmos/mint/v1beta1/params
{
  "params": {
    "mint_denom": "ubwick",
    "inflation_rate_change": "0",
    "inflation_max": "0",
    "inflation_min": "0",
    "goal_bonded": "0.670000000000000000",
    "blocks_per_year": "6311520"
  }
}
All inflation parameters are set to zero - no new tokens are ever minted on bwickchain.

Governance Parameters

curl https://rest.bwick.fun/cosmos/gov/v1/params/voting
Returns the voting period, quorum, and threshold for governance proposals.