PART - 1 - FOUNDATION & CONTEXT

M

Qubits of DPK

March 27, 2026

Core Metaplay

1️⃣ Paper Overview (Big Picture)

The Problem

Platforms like Coursera and Udemy control everything:
  • Who gets paid and how much creators earn
  • Who receives certificates
  • What content is allowed
  • All user data and identity
There is zero transparency. Creators get a bad deal. And certificates issued by these platforms cannot be truly verified by employers — anyone can fake a PDF.

Why This Matters

With millions of online learners and billions in the e-learning market:
  • Content creators capture only a fraction of what learners pay
  • Platforms are single points of failure — if they go down, your content and certificates vanish
  • Rich participants can buy influence in platform decisions, leaving the majority voiceless

What This Paper Proposes

The paper designs Metaplay, a Web3 system where:
  • Content creators own their work and earn fair revenue automatically
  • Learners receive verifiable, tamper-proof certificates that cannot be faked
  • Community governance determines platform rules — no corporation in control
  • All of this runs cheaper than traditional blockchain by ~98%

Non-Technical Summary

Imagine YouTube + Coursera, but:

2️⃣ Layman Explanation

Imagine learning guitar on an online platform.

Problem 1 — Creators are underpaid
You pay ₹2000 for a course.
The platform is the middleman taking 90% of the value.
Problem 2 — Certificates are meaningless
Certificates today are just PDF files.
  • Anyone can fake or edit them
  • Employers have no way to verify them
  • You can literally buy them online
Problem 3 — Platform power is centralized
Most voting systems are token-based: more money = more tokens = more votes.
If a billionaire buys enough tokens, they can override thousands of regular users. This is called plutocracy — rule by the rich.
How Metaplay fixes all three
  1. #
    Fair payments — Smart contracts automatically split revenue. No middlemen. Creator gets paid the moment someone buys their course.
  2. #
    Cryptographic certificates — Certificates become mathematical proofs stored on blockchain. They cannot be forged, copied, or transferred.
  3. #
    Fair governance — Voting uses mathematical formulas so that buying more tokens doesn't give you proportionally more power.

3️⃣ Problem Statement — The Decentralized Content Creation Trilemma

The paper names a core engineering challenge called the Decentralized Content Creation Trilemma.
You must simultaneously achieve all three of the following — but prior systems have only ever managed two at once:
The paper identifies three specific failure modes:
Additional problems identified:
  • NFT certificates can be sold on secondary markets — so you can just buy a certificate you didn't earn
  • Storing personal data (like exam scores) on-chain violates GDPR Article 17 — the "right to be forgotten" — because blockchain is immutable

4️⃣ Background Concepts — Every Technical Term Explained

Blockchain & Smart Contracts

What is a blockchain? A blockchain is a shared digital ledger maintained by thousands of computers around the world simultaneously. No single person controls it. Every entry is permanent and visible to anyone.
What is a smart contract? A smart contract is a program that lives on the blockchain and runs automatically when certain conditions are met.
 Analogy — Vending Machine: Insert money → product comes out → no cashier needed. A smart contract works exactly like this. When a student buys a course, the smart contract automatically sends the creator their payment — no platform, no delay, no middleman.

Layer 1 vs Layer 2

Layer 1 (Ethereum Mainnet) The main Ethereum blockchain. Secure and trustworthy, but:
  • Slow (processes ~15 transactions/second)
  • Expensive (fees called "gas" can cost $3–$10 per transaction)
Layer 2 (zkSync Era — what Metaplay uses) A separate network that processes thousands of transactions off-chain, then posts a single compressed proof to L1 for final settlement.
 Analogy — Airport Security: Instead of every passenger being screened individually at the main gate (L1), a local pre-check facility (L2) validates everyone first, then sends a single "all clear" certificate to the main gate. Faster, cheaper, same security guarantee.
Why this matters: Metaplay runs on zkSync Era — a Layer 2. This is why transaction costs drop by ~98%.

Zero-Knowledge Proofs (zk-SNARKs)

The concept: A zero-knowledge proof lets you prove you know something — without revealing what that something is.
 Analogy — Age Verification: You want to prove you're over 18 to enter a club. Normally: you show your ID → the bouncer sees your full name, address, exact birthdate. With a zero-knowledge proof: a mathematical calculation proves you're over 18 without revealing any other information about you.
In Metaplay: When you complete a course with a score of 87/100, a zk-SNARK proves "this person passed the threshold" without ever revealing their actual score, identity, or any personal data.

Zero-Knowledge Rollups (zkEVM)

A rollup bundles thousands of transactions together. Instead of verifying each one individually on Ethereum L1, a single cryptographic proof verifies them all at once.
 Analogy — Tax Return: Instead of the government auditing every receipt you've ever kept (L1), your accountant submits one certified summary document that the government trusts (zk proof). Same result. Fraction of the work.
Benefits:
  • Huge cost reduction
  • High scalability
  • No fraud-proof waiting period (unlike Optimistic Rollups which make you wait ~7 days to challenge)
Metaplay uses zkSync Era which generates Groth16 validity proofs — a specific, highly efficient type of zk proof that takes only three mathematical "checks" to verify on-chain.

EIP-4844 (Proto-Danksharding)

The problem it solves: Before EIP-4844, data posted to Ethereum was stored as calldata — permanent, expensive, and stored forever in blockchain history.
After EIP-4844: Data is stored as blobs (Binary Large Objects):
  • Temporary (~18 days, enough for verification)
  • Priced via a completely separate, independent fee market — this is the key reason they're cheaper
  • Optimized specifically for rollups
 Analogy — Hotel vs Airbnb: Calldata = buying a hotel room permanently. You pay forever even when you're not there. Blobs = renting an Airbnb for 18 days. You only pay for what you need.
Cost reduction: 10–100x cheaper than calldata.

IPFS (InterPlanetary File System)

A decentralized storage network where files are identified by their content hash — not a URL. If the content changes, the hash changes. This guarantees integrity.
The problem: If nobody pins (stores) the file, nodes can garbage-collect it. The file disappears. This is called link rot.
 Analogy — BitTorrent: IPFS works like BitTorrent. If nobody is seeding the file, it becomes unavailable. Popularity keeps files alive, not permanence.

Arweave

A blockchain built specifically for permanent data storage.
How it works: You pay a one-time fee. That fee goes into a storage endowment pool. The interest earned from that pool pays miners indefinitely to keep your data alive.
The consensus mechanism: Called SPoRA (Succinct Proofs of Random Access) — miners prove they're actually storing the data by answering random access challenges.
 Analogy — Fixed Deposit: You deposit ₹10,000 in an FD. The interest pays someone to store your data every year — forever — without you ever paying again.
Metaplay strategy: IPFS for fast retrieval + Arweave as the permanent backup. Best of both worlds.

Filecoin

Another decentralized storage network that uses cryptographic storage proofs — but unlike Arweave, it involves time-bounded deals that require active renewal. If the deal expires and isn't renewed, your data can be lost. This is why Metaplay chose Arweave over Filecoin for permanent archival.

ERC-4337 (Account Abstraction)

Traditional crypto wallets require:
  • Managing seed phrases (12–24 random words — lose them, lose everything)
  • Holding ETH just to pay for gas fees
  • Manual transaction signing for every action
This is completely incompatible with mainstream users.
ERC-4337 introduces Smart Contract Wallets:
 Analogy — Credit Card vs. Cash: Traditional crypto = carrying exact change in a foreign currency everywhere you go. ERC-4337 = using your credit card abroad. The bank handles the conversion. You just tap and pay.
Result: Users interact with Metaplay just like a normal website. Onboarding drops from 4+ minutes (traditional crypto) to under 15 seconds.

Soulbound Tokens (SBTs)

Non-transferable NFTs. They are permanently tied to one wallet address and cannot be sold, gifted, or moved.
Used for:
  • Identity verification (proves you are a real, unique person)
  • Achievements (course completions)
  • Credentials (certificates)
 Analogy — Tattoo vs. Trophy: A regular NFT is like a trophy — you can sell it or give it away. An SBT is like a tattoo — it's part of you. It cannot be transferred to someone else.
Why this matters for Metaplay: If certificates were regular NFTs, you could buy someone else's certificate. SBTs make this impossible.

Quadratic Voting

Traditional voting: 1 token = 1 vote. Rich people dominate.
Quadratic Voting changes the cost structure:
The cost scales as the square of the votes. So buying massive influence becomes exponentially expensive.
 Analogy — Bidding War: In a normal auction, the richest person always wins. In quadratic bidding, each additional bid costs twice as much as the last. Even a billionaire eventually hits a point where it's not worth it.
The flaw: Without identity verification, one person can create 1000 fake accounts and spread their voting power across them — bypassing the quadratic cost. This is called a Sybil attack.

The Graph

Blockchain data is not naturally searchable. You can't run "find all courses by creator X uploaded this week" on raw blockchain data.
The Graph is a decentralized indexing protocol that:
  • Listens to blockchain events (like ContentPublishedVoteCastCredentialIssued)
  • Organizes them into a PostgreSQL-backed queryable store
  • Exposes them via a GraphQL endpoint
This enables sub-second content discovery queries without any centralized API server.
 Analogy — Library Catalogue: The blockchain is a library where all books are stacked randomly. The Graph is the catalogue system that lets you search by author, title, or date in under a second.

5️⃣ Related Work

Metaplay's unique position: It is the only documented system that simultaneously has ZK-based credential verification AND identity-gated quadratic governance.

6️⃣ Core Idea — Five Problems, Five Solutions