Breaking
BERLIN 2014 - Four founders set out to build a blockchain you can query MongoDB meets Tendermint: decentralization without losing sub-second writes Survives a third of its nodes failing - Byzantine fault tolerance in production Founding member of Ocean Protocol ~$5.4M raised, led by Earlybird Venture Capital Won 3 Gaia-X Federation Services tenders in 2022 BERLIN 2014 - Four founders set out to build a blockchain you can query MongoDB meets Tendermint: decentralization without losing sub-second writes Survives a third of its nodes failing - Byzantine fault tolerance in production Founding member of Ocean Protocol ~$5.4M raised, led by Earlybird Venture Capital Won 3 Gaia-X Federation Services tenders in 2022
Company Profile · Infrastructure

BigchainDB

BigchainDB is a blockchain database offering decentralization, immutability and native assets.

Most blockchains ask you to forget everything you already know about databases. You give up fast writes, you give up rich queries, and in exchange you get a public ledger nobody can tamper with. BigchainDB, started in Berlin in 2014, refused that trade. Its founders looked at the wall between databases and blockchains and asked a plainer question than most of the industry was asking at the time: what if you could query a blockchain the way you query a normal database? The answer they built is a blockchain database - a system that keeps the decentralization, immutability and owner-controlled assets people wanted from a blockchain, while still behaving like software a backend engineer can reason about.

The company was founded by four people with unusually complementary scars. Bruce Pon, the CEO, had spent years building actual banks across Europe and Asia through his consulting firm Avantalion, working with the likes of Mercedes-Benz and Volkswagen. Trent McConaghy, the technical mind, had already built two companies in electronic design automation - the software that helps chip designers keep pace with Moore's Law. Masha McConaghy came from the art world and curation. Greg McMullen handled the legal architecture. Bankers, chip-tooling engineers, an art curator and a lawyer is not the roster you would guess for a blockchain startup, and that mix shows up in the product.

01 · THE IDEAA database on blockchain steroids

The origin story is quieter than the pitch deck. BigchainDB began as an attempt to solve a specific, human problem: how do you prove who owns a piece of digital art when copies are free and infinite? Chasing that question led the team down into the plumbing, and the plumbing turned out to be the real product. Instead of building yet another token, they built infrastructure - a way to register and transfer any asset, with a clear owner controlled by a private key, on top of a database that could still be searched.

2014
Founded in Berlin
3
Core properties: decentralized, immutable, native assets
~$5.4M
Raised, led by Earlybird
1/3
Nodes can fail and it keeps running

Their own shorthand for the thing was blunt: a database on blockchain steroids. The formal description on the company's site is calmer - "BigchainDB is a blockchain database offering decentralization, immutability and native assets" - but the ambition is the same. Take the three things blockchains are genuinely good at, and stop making people pay for them with usability.

02 · HOW IT WORKSMongoDB for speed, Tendermint for trust

The clever move in BigchainDB is architectural rather than cryptographic. Rather than invent a new consensus algorithm and a new storage engine, the team took two battle-tested components and arranged them in a way nobody else had bothered to. BigchainDB 2.0 splits into two layers. Every node runs its own local MongoDB database as the storage layer, which is what gives the system its low latency and its genuinely powerful querying. The nodes then talk to each other through Tendermint, a production consensus engine, which supplies the Byzantine fault tolerance.

Assets
Native assets - register, own and transfer anything, controlled by a private key.
Consensus
Tendermint (BFT) - nodes agree on order; a block only commits once it is settled.
Storage
MongoDB per node - fast writes, rich queries, structured documents.
THE STACK, DEMYSTIFIED - Two proven components, one uncommon arrangement. Boring parts, novel wiring.

The order of operations matters. A transaction is proposed each round, but the change is not committed to the underlying MongoDB until it has been settled on the blockchain. Because every node holds its own signed copy of the data, tampering with any single node's database is instantly detectable by the others. That is the whole trick behind immutability here: it is less about making data impossible to change and more about making any change impossible to hide.

Immutability isn't magic. It's every node holding a signed copy, so cheating leaves fingerprints.On how BigchainDB detects tampering

The Byzantine part is what separates a demo from infrastructure. A merely fault-tolerant system survives nodes that crash. A Byzantine fault-tolerant one survives nodes that lie - nodes that have been compromised and are actively feeding bad data. BigchainDB keeps producing blocks even if up to a third of its nodes fail or turn malicious. Even if an attacker seizes admin rights on one node's MongoDB, the copies on the other nodes stay intact.

THE THIRD THAT CAN LIE - Orange bars are nodes gone bad. As long as they stay under one-third, the network shrugs and keeps writing blocks.

03 · WHO USES ITBuilt for the unsexy middle of the economy

BigchainDB was not built for the parts of crypto that trend on social media. Its target list reads like a tour of the quiet, high-stakes machinery of commerce: intellectual property, identity, supply-chain provenance, Internet-of-Things data, energy grids and financial ecosystems. These are places where you need records that are trusted, tamper-evident and queryable, and where the difference between a spreadsheet and a shared ledger is real money.

Concretely, that means things like registering and versioning assets, keeping an auditable lifecycle for a physical object, building a digital twin of a vehicle, or attaching encrypted private data to an on-chain record. Developers reach the system through drivers for Python and JavaScript and a plain HTTP API, with role-based access control and support for both public and private networks. The customer base has stayed deliberately small - reported at around five enterprise customers - but the open-source project has a far wider reach among developers experimenting with blockchain proofs-of-concept.

Two ideas do a lot of quiet work in those use cases. The first is native assets: instead of representing ownership through a smart contract you have to write and audit, an asset in BigchainDB is a first-class object with a clear owner controlled by a private key, transferred by a signed transaction. The second is the split between on-chain and off-chain data. Sensitive payloads can be encrypted or stored off-chain, with only a provable reference committed to the ledger, which is what makes the model workable for real supply chains and IoT feeds where you cannot dump raw data onto a public network. Put together, they let a team register an asset, prove where it came from, follow it through its lifecycle, and query the whole trail with ordinary database calls.

04 · THE COMPETITIONWhere it sits on the map

The enterprise-blockchain field got crowded fast. The usual names - Hyperledger Fabric, R3 Corda, Quorum - approach the problem as ledgers first. Amazon's QLDB and a handful of immutable-ledger databases come at it from the cloud-service angle. BigchainDB's distinguishing bet was to start from the database and add blockchain properties, rather than start from the chain and bolt on storage.

TraitBigchainDBTypical enterprise chain
Starting pointDatabase (MongoDB)Ledger / VM
QueryingRich, native MongoDB queriesOften limited
ConsensusTendermint BFTVaries (RAFT, PBFT, etc.)
Asset modelNative, owner-controlledSmart-contract dependent
LicenseOpen sourceMixed

Whether that bet was right is partly answered by what happened next. BigchainDB's technology was integrated into the Cosmos ecosystem via the Interchain Foundation, and the founding team turned its experience into Ocean Protocol, a decentralized data exchange aimed at unlocking data for AI. Good infrastructure rarely dies cleanly - it gets absorbed, and its ideas keep traveling.

05 · THE BUSINESSOpen core, enterprise services

The commercial shape is the familiar open-core one. The BigchainDB Server software is open source and free to run; the company, BigchainDB GmbH, earns from enterprise services - consulting, deployment support and custom development - for organizations building on top of it. Grant-funded work has been part of the picture too: in January 2022 the company announced it had won three tenders to help build Gaia-X Federation Services, part of Europe's push for sovereign, federated data infrastructure. Public networks, meanwhile, are stewarded by the IPDB Foundation rather than the company itself, a deliberate loosening of control meant to encourage adoption.

They gave away the control to gain the adoption. The tighter you grip a platform, the less it spreads.On BigchainDB's open, foundation-governed model

Funding stayed modest by later crypto standards. The company raised roughly $5.4 million, with a Series A led by Earlybird Venture Capital closing in September 2016. That is a rounding error next to the token raises that came afterward, and it fits a team that treated the work as infrastructure engineering rather than a coin launch.

The expertise behind it is worth pausing on, because it explains the temperament of the product. Pon had built banks, so he thought in terms of compliance, permissioning and the boring guarantees enterprises actually pay for. McConaghy had spent a career in electronic design automation, where correctness is not negotiable and systems have to survive contact with real hardware. That background is why BigchainDB reads more like enterprise plumbing than a manifesto - role-based access control, private networks and queryability were treated as requirements, not afterthoughts. It is a small team, research-driven and rooted in the Berlin crypto scene, but the instincts came from industries where being wrong is expensive.

06 · THE TAKEAWAYFollowing the problem, not the plan

The most instructive thing about BigchainDB is the arc, not the API. A question about who owns a piece of digital art became a blockchain database, which became a founding piece of Ocean Protocol, which became infrastructure for data markets and AI. The founders kept following the problem instead of defending the original plan, and the ideas outlived any single product. For anyone building in a hyped space, the lesson is unglamorous and durable: reuse the boring, proven parts, aim at the use cases nobody is tweeting about, and build things worth inheriting.

#blockchain #database #decentralization #immutability #tendermint #mongodb #supply-chain #iot #ocean-protocol #developer-tools #berlin