Scalability
Modular design
Performance model in the source
Effective Throughput = f(N, V) = O(C / (L · V))Fee behavior
Last updated
Tetreum describes scalability as a result of separating smart contract execution from consensus and network propagation.
Execution layer: optimized for EVM compatibility
Consensus layer: lightweight PoA engine
Storage layer: efficient state structures using Merkle Patricia Trees
The whitepaper includes the following conceptual formula:
Effective Throughput = f(N, V) = O(C / (L · V))Where:
N = number of full nodes
C = total compute capacity
L = latency introduced per node
V = number of validators participating in consensus
The source also emphasizes:
Fixed base-fee style behavior
Reduced congestion spikes
More reliable cost estimation for developers
Last updated