Consensus Layer — Anzeon WBFT
Anzeon WBFT handles block proposal, voting, and finalization. It is derived from WBFT (an enhanced QBFT), purpose-built for a permissioned, stablecoin-centric chain.- Governance-managed validators — the active validator set is determined by votes recorded in the
GovValidatorsystem contract, not by staking - No block rewards — there is no inflationary issuance; validators earn only transaction fees
- BLS signature aggregation — PREPARE and COMMIT messages use BLS aggregated signatures, reducing verification overhead at scale
- Epoch-based updates — validator set changes take effect only at epoch boundaries, making the set predictable within an epoch
Execution Layer — go-ethereum Extensions
The execution layer is built on go-ethereum. Core Ethereum components are preserved:| Component | Role |
|---|---|
BlockChain | Canonical chain management, block insertion, reorgs |
StateDB | Account balances, nonces, contract storage (Merkle Patricia Trie) |
TxPool | Pending transaction queue (legacypool + blobpool) |
Miner/Worker | Block assembly and seal dispatch |
EVM | Transaction and smart contract execution |
NativeCoinAdapter
A system contract deployed at genesis that wraps the native coin with an ERC-20 interface. It is compatible with the FiatTokenV2_2 (Circle USDC) specification, so existing dApps and tooling that expect a standard ERC-20 token work without modification.GovValidator
A system contract that manages the active validator set and the network-wide minimum gas tip. Governance votes update both, and the latest tip value is propagated to the worker and transaction pool each time a new block is added.Fee Delegation
StableNet introduces transaction type0x16, which separates the sender from the fee payer. Both parties sign the transaction with ECDSA. This lets you build flows where a relayer or service account covers gas costs on behalf of users.
How a Block Is Produced
Developer Implications
Full EVM compatibility
Deploy any Solidity or Vyper contract; no chain-specific changes are required.
Deterministic finality
Once a block is sealed by Anzeon WBFT, it is final. You do not need to wait for confirmations.
Stable gas costs
The governance-controlled base fee and priority fee reduce fee volatility compared to open-market EIP-1559.
Fee delegation
Use transaction type
0x16 to implement gasless UX.ERC-20 native token
Interact with the native coin through the standard ERC-20 interface via
NativeCoinAdapter.Next Steps
Contract Addresses
Deployed system contract addresses on StableNet.
Fee Delegation
How to use transaction type
0x16 to separate sender and fee payer.
