krnx_
namespace documented here.
Namespaces
The mining methods are registered three times — as
eth_getWork,
kheavyhash_getWork and krnx_getWork — so pool software written against
stock go-ethereum needs no renaming.
A node also carries operator-only namespaces for running merge-mining
infrastructure. They are not part of the public interface, they are not
documented here, and they should never be reachable from outside the host that
runs the node.
krnx namespace is not enabled by default. Start the node with it in
--http.api:
"krnx": "1.0".
Encoding
Kronex follows the Ethereum conventions, with one addition worth calling out.- Quantities are
0x-prefixed hex, no leading zeros:0x41, not0x041. - Byte strings are
0x-prefixed hex with an even number of digits. - Block parameters accept a hex height, a 32-byte block hash, or one of
latest,pending,earliest,finalized,safe. - Share difficulty is the exception: it is a fixed-12 decimal string, not a hex quantity, because it is a real number rather than an integer.
Errors
Failures come back as a normal JSON-RPC error object:message instead of a numeric code — for
example the workshare explorer returns KRNX_EXPLORER_RPC_DISABLED when that
API is switched off on the node. Match on those sentinels, not on prose.
These pages are generated from the node source. Request and response schemas
are expanded from the Go types the node actually serves, so if a field is
documented here, the node returns it.

