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

推荐订阅源

腾讯CDC
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
Jina AI
Jina AI
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks

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 protocol that prevents the "double-use of infor...
Shota N · 2026-05-15 · via DEV Community

Shota N

The problem no one names

When you negotiate a deal — IP licensing, real estate, M&A — you have to share information to reach an agreement. Your first offer. Your counteroffer. How fast you concede. Whether you keep negotiating or walk away.

Here's the catch: that same information is used by the counterparty to worsen your terms.

Your opening bid of $100K? Now they know you'll pay at least $100K. Your quick concession to $80K? Now they know you're desperate. Your willingness to keep talking after round 5? Now they know you have no alternatives.

I call this the double-use of information: private information that is used once to facilitate a deal, then reused to extract more value from you.

What I built

Sealed Trade Protocol — a system where AI agents negotiate on behalf of each party, and neither party can observe the negotiation process.

The flow:

  1. Seller lists an asset with a max deal value. Posts a 1% bond.
  2. Buyer expresses interest. Posts a matching bond.
  3. Each party signs parameters for their AI agent (min/max price, terms, constraints).
  4. Agents negotiate inside a hardware-isolated enclave (TEE). Neither party sees offers, counteroffers, or timing.
  5. Only the outcome exits: agreed price + terms, or "no deal."
  6. Settlement happens on-chain. Bonds are returned.

If either party cancels during negotiation, their bond is slashed — 50% to counterparty, 50% to an insurance pool. This makes griefing expensive.

Why AI agents + TEE?

You might ask: why not just use MPC, FHE, or ZKP?

Approach Why it doesn't work here
MPC Requires predefined circuits — can't support free-form negotiation
FHE Orders of magnitude too slow for LLM inference
ZKP Proves correctness but can't seal arbitrary conversation content
Trusted broker No technical enforcement — trust fails

TEE (Trusted Execution Environment) provides memory isolation and remote attestation. The agents run inside the enclave, negotiate in natural language, and the enclave is destroyed after negotiation. The negotiation dynamics — who conceded first, how many rounds it took, what intermediate prices were proposed — are sealed and gone.

Yes, TEE requires trusting the hardware vendor. That's a different assumption than mathematical hardness. But it's strictly better than trusting a human broker.

The economics

Both parties have skin in the game via escalating bonds:

Stage Bond Range
Discovery 1% of deal value $1 – $1,000
Negotiation 3% $5 – $5,000
Execution 10% $10 – $50,000

Settlement fee: 0.3%. That's the only non-recoverable cost. Bonds are locked capital, not spent capital.

What's working now

  • Smart contracts on Sepolia testnet — SealedTrade.sol, BondVault.sol, Treasury.sol (32 tests passing)
  • Demo UI where you can list assets, match, and run AI agent negotiation with Claude API
  • Product listings with categories (Real Estate, Patent/IP, Equity, etc.) and search
  • Position paper formalizing the information double-use problem

What's not built yet

  • TEE agent runtime — agents currently run client-side, so negotiation messages are visible. Moving them into actual enclaves is the next milestone.
  • Security audit — contracts are not audited. Testnet only.

Try it

What I'd love feedback on

  • Is "information double-use" a useful framing? Or does game theory already have a better term for this?
  • The bond curve (1/3/10%) — too aggressive? Too soft?
  • Agent negotiation strategies beyond simple price anchoring
  • How this relates to A2A (Google → Linux Foundation) and ACP (IBM) protocols

Thanks for reading. Happy to answer questions.