Free 30-min Web3 Consultation
Book Consultation
Smart Contract Security Audits
View Audit Services
Custom DeFi Protocol Development
Explore DeFi
Full-Stack Web3 dApp Development
View App Services
Free 30-min Web3 Consultation
Book Consultation
Smart Contract Security Audits
View Audit Services
Custom DeFi Protocol Development
Explore DeFi
Full-Stack Web3 dApp Development
View App Services
Free 30-min Web3 Consultation
Book Consultation
Smart Contract Security Audits
View Audit Services
Custom DeFi Protocol Development
Explore DeFi
Full-Stack Web3 dApp Development
View App Services
Free 30-min Web3 Consultation
Book Consultation
Smart Contract Security Audits
View Audit Services
Custom DeFi Protocol Development
Explore DeFi
Full-Stack Web3 dApp Development
View App Services
LABS
Glossary

OrbitDB

OrbitDB is a serverless, distributed, peer-to-peer database built on top of IPFS, using Conflict-Free Replicated Data Types (CRDTs) for automatic, conflict-free synchronization.
Chainscore © 2026
definition
DECENTRALIZED DATABASE

What is OrbitDB?

OrbitDB is a serverless, distributed, peer-to-peer database built on top of IPFS, enabling decentralized applications to store and sync data without centralized servers.

OrbitDB is a serverless, distributed, peer-to-peer database built on top of the InterPlanetary File System (IPFS). It provides a framework for creating and managing decentralized databases, known as stores, where data is replicated and synchronized across multiple peers in a network. Unlike traditional databases, there is no central server; each peer manages its own local copy of the database, and updates are propagated through a Conflict-Free Replicated Data Type (CRDT) model to ensure eventual consistency across the network.

The system uses IPFS for content-addressed storage and peer-to-peer networking, meaning every piece of data is referenced by its cryptographic hash (CID). OrbitDB builds on this by adding database-like structures and logic for data types such as a key-value store, log (feed), documents, and counters. Data is stored in IPFS and linked together via a heads-based CRDT, which allows peers to independently update their local state and merge changes deterministically, resolving conflicts without a central authority.

A core component is the OrbitDB address, a unique identifier like /orbitdb/zdpuAmR.../posts, which points to the latest manifest—a small file containing the database type and the hash of the database's access controller. The access controller manages permissions, defining which public keys can write to the database, enabling both public and private, permissioned data models. This architecture makes OrbitDB ideal for decentralized applications (dApps), collaborative tools, and any scenario requiring resilient, user-owned data storage.

key-features
ORBITDB

Key Features

OrbitDB is a serverless, distributed, peer-to-peer database built on top of IPFS. It enables decentralized applications (dApps) to store and sync data directly between users without central servers.

01

Peer-to-Peer Data Sync

OrbitDB uses IPFS PubSub and CRDTs (Conflict-Free Replicated Data Types) to enable real-time data synchronization across a network of peers. Each peer replicates the database locally, and changes are broadcast and merged automatically, ensuring eventual consistency without a central coordinator.

02

Modular Database Types

Instead of a one-size-fits-all store, OrbitDB provides specialized database types for different data models:

  • Log: Immutable, append-only log (e.g., chat messages, feed).
  • Feed: Mutable log where entries can be added and removed.
  • Key-Value: Simple dictionary store.
  • Docs: JSON document store queryable by a specified property.
  • Counter: Distributed counter for numerical values.
03

Decentralized Access Control

Database permissions are managed cryptographically via access controllers. The creator defines a write access list, which can be:

  • A single public key.
  • A list of keys.
  • An OrbitDB Identity for more complex logic. This ensures only authorized peers can write to the database, while reads can be open or restricted.
04

IPFS as the Data Layer

OrbitDB uses IPFS (InterPlanetary File System) as its underlying storage and transport layer. All database operations (puts, gets) and the database manifest are stored as IPFS objects (CIDs). This makes the database content-addressable, immutable, and permanently available as long as one peer hosts the data.

05

Eventual Consistency via CRDTs

To handle concurrent writes in a distributed system, OrbitDB employs CRDTs. These data structures (like G-Sets, LWW-Registers) are mathematically proven to converge to the same state on all peers, regardless of the order of operations. This eliminates conflicts and is ideal for offline-first applications.

06

Identity & Signed Operations

Every write operation in an OrbitDB database is cryptographically signed by the peer's OrbitDB Identity. This provides verifiable authorship and integrity for all data entries. Identities can be linked to external providers (e.g., Ethereum wallets via 3ID Connect) for decentralized authentication.

how-it-works
ARCHITECTURE

How OrbitDB Works

OrbitDB is a serverless, distributed, peer-to-peer database built on top of IPFS, using CRDTs to enable decentralized applications with eventual consistency.

OrbitDB is a serverless, distributed, peer-to-peer database that uses IPFS for data storage and transport, and Conflict-Free Replicated Data Types (CRDTs) to manage data synchronization. Unlike traditional client-server databases, there is no central authority or single point of failure. Each peer in the network hosts its own instance of the database, and data is replicated and synchronized directly between peers. The database's state is defined by an immutable log of operations stored on IPFS, ensuring data integrity and verifiable history.

The core data model is built around CRDTs, which are mathematical data structures designed for concurrent, distributed systems. These structures—such as logs, key-value stores, and sets—guarantee that all replicas of the database will converge to the same state, even if updates occur in different orders or while peers are offline. This provides eventual consistency without requiring a central coordinator. Each database is identified by a unique OrbitDB address, which is an IPFS multihash pointing to the database's manifest and access control list.

Data is stored and accessed via IPFS, where the database's operation log is a linked data structure (a Merkle DAG). When a write occurs, a new entry is added to this cryptographically linked log and published to IPFS. Other peers discover and replicate these updates by traversing the log from its tip. Access control is managed cryptographically, allowing database creators to define write permissions using public keys. This architecture enables use cases like collaborative applications, decentralized social networks, and offline-first apps where data sovereignty and censorship resistance are paramount.

database-types
DATA STRUCTURES

OrbitDB Database Types

OrbitDB provides a suite of composable database types, each designed for a specific data model and conflict resolution strategy, built on top of IPFS and CRDTs.

examples
ORBITDB

Use Cases & Examples

OrbitDB is a serverless, distributed, peer-to-peer database built on IPFS. Its decentralized nature enables applications where data ownership, censorship resistance, and offline-first operation are paramount.

01

Decentralized Social Media & Content Feeds

OrbitDB's log-based databases (feeds) are ideal for creating chronological content streams where users own their data. Each user's feed is a cryptographically signed log stored on their own node, enabling platforms where posts and interactions are portable and cannot be unilaterally deleted by a central server.

  • Example: A Twitter-like dApp where a user's timeline is a feed database replicated among their followers.
  • Key Feature: Conflict-free Replicated Data Types (CRDTs) ensure eventual consistency of the feed order across all peers.
02

Collaborative Documents & Real-Time Editing

Using key-value and document-store database types with CRDTs, OrbitDB enables Google Docs-style collaborative editing without a central server. Changes are automatically synchronized peer-to-peer, allowing for offline editing and merge resolution when connectivity is restored.

  • Mechanism: Operations like text insertion/deletion are modeled as CRDTs, guaranteeing all collaborators converge to the same final state.
  • Benefit: Eliminates the need for a central coordination server, enhancing privacy and resilience.
03

Peer-to-Peer Gaming & Shared State

Multiplayer games and virtual worlds can use OrbitDB to manage shared, persistent game state in a decentralized manner. A key-value database can track player inventories or world objects, while a feed database can log game events or chat messages.

  • Use Case: A chess game where the move history is stored in a replicated feed, allowing either player to host the game session.
  • Advantage: Game servers are not a single point of failure; state persists as long as participating peers store it.
04

Decentralized Identity & Verifiable Credentials

OrbitDB can serve as a personal data store for Decentralized Identifiers (DIDs) and verifiable credentials. Users can maintain a private, encrypted database on their device (or a private IPFS network) to store attestations, access keys, and profile information, granting selective access to applications.

  • Example: A wallet-like app that stores educational certificates in an OrbitDB store, allowing the user to present cryptographic proofs to verifiers.
  • Core Concept: Shifts data custody from centralized providers to the individual user.
05

IoT & Edge Computing Data Mesh

In IoT networks, devices at the edge can use OrbitDB to form a localized, resilient data mesh. Sensors can write readings to a shared log database, and actuators can read from a key-value store for configuration, all without relying on cloud connectivity.

  • Application: A smart farm where soil moisture sensors from different manufacturers publish data to a local peer-to-peer database consumed by irrigation systems.
  • Characteristic: Offline-first design ensures operations continue during network partitions.
ecosystem-usage
DECENTRALIZED DATABASE

Ecosystem & Adoption

OrbitDB is a serverless, distributed, peer-to-peer database built on top of IPFS. It enables decentralized applications (dApps) to store and sync data without centralized servers.

06

Challenges & Considerations

While powerful, OrbitDB introduces architectural trade-offs common to peer-to-peer systems.

  • Data Availability: Data is only available when at least one peer hosting it is online.
  • Query Limitations: Advanced queries are more complex than in centralized SQL databases.
  • Initial Sync Speed: Joining a large database for the first time can be slow.
  • Incentive Layer: Lacks a built-in incentive mechanism for data persistence, unlike Filecoin for storage.
security-considerations
ORBITDB

Security & Decentralization Considerations

OrbitDB is a serverless, distributed, peer-to-peer database built on IPFS and libp2p. Its security and decentralization properties are derived from its underlying protocols and architectural choices.

01

Peer-to-Peer Data Replication

OrbitDB uses CRDTs (Conflict-Free Replicated Data Types) to enable eventual consistency across peers without a central coordinator. Data is replicated directly between peers via libp2p pubsub and stored locally on each node's IPFS instance. This eliminates a central server as a single point of failure or control.

02

Access Control & Write Permissions

Database write access is managed cryptographically. The creator of a database defines an access controller, typically a list of public keys. Only peers whose keys are in this list can write to the database. This is enforced locally by each peer, not by a central authority.

03

Data Integrity & Immutability

All data entries are stored on IPFS as immutable Content-Addressed (CID) blocks. The database log itself is a cryptographically linked chain of these CIDs. This ensures data cannot be altered retroactively, as any change would invalidate the hashes for all subsequent entries.

04

Decentralization Trade-offs

  • No Global Consensus: OrbitDB provides eventual consistency, not Byzantine fault tolerance.
  • Data Availability: Data is only available while peers hosting it are online, unless pinned to a persistent IPFS node (e.g., Pinata, Infura).
  • Sybil Resistance: Access control lists prevent unauthorized writes but do not inherently prevent spam from authorized writers.
05

Local-First & User Sovereignty

Each user runs a local instance of the database. Users have full control over their own data and choose what to replicate from peers. This aligns with the local-first software paradigm, where the user's device is the primary source of truth, enhancing privacy and autonomy.

06

Comparison to Centralized & Blockchain Databases

  • vs. Centralized DB (Firebase): No central operator; data lives on user devices.
  • vs. Blockchain (Ethereum): Data is not globally replicated by all nodes; only interested peers sync specific databases. This is more efficient but lacks the global state guarantee of a blockchain.
ARCHITECTURAL COMPARISON

OrbitDB vs. Traditional & Centralized Databases

A technical comparison of database architectures, contrasting the peer-to-peer, decentralized model of OrbitDB with conventional client-server database systems.

Feature / AttributeOrbitDB (Decentralized)Traditional SQL (Centralized)Traditional NoSQL (Centralized)

Architecture

Peer-to-Peer (P2P), Distributed

Client-Server

Client-Server

Data Control & Ownership

Users/Peers

Database Administrator (DBA)

Database Administrator (DBA)

Consensus Mechanism

CRDTs (Conflict-Free Replicated Data Types)

Centralized ACID Transactions

Varies (Often eventual consistency)

Single Point of Failure

Write Access Control

Cryptographic keys (IPFS)

Centralized permissions

Centralized permissions

Data Locality & Replication

Global, peer-hosted replicas

Centralized servers, managed replication

Centralized clusters, managed sharding

Default Query Language

Programmatic (JavaScript/APIs)

SQL (Structured Query Language)

Varies (e.g., MongoDB Query Language)

Typical Deployment Cost for Scaling

Marginal (peer resources)

High (server hardware/cloud fees)

High (cluster management/cloud fees)

ORBITDB

Frequently Asked Questions

OrbitDB is a serverless, distributed, peer-to-peer database built on top of IPFS. These questions address common developer inquiries about its architecture, use cases, and integration.

OrbitDB is a serverless, distributed, peer-to-peer database that uses IPFS for data storage and CRDTs (Conflict-Free Replicated Data Types) for data synchronization. It works by creating databases as IPFS DAGs (Directed Acyclic Graphs), where each update is an immutable block linked to the previous one. Databases are identified by a unique multihash address. When peers connect via libp2p, they replicate the database's log, and the CRDTs automatically resolve any conflicts, ensuring eventual consistency across all nodes without a central server.

ENQUIRY

Get In Touch
today.

Our experts will offer a free quote and a 30min call to discuss your project.

NDA Protected
24h Response
Directly to Engineering Team
10+
Protocols Shipped
$20M+
TVL Overall
NDA Protected Directly to Engineering Team
OrbitDB: Decentralized P2P Database on IPFS | ChainScore Glossary