Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Tech overview

Stable's transaction pipeline has four layers: consensus, execution, storage, and RPC. You can use standard EVM tooling while Stable-specific subsystems handle finality, USDT0 gas, state access, and transaction throughput.

Tech Overview

StableBFT

Status: Live

Stable Blockchain leverages StableBFT, a customized PoS consensus protocol built on CometBFT, for high throughput, low latency, and strong reliability across the network.

Stable EVM

Status: Live

Stable EVM is Stable's Ethereum-compatible execution layer. Standard Ethereum tools and wallets interact with the chain unchanged. A set of precompiles bridges Stable EVM to the Stable SDK, letting EVM smart contracts call into core chain logic atomically.

StableVM++, a possible replacement for the current Go-based EVM implementation, remains a later roadmap item.

StableDB

Status: Live on Mainnet in v1.8.0

MemIAVL replaces LevelDB with a memory-mapped snapshot and an append-only write-ahead log. A RocksDB-backed VersionDB serves historical queries older than the retained snapshots.

High performance RPC

Status: Live

A slow RPC layer ruins the user experience even on a fast chain. Stable addresses this with a split-path architecture that separates operations by function, deploying lightweight, specialized RPC nodes for faster response times.

Where to go next