AVS Database Replication using Zellularο
π Guide: Leveraging Zellular for Decentralized Database Replication within an AVS
Zellular enables AVS developers to replicate shared state across a decentralized network of nodes β efficiently, verifiably, and without relying on on-chain storage.
This pattern ensures that all nodes maintain the same view of critical data, such as uptime logs, validator metrics, or other consensus-relevant inputs.
Replicating State Between Nodesο
Downtime logging is just one use case of a broader capability: synchronizing shared data across AVS nodes. Zellular allows any structured data to be replicated in a consistent, globally ordered way.
Each node receives the same sequence of updates from the Zellular Sequencer and applies them locally. This guarantees that all nodes independently reach the same view of the system state.
Zellular ensures:
β Deterministic ordering: Nodes apply updates in the same global sequence
β Fault tolerance: Nodes that restart can replay the full history
β Verifiability: Events may include BLS-signed attestations
β No blockchain dependency: Operates off-chain with API simplicity
Use Case: Logging Node Downtimeο
In AVS ecosystems where uptime matters, itβs essential to keep an accurate, shared record of which operators were available or unreachable.
Zellular allows AVS nodes to coordinate on validated downtime reports without relying on a smart contract or centralized storage.
The workflow typically looks like:
Aggregators detect suspected downtime for a node
They query other AVS nodes to confirm it
Once a quorum of confirmations is collected, the aggregator posts a downtime event to Zellular
All nodes listen for new events and store them after validating
Posting Downtime Logs to Zellularο
Aggregators post confirmed events to Zellular with BLS signatures attached:
zellular = zellular.Zellular("avs-liveness-checker", base_url)
zellular.send([{
'node': 8,
'event_type': 'down',
'timestamp': 1732522695,
'sig': '0x23a3...46da'
}])
Each AVS node independently listens for new events:
zellular = zellular.Zellular("avs-liveness-checker", base_url)
for batch, index in zellular.batches(after=index):
events = json.loads(batch)
for event in events:
if verify(event):
add_event_log(event)
If verification passes and the event meets the AVS quorum threshold, the node appends it to its local database.
Why It Mattersο
β No missed events: All nodes observe and process the same sequence
β Global consistency: All replicas store the same event log
β Cryptographic proof: Signatures from other nodes can be attached
β Efficient and simple: No contract deployment, no gas, no RPCs
This enables AVSs to answer questions like βhow many times was node 8 down this epoch?β with full confidence in the result β without requiring blockchain infrastructure.
Zellular enables high-integrity state replication across AVS nodes, providing the foundation for decentralized accountability, logging, and auditability β at a fraction of the cost and complexity of on-chain alternatives.