Resources
Technical Overview
High-level architecture and technical diagrams
Documentation
5 min read
Technical Overview
High-level diagrams & pointers for understanding how Lumen fits together. For exact, source-of-truth details, see the blockchain/docs folder.
Project Architecture
A comprehensive overview of the Lumen blockchain architecture.

Token Emission
Understanding tokenomics and the emission schedule.

DAO-Governed Parameters
Parameters that can be adjusted through governance proposals.

Voting Power Overview
How voting power is calculated and distributed.

Conceptually:
Voting Power = Validator Self-Stake + Delegated Stake
Network Parameters (Where to Look)
Lumen’s “network constants” are defined by configuration and genesis, not marketing numbers.
- Block time: configured by Tendermint
timeout_commitin~/.lumen/config/config.toml(the tokenomics docs assume ~4-second blocks). - Block max bytes: in genesis under
consensus.params.block.max_bytes(mainnet genesis currently uses22,020,096bytes). - Evidence max bytes: in genesis under
consensus.params.evidence.max_bytes(mainnet genesis uses1,048,576bytes). - Gas/fees: Lumen is a zero-fee chain (no gas price market). Genesis sets
consensus.params.block.max_gas = -1.
Cryptographic Algorithms
- Consensus keys: Ed25519 (Tendermint)
- Account/tx signatures: Secp256k1 (Cosmos-style EOAs) + required Dilithium3 PQC extension for outbound transactions
- PQC policy: required at genesis (
PQC_POLICY_REQUIRED,min_scheme=dilithium3) - PQC key linking requires a minimum balance of
1000 ulmn(you can receive funds without a linked key; signing/broadcasting requires PQC) - Hashing: SHA-256
- Key derivation: BIP39/BIP44
Further Reading
- Blockchain docs: https://github.com/network-lumen/blockchain/tree/master/docs
- Cosmos SDK: https://docs.cosmos.network/
