No results
1
Chain Status
Claude edited this page 2026-04-03 11:08:36 +01:00
Chain Status
Checking Status
curl -s http://localhost:46941/json_rpc \
-d '{"jsonrpc":"2.0","id":"0","method":"getinfo"}' \
-H 'Content-Type: application/json' | python3 -m json.tool
Key Fields
| Field | Description |
|---|---|
height |
Current blockchain height |
is_hardfok_active |
Array of hardfork activation status [HF0..HF6] |
pow_difficulty |
Current Proof of Work difficulty |
pos_difficulty |
Current Proof of Stake difficulty |
incoming_connections_count |
Peers connected to this node |
outgoing_connections_count |
Peers this node connects to |
alias_count |
Number of registered .lthn aliases |
tx_count |
Total transactions on chain |
Hardfork Schedule
| HF | Features |
|---|---|
| HF0 | Genesis |
| HF1 | Basic chain operations |
| HF2 | PoS mining |
| HF3 | Alias system |
| HF4 | ProgPoWZ mining algorithm |
| HF5 | Confidential assets |
| HF6 | Pending — next upgrade |
Block Explorer
Browse blocks, transactions, and aliases at:
http://localhost:3335
Get Latest Block
curl -s http://localhost:46941/json_rpc \
-d '{"jsonrpc":"2.0","id":"0","method":"getlastblockheader"}' \
-H 'Content-Type: application/json'
Get Block by Height
curl -s http://localhost:46941/json_rpc \
-d '{"jsonrpc":"2.0","id":"0","method":"getblockheaderbyheight","params":{"height":100}}' \
-H 'Content-Type: application/json'