Skip to content

Introduction

Krypton is a sovereign, EVM-compatible proof-of-stake Layer-1. It runs Berachain's beacon-kit (a CometBFT consensus client, instant single-slot finality) driving bera-reth (a Reth fork, revm EVM) over the standard Engine API, with a sovereign app-layer suite of staking / governance / slashing / reward contracts.

It is EVM-equivalent at the execution layer (it runs revm, the same EVM as a Reth mainnet node), not a from-scratch reimplementation — standard Solidity/Vyper and Foundry work unchanged. The chain differs from Ethereum at the consensus layer (BFT instant finality, not probabilistic) and in a few governed economics (e.g. the base fee is redirected, not burned).

The node types

RoleWhat it doesGuide
ValidatorSigns/proposes blocks; holds (or threshold-signs) the consensus keyValidator
RPC / full node (L5)Non-validating; serves eth_getProof to edge/light clients + dappsRPC node
Seed / bootnodePeer discovery for the networkSeed
Edge nodeA verifying light client (not a full node) — turnkey on a Raspberry Pi, also runs on other hardwareEdge node

Supporting services: a block explorer (Blockscout at kryscan.com), monitoring (Prometheus + Grafana), key management (Horcrux threshold signing), and secrets (Vault / KMS).

Networks

NetworkChain IDHexStatus
Testnet4733740x7391ethe public network these guides target
Mainnet473370xb8e9reuses the same artifacts; gated on external audit + testnet soak
Devnet80087local Kurtosis / ephemeral

See Networks & chain IDs for the canonical allocation.

How the pieces fit

        validators ──┐
        (sign blocks) │   CometBFT BFT consensus (instant finality)

   ┌──────────────────────────────────┐   Engine API   ┌──────────────────────┐
   │ beacond (CL, beacon-kit/CometBFT) │ ─────────────▶ │ bera-reth (EL, revm) │
   └──────────────────────────────────┘                └──────────────────────┘
                      │                                            │
            RPC / full nodes (L5)  ── eth_getProof ──▶  edge nodes (verifying light clients)

            block explorer (kryscan.com) · monitoring · public RPC

Ready to run one? → Prerequisites then Quick start.

Operator docs. Testnet chain-id 473374; mainnet 47337 (gated on external audit). Not financial advice.