惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
V
Visual Studio Blog
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
IT之家
IT之家
Vercel News
Vercel News
C
Check Point Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Built a Real-Time Bounty Marketplace with Supabase ...
Kevan Baptiste · 2026-06-21 · via DEV Community

How I Built a Real-Time Bounty Marketplace with Supabase and 14-Layer Edge Security

I wanted to build a platform where anyone can post a task (a "bounty"), set a reward, and have people complete it with verifiable proof. Think freelance work, but optimized for quick, composable task completion — with proof submission as the core trust mechanism.

The result is BountyClaimer — a real-time marketplace running on Supabase + Vercel with a security system baked into Edge middleware and scattered across every layer of the stack.

🛠️ The Tech Stack

  • Frontend: React + Vite + TypeScript
  • Backend: Supabase (PostgreSQL, Realtime, Storage, Auth)
  • Payments: Stripe
  • Hosting: Vercel (Edge Middleware)
  • Security: Custom "Armadillo" system (14 layers)
  • Architecture Pattern: Phoenix Architecture for real-time state consistency

🔄 The Core Workflow

  1. Post — A user posts a bounty with a reward and description
  2. Claim — Others browse and claim available bounties
  3. Submit — The claimer completes the work and submits proof (images, video, audio, text, files)
  4. Settle — The bounty owner reviews and approves — funds are released
  5. Sync — Real-time updates keep both sides in sync instantly

The hardest parts were real-time state sync across multiple users, anti-abuse without hurting legitimate users, and security at the edge.

🏛️ The Phoenix Architecture

One pattern I'm particularly proud of is what I call the Phoenix Architecture — a real-time state management approach that ensures every client sees the same truth without polling.

The core idea: instead of each client fetching data and hoping it's current, database changes (bounty status updates, proof submissions, claim state transitions) are broadcast out via Supabase Realtime. Every connected client receives the same event stream and updates locally.

// The Phoenix pattern — subscribe to changes once, 
// update locally from the event stream
const channel = supabase
  .channel(`entity-${id}`)
  .on(
    'postgres_changes',
    { event: '*', schema: 'public', table: 'updates' },
    (payload) => {
      syncState(payload.new)  // Single source of truth
    }
  )
  .subscribe()

No polling, no stale data, no "refresh to see new submissions." Combined with server-side validation in PostgreSQL functions, this means business rules are enforced at the database level and the UI reflects reality immediately.

🛡️ Security at the Edge (The Armadillo System)

The most interesting engineering challenge was Armadillo — a layered security system that operates at Vercel's Edge network, intercepting every request before it reaches the application. It's designed around defense-in-depth:

What it checks (at the Edge, before a request hits the app):

  • Scanner/recon tool detection — blocks known malicious user agents
  • SQL injection and XSS scanning with multi-pass URL decoding
  • Rate limiting per IP with memory-efficient data structures
  • Adaptive proof-of-work challenges for suspicious traffic
  • Behavioral analysis and entropy-based bot detection
  • Cross-region threat intelligence sharing

The key insight was that security at the Edge catches attacks before they consume any compute resources. Scanner probes, injection attempts, and DDoS patterns are stopped at the network boundary.

There's also a client-side component that runs in the browser — fingerprinting, behavioral analysis, and monitoring that feeds data back to the system. Between the Edge middleware, the database layer, and the client, no request goes unchecked.

🔐 Database Patterns

All critical operations (bounty creation, proof submission, claim settlement) go through PostgreSQL functions. This keeps business logic next to the data and prevents race conditions that could occur with API-layer checks. The pattern is straightforward: validate → execute → return. If validation fails at the database level, no amount of API trickery can bypass it.

🧠 What I'd Do Differently

  • Fewer initial proof types — Supporting everything (image, video, audio, text) from day one adds complexity. Start with text, expand later.
  • Whitelist static files in middleware early — Static assets like manifest files can accidentally trigger your own security puzzles if you forget to exempt them.
  • Supabase type regeneration — After schema changes, regenerate TypeScript types immediately. Don't learn this one the hard way.

📝 Lessons Learned

Building a marketplace with real money involved means security isn't a feature — it's the foundation. The Armadillo system started as a simple rate limiter and grew into something much more comprehensive. The Edge middleware approach means attacks are stopped before they consume resources, and the Phoenix Architecture pattern keeps real-time state consistent without complex client-side logic.

The platform is live at bountyclaimer.com — I'd love feedback on the workflow, the architecture, or anything that stands out. Drop questions in the comments! Thanks for taking the time to read about my project:)