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

推荐订阅源

GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
腾讯CDC
博客园_首页
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security 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
A week in intent-based trading: Ghost Auction, live quote...
Baris Sozen · 2026-04-26 · via DEV Community

Baris Sozen

A short Sunday recap from the Hashlock Markets team: what shipped this week, what it changes for traders and market makers, and what the next sprint is focused on.

If you're new here: Hashlock Markets is an intent-based trading protocol. You declare what you want to trade and on what terms. Market makers respond with sealed-bid quotes. The winning quote settles via a Hash Time-Locked Contract (HTLC) — atomic, cross-chain, no escrow, no information leakage. The whole stack is also accessible via the Model Context Protocol, so an AI agent (Claude, GPT, anything that speaks MCP) can run the flow end-to-end.

1. Ghost Auction: sealed-bid pricing, with a clearer name

The protocol's RFQ pricing has always been sealed-bid: market makers cannot see each other's quotes; only the trader can. We renamed the user-facing surface from blind auction to Ghost Auction. The mechanism didn't change — the framing did. Sealed bids deliver three properties that matter in DeFi:

  • No information leakage. A market maker's quote is private to the trader.
  • No front-running. No public mempool order to sandwich.
  • Better fills. Each MM has to put in their best independent price; no copying off the order book.

2. Live quote feed

When a market maker submits a price on your RFQ, you see it the moment it arrives — anywhere in the app. Toast notification, optional sound, click-through to the trade detail. Sealed-bid doesn't need to mean slow. The trader sees every incoming quote in real time, and the auction window stays short.

3. End-to-end idempotency on the RFQ path

Idempotency keys now cover the full RFQ lifecycle: creating an RFQ, submitting a quote, and accepting a winning quote. AI agents retry — that's a feature of how they work — and the protocol now treats retried calls as a no-op when they arrive with the same key. Concretely, this matters most for AI agents using create_rfq, respond_rfq, and the acceptance step: you can rerun the whole flow safely without double-creates.

4. Why this matters for AI-agent trading

Hashlock Markets exposes six MCP tools that map onto the trading lifecycle:

Tool What it does
create_rfq Open a sealed-bid RFQ
respond_rfq Submit a quote as a market maker
create_htlc Lock funds in the atomic settlement contract
withdraw_htlc Claim an HTLC by revealing the preimage
refund_htlc Refund after timelock expiry
get_htlc Query lifecycle state

Two ways to connect: stdio (npx -y @hashlock-tech/mcp) or Streamable HTTP at https://hashlock.markets/mcp. SIWE (Sign-In with Ethereum) handles auth; the agent never needs to handle a password.

5. What's next

A few things on deck for the coming weeks:

  • More chains. Solana and Arbitrum are next on the HTLC integration roadmap, joining Ethereum, Bitcoin, and Sui.
  • Reference market-maker template. A working example MM stack that other teams can fork — pricer, RFQ subscriber, quote handler, settlement.
  • Agent-mode polish. Tighter error semantics, richer get_htlc state, and better discoverability via llms.txt.

If you're an agent developer or a market maker, the canonical repo is at github.com/Hashlock-Tech/hashlock-mcp. Drop the MCP server into your client and you can place a real cross-chain trade with create_rfq in a few minutes.

— Built at Hashlock Markets