What It Is
BloqVerse is a blockchain-based game platform that emerged from research at the Blockchain Embassy. Players inhabit interconnected universes where they combine elements following real-world scientific rules to create resources, trade assets, and build value, all tracked on-chain with no traditional backend.
At its core, it's a proof-of-concept for a radically different application architecture: the entire backend is smart contracts. No databases. No servers. Frontend assets served via IPFS. The game logic, user state, asset ownership, and inter-player transactions all live on a permissioned EVM network pegged to public Ethereum.
Technical Architecture
The platform runs on approximately 30 Solidity smart contracts split into two categories:
- ~20 upgradeable contracts — logical functions and interfaces that can be iterated without losing state. These handle game mechanics, marketplace logic, and user interactions.
- ~10 immutable contracts — authentication and data storage that cannot be modified after deployment. These are the ground truth layer — once an asset exists, it exists permanently.
The frontend is entirely static HTML5, compatible with any device. Asset storage and retrieval happens through IPFS, meaning the game can operate without any traditional server infrastructure. A player needs only a browser and a wallet.
The Game Layer
BloqVerse's game mechanic is combinatorial: players discover and combine elements (following real-world chemistry and physics) to produce new resources. These resources are on-chain tokens: fungible for commodities, non-fungible for unique discoveries. The interconnected universe system means assets from one game context can flow into another.
This wasn't primarily entertainment. It was a demonstration platform. The game mechanics proved that complex, stateful, multi-user applications could run entirely on smart contracts with acceptable performance on permissioned networks.
The Training Layer
BloqVerse doubled as an onboarding tool for the Blockchain Embassy consortium. New members and bootcamp participants would interact with the game as their first experience of blockchain applications, learning by playing rather than by reading documentation.
- Dedicated training universe — bootcamp participants get their own isolated game world to experiment in
- Industry simulations — ECF (equity crowdfunding) markets, stablecoin trading, and escrow services
- Sector extensions — property, telecom, and healthcare scenarios demonstrating cross-industry applications
- Gamified credentials — completion of training modules awarded as on-chain tokens
Significance
BloqVerse demonstrated in 2019 what most of the industry was still theorising about: that upgradeable contract patterns, IPFS-served frontends, and permissioned-network performance could support real interactive applications, not just token transfers. The patterns developed here (upgradeable contract architecture, serverless frontends, on-chain state machines) informed the technical decisions behind CoKeeps' custody infrastructure and later work on Oviato's wallet architecture.