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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

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
The End of Blind Signing: Deep Diving into ERC-7730, ERC-...
Aniket Misra · 2026-05-20 · via DEV Community

For years, the status quo of interacting with Ethereum protocols has been a security nightmare masquerading as a routine task. You open a frontend, click "Swap" or "Stake," and your hardware wallet prompts you to sign a blob of unreadable hexadecimal data.

You are blind signing. You are trusting that the frontend hasn't been compromised, that the RPC URL hasn't been poisoned, and that a malicious actor hasn't swapped out the destination address or function arguments. When the Lazarus Group drained $1.4 billion from Bybit, they didn't break cryptography; they exploited this exact UI gap. They tricked users into blind signing data that did something entirely different from what was shown on the screen.

The Ethereum Foundation, alongside an industry working group (including Ledger, Cyfrin, MetaMask, and Trezor), launched Clear Signing—a unified security standard designed to enforce the principle of "What You See Is What You Sign" (WYSIWYS).

This deep dive breaks down the technical layer of this release: ERC-7730, ERC-8213, and how they work together to eliminate blind signing without forcing on-chain breaking changes.


1. ERC-7730: The Clear Signing Metadata Standard

Originally proposed by Ledger and now under the stewardship of the Ethereum Foundation’s Trillion Dollar Security Initiative, ERC-7730 establishes a standardized, machine-readable JSON format that describes exactly what a smart contract’s function calls and EIP-712 typed messages mean in plain text.

Because this metadata lives entirely off-chain, it requires zero changes to existing smart contracts.

How It Works Under the Hood

Wallets and hardware devices cannot natively store the ABIs and translation logic for millions of deployed contracts. ERC-7730 solves this by creating a highly structured schema that maps raw calldata bytes to human-readable display formats.

An ERC-7730 file is broken down into three core blocks:

  1. Context: Binds the descriptor to specific contract deployments across multiple EVM chain IDs.
  2. Metadata: Contains high-level project data (e.g., protocol name, official legal entity, canonical URLs).
  3. Display: The execution mapping logic. It dictates how function selectors and specific parameters are parsed and rendered on a wallet UI.

Here is a simplified architectural look at how a descriptor file (calldata-SwapRouter.json) maps execution data:

{
  "$schema": "[https://eips.ethereum.org/assets/eip-7730/erc7730-v2.schema.json](https://eips.ethereum.org/assets/eip-7730/erc7730-v2.schema.json)",
  "context": {
    "$id": "uniswap-v3-router",
    "contract": {
      "deployments": [
        { "chainId": 1, "address": "0xE592427A0AEce92De3Edee1F18E0157C05861564" }
      ]
    }
  },
  "metadata": {
    "owner": "Uniswap Labs",
    "info": { "url": "[https://uniswap.org](https://uniswap.org)" },
    "contractName": "SwapRouter"
  },
  "display": {
    "formats": {
      "0x415565b0": {
        "title": "Swap Exact Tokens for Tokens",
        "description": "Swaps {amountIn} of {tokenIn} for at least {amountOutMin} of {tokenOut} via route {path}."
      }
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

The Neutral Registry and Attestation (ERC-8176)

Metadata files are a security asset in their own right. If a malicious actor submits a fraudulent ERC-7730 file that translates a transferFrom(all_your_tokens) call into a display message that says "Claim Free Airdrop", the system breaks.

To prevent this:

  • The Ethereum Foundation hosts a central, open-source registry at Clearsigning.org.
  • ERC-8176 introduces an attestation framework built on top of the Ethereum Attestation Service (EAS). Independent security firms and auditors review these JSON files against verified on-chain code and cryptographically attest to their validity. Wallets can then choose which independent auditors they trust before displaying the translation to the user.

2. ERC-8213: The Bytes-Level Fallback

ERC-7730 works perfectly when a contract is known, indexed, and audited. But what happens when you are interacting with an immutable, freshly deployed contract, a highly custom gas-optimized protocol using packed encodings, or an air-gapped system where the wallet cannot fetch the latest JSON descriptor?

If ERC-7730 cannot resolve the metadata, the wallet falls back to ERC-8213.

Authored by Cyfrin, ERC-8213 addresses a physical human vulnerability: eyeballing raw hex data fails. Humans cannot effectively verify 500 bytes of calldata on a small hardware wallet screen without missing an altered character.

Instead of displaying the entire unreadable byte string, ERC-8213 enforces that wallets calculate and display short, reproducible cryptographic fingerprints called Digests.

The Calldata Digest Formula

For standard transactions containing calldata, ERC-8213 specifies a strict, length-prefixed hash calculation:

$$\text{calldataDigest} = \text{keccak256}(\text{uint256}(\text{len}(\text{calldata})) \mathbin{\Vert} \text{calldata})$$

By prefixing the raw calldata bytes with their explicit 32-byte length representation before hashing, it eliminates length-extension vulnerabilities and provides a deterministic snapshot of the execution vector.

The EIP-712 Digest

For off-chain signatures (like those used in snapshot voting, Permit2 allowances, or Safe multi-sig tracking), ERC-8213 mandates the standard exposure of the EIP-712 structured digest:

$$\text{EIP712Digest} = \text{0x1901} \mathbin{\Vert} \text{domainSeparator} \mathbin{\Vert} \text{hashStruct}(\text{message})$$

Why This Matters for Hardware Verification

If a frontend gets compromised via an XSS injection, the attacker will swap out the underlying transaction parameters (e.g., modifying the recipient address in the transaction payload).

Because the frontend is compromised, the user's browser extension might lie about what is happening. However, the hardware wallet calculates the ERC-8213 Calldata Digest directly from the raw bytes sent over the USB/Bluetooth line.

By comparing the digest shown on the physical screen with an independent source (like a block explorer, a separate terminal tool, or local execution), the user has deterministic proof that the data was not modified in transit.


3. The Clear Signing Workflow

When an application triggers a signing event, the execution pipeline functions as follows:

[ Frontend Action ] 
        │
        ▼
[ Raw Calldata / EIP-712 Struct Generated ]
        │
        ▼
[ Wallet Interception ]
        │
        ├───► Has ERC-7730 Metadata & Valid ERC-8176 Attestation?
        │           │
        │           ├───► YES: Display Human-Readable UI ("Swap 1 ETH for 3,000 USDC")
        │
        └───► NO (Fallback to ERC-8213)
                    │
                    └───► Compute deterministic Keccak256 Calldata/EIP-712 Digest
                    └───► Render concise cryptographic fingerprint on screen

Enter fullscreen mode Exit fullscreen mode


Intent to Build

Clear signing closes one of the oldest attack surfaces in the EVM ecosystem. Moving forward, security is no longer just about writing secure Solidity or Rust circuits; it includes ensuring that the execution intent matches the user's perception at the exact millisecond they hit "Sign."

As I focus on building protocol-level infrastructure, implementing ERC-7730 descriptors and ensuring ERC-8213 compatibility will be core to the development lifecycle of my applications. I will be documenting my project implementations, gas considerations, and architectural patterns here in public. Stay tuned for the engineering updates.