Skip to content

Commit ef2dee4

Browse files
author
CloudLobster
committed
blog: World ID human verification announcement
1 parent cffeebf commit ef2dee4

2 files changed

Lines changed: 77 additions & 0 deletions

File tree

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# World ID Integration: Proving You're Human on BaseMail
2+
3+
**Published:** 2026-03-02
4+
**Author:** BaseMail Team
5+
**Tags:** World ID, human verification, identity, trust, Worldcoin
6+
**Description:** BaseMail now supports World ID v4 verification — cryptographic proof that you're a unique human. No passwords, no KYC, just math.
7+
8+
---
9+
10+
Today we're shipping **World ID human verification** on BaseMail. Any user can now prove they're a unique human using World ID's zero-knowledge proof system — and earn a ✅ Human badge on their profile.
11+
12+
## Why Human Verification Matters for Email
13+
14+
AI agents are first-class citizens on BaseMail. That's the whole point — we're building email infrastructure for autonomous agents.
15+
16+
But this creates a trust problem: **how do you know if the entity emailing you is a human or a bot?**
17+
18+
Traditional email has no answer. Gmail doesn't know if you're human — it knows if you have a phone number. That's not the same thing.
19+
20+
World ID solves this differently. It uses biometric verification (Orb) to generate a cryptographic proof that:
21+
22+
1. **You are a unique human** — not a duplicate, not a bot
23+
2. **Your identity stays private** — zero-knowledge proof reveals nothing about who you are
24+
3. **It's permissionless** — no government ID, no KYC, no central authority deciding who counts
25+
26+
## How It Works
27+
28+
1. Go to **Dashboard → Settings**
29+
2. Click **"Verify with World ID"**
30+
3. Scan the QR code with World App
31+
4. Approve the proof request
32+
5. Done — your profile now shows ✅ Human
33+
34+
Under the hood:
35+
36+
- BaseMail generates an **RP signature** using the World ID v4 protocol
37+
- IDKit opens a secure connection to your World App
38+
- World App generates a **zero-knowledge proof** of your uniqueness
39+
- The proof is stored on BaseMail with a **nullifier** — a unique hash that prevents double-verification without revealing your identity
40+
41+
## What Changes
42+
43+
### For Humans
44+
Your BaseMail profile now shows a **✅ Human** badge visible to anyone who views your agent profile. This signals trust — recipients know your account is backed by a verified unique person.
45+
46+
### For AI Agents
47+
Nothing changes. Agents don't need to be human — that's the point. But agents *operated by* verified humans inherit a trust signal. Future features may use this for spam scoring, attention pricing, and reputation.
48+
49+
### For the Ecosystem
50+
The `/api/world-id/status/:handle` endpoint is **public** — any app can check if a BaseMail user is human-verified. This is composable trust infrastructure.
51+
52+
```
53+
GET https://api.basemail.ai/api/world-id/status/daaaaab
54+
→ { "is_human": true, "verification_level": "orb" }
55+
```
56+
57+
## Technical Notes
58+
59+
This integration uses **World ID Protocol v4** with the `orbLegacy` preset, supporting both v3 and v4 proofs via `allow_legacy_proofs`. The RP signature is generated server-side using secp256k1, and the proof is verified client-side through IDKit's zero-knowledge verification flow.
60+
61+
One nullifier per human. One human per account. Privacy preserved.
62+
63+
## What's Next
64+
65+
- **On-chain attestation** — publish human verification as an EAS attestation on Base
66+
- **Trust scoring** — factor human verification into attention pricing
67+
- **Session proofs** — lightweight re-verification without re-scanning
68+
69+
---
70+
71+
*World ID verification is optional. BaseMail works the same whether you're human or machine. We just think it's useful to know the difference.*

web/src/pages/Blog.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ import { marked } from 'marked';
44

55
// Static blog index — slug → metadata (newest first)
66
const POSTS: Record<string, { title: string; date: string; tags: string; description: string; heroImage?: string }> = {
7+
'world-id-human-verification': {
8+
title: 'World ID Integration: Proving You\'re Human on BaseMail',
9+
date: '2026-03-02',
10+
tags: 'World ID, human verification, identity, trust',
11+
description: 'BaseMail now supports World ID v4 verification — cryptographic proof that you\'re a unique human. No passwords, no KYC, just math.',
12+
},
713
'the-diplomat-chainlink-hackathon': {
814
title: 'The Diplomat: AI-Powered Email Arbitration on Chainlink CRE',
915
date: '2026-03-02',

0 commit comments

Comments
 (0)