1. Basic Information

  • Chain ID: cnho_stables-1
  • Data Directory: ~/.cnho
  • Executable Name: cnho_stables
  • Genesis File: Genesis JSON
  • Seeds:
    c5afa68170530e128018e12cd463d15823e34ce9@seeds.cnho.io:26656

2. Download Executable Binaries

—Baidu Cloud: —Official Website:

3. Deployment Steps

Step 1: Initialize Node
cnho_stables init your-node-name --chain-id cnho_stables-1 --home=. 
Step 2: Download Genesis File
curl -L https://raw.githubusercontent.com/alashooinc/ChainCNHO/master/mainnet/genesis.json > ~/.cnho/config/genesis.json
Step 3: Configure Seeds
  • Open ~/.cnho/config/config.toml, find the seeds setting, and replace it with:
seeds = "c5afa68170530e128018e12cd463d15823e34ce9@seeds.cnho.io:26656"
Step 4: Set Chain ID in client.toml
  • Open ~/.cnho/config/client.toml, update:
chain-id = "cnho_stables-1" 
Step 5: Enable API, RPC, and Swagger
  • In ~/.cnho/config/app.toml, set the following values to true:
api = true swagger = true enable = true  # under the RPC section
  • Ensure the ports are correctly set (default: RPC 26657, API 1317).
Step 6: Start Node
cnho_stables start --home=.
Step 7: Check Synchronization Status
curl -s localhost:26657/status | jq .result.sync_info 

4. Accessing API, RPC, and Swagger Services

  • Access RPC:
    Use curl or any HTTP client:
curl -s localhost:26657/status 
  • Access API:
    If API is enabled, access via browser or HTTP client (default port 1317):
curl -s localhost:1317 
  • Access Swagger UI:
    If Swagger is enabled, visit:
http://localhost:1317