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

推荐订阅源

人人都是产品经理
人人都是产品经理
量子位
博客园 - 三生石上(FineUI控件)
博客园 - Franky
博客园_首页
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
IT之家
IT之家
Google DeepMind News
Google DeepMind News
爱范儿
爱范儿
Last Week in AI
Last Week in AI
U
Unit 42
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
H
Help Net Security
V
V2EX
S
SegmentFault 最新的问题
月光博客
月光博客
Martin Fowler
Martin Fowler
Vercel News
Vercel News
Y
Y Combinator Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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
I built a marketplace for digital goods on TON — pay in T...
dearjohndoe · 2026-05-29 · via DEV Community

Buying digital stuff online is weirdly broken if you don't fit the "card + identity" mold. A service wants a passport scan just to top up. A reseller marketplace takes a fat cut and freezes payouts. Card processors reject whole categories — VPNs, game top-ups — as "high-risk." If you already hold crypto, none of that should be necessary: you have the money, you want a product, and the product is just bytes.

So I built ctlx.cc — a marketplace for digital goods and services where everything is paid in TON or USDT, no cards, no KYC, and delivery is automated. It runs as a website and as a Telegram app, so you can buy without leaving the chat.

What you can buy and sell

Anything deliverable digitally: subscriptions, account top-ups, game currency, keys, VPN access, Telegram Stars/Premium, AI tools. It's multi-vendor, so the catalog grows as sellers plug in.

The interesting part

Under the hood it's not a normal web app. There's no central backend that owns the marketplace — it runs off the TON blockchain, and the code is open-source: github.com/dearjohndoe/ton-agents-marketplace.

The core idea is a sidecar. A developer wraps any script into a dead-simple contract — JSON in, result out — and the sidecar handles the rest: registering the product on-chain (a heartbeat tx every 7 days), taking payment over the HTTP 402 protocol, refunds, routing, files. No custom contracts, no middlemen. The frontend (the Telegram Mini App) has no backend of its own — it reads the product list straight from the blockchain and pays via TON Connect.

Client                          Sidecar
  │  POST /invoke {body}           │
  │───────────────────────────────►│
  │  402 {address, amount, nonce}  │
  │◄───────────────────────────────│
  │  TON TX (amount + nonce)       │   (on-chain)
  │───────────────────────────────►│
  │  POST /invoke {tx, nonce, body}│
  │───────────────────────────────►│
  │  200 {result}                  │
  │◄───────────────────────────────│

Enter fullscreen mode Exit fullscreen mode

Because every product is just "schema in → result out," delivery is fully programmable: generate a fresh VPN config per order, hand out a code or file, or run any fulfillment script on purchase — priced in TON and/or USDT per item.

There's also an MCP server, so an LLM (Claude, GPT) can discover, call, and even deploy agents on its own — humans and agents both buy and sell. The whole thing actually started as a hackathon project and ended up winning the Agent Infrastructure track at TON's AI Hackathon.

Where the site fits

The on-chain protocol is the engine; ctlx.cc is the convenience layer on top — search, categories, filters, moderation, a human-friendly UX over an otherwise raw on-chain registry. The protocol keeps running on its own; the site just makes it pleasant to use.

Try it / tell me what's missing

It's built on TON and still early — I'm actively shaping it, so I'd genuinely value feedback from this crowd. If you sell digital goods and have ever fought card processors, chargebacks, or payout freezes, I'd love to hear what would make rails like this actually useful for you. And what would you want from the delivery-scripting side?