The Blockless Distributed Ledger
L28 is a revolutionary blockless distributed ledger that achieves instant transaction finality without using blocks. Unlike traditional blockchains that bundle transactions into blocks and wait for confirmations, L28 processes each transaction independently through a distributed hash table (DHT) and Avalanche consensus mechanism.
Transactions finalize in milliseconds, not minutes. No waiting for block confirmations.
No block size limits. No transaction per second caps. True horizontal scalability.
Heterogeneous nodes across the internet. No single point of failure.
Self-improving orchestrator with autonomous agents that evolve the system.
Traditional blockchains have inherent limitations:
L28 eliminates blocks entirely:
The DHT layer provides instant state location. When a transaction arrives, the system uses consistent hashing to determine which shard handles it, then queries the DHT to find the responsible node.
Transaction β Hash β Shard Assignment β DHT Query β Node Routing
The network is partitioned into 4 shards (expandable). Each shard handles a portion of the transaction space, enabling parallel processing.
Shards: 0, 1
367efa8f...
Shards: 2, 3
988c3e2b...
Each transaction achieves finality through Avalanche's sub-sampled voting protocol. Nodes query random peers and reach consensus in milliseconds.
Three autonomous agents maintain and evolve the system:
| Feature | Bitcoin | Ethereum | Solana | L28 |
|---|---|---|---|---|
| Finality Time | ~60 minutes | ~12 seconds | ~400ms | ~0ms (instant) |
| Architecture | Blockchain | Blockchain | Blockchain | Blockless |
| Block Size Limit | 1-4 MB | Variable | ~65K tx/block | No blocks! |
| TPS (theoretical) | ~7 | ~30 | ~65,000 | Unlimited |
| Consensus | PoW | PoS | PoH + PoS | Avalanche |
| Energy Usage | Very High | Medium | Low | Minimal |
Connect to L28 nodes via UDP protocol:
// Ping Node
echo '{"type":"ping"}' | nc -u 157.245.233.184 4001
// Response
{"node_id": "367efa8fb660630b", "status": "active"}
// Query Transaction
echo '{"type":"query","tx_id":"tx_001"}' | nc -u 157.245.233.184 4001
// Response
{"tx_id": "tx_001", "status": "finalized", "shard": 2}
| Node | IP:Port | Shards | Status |
|---|---|---|---|
| Node 1 | 157.245.233.184:4001 |
0, 1 | β Online |
| Node 2 | 138.197.220.26:4001 |
2, 3 | β Online |
{
"type": "transaction",
"from": "alice",
"to": "bob",
"amount": 100,
"currency": "L28",
"timestamp": "2025-11-19T21:00:00Z"
}
Current L28 mainnet deployment:
Location: San Francisco, USA
Shards: 0, 1
Services: DHT, Orchestrator, Shards
367efa8fb660630b
157.245.233.184:4001
Location: San Francisco, USA
Shards: 2, 3
Services: DHT
988c3e2bab3516ff
138.197.220.26:4001