Etherscan Information Center: Verified Signatures Tool Guide

·

Introduction to Message Signing with EOAs

Externally Owned Accounts (EOAs) enable users to perform more than just transactions and smart contract interactions. One powerful feature is the ability to sign messages, which serves as cryptographic proof of address ownership. This process requires access to the EOA's private key, making it a secure method for:

When signing a message, the system generates a unique signature hash—a distinctive character string similar to (but longer than) a transaction hash. This digital fingerprint ensures the message's authenticity and integrity.

👉 Learn more about Ethereum security practices

Etherscan's Enhanced Verified Signatures Tool

We've upgraded our Verified Signatures Tool with:

  1. A streamlined user interface
  2. Direct in-browser message signing capability
  3. Optional message publishing functionality

How to Sign Messages on Etherscan

  1. Connect Your Wallet

    • Click "Sign Message"
    • Choose between MetaMask or WalletConnect
    • Authenticate your EOA
  2. Compose Your Message

    • Enter your desired message content
    • Click "Sign Message" to generate the signature hash
  3. Optional Publishing

    • Published messages receive a permanent Etherscan URL
    • ⚠️ Warning: All published messages become publicly accessible
    • Recommended for non-sensitive communications only

Message Verification Process

Verification confirms whether a message was genuinely signed by the claimed address. Common use cases include:

Step-by-Step Verification

  1. Select "Verify Signature" on the Verified Signatures page
  2. Complete these required fields:
FieldDescriptionImportant Notes
AddressSigner's Ethereum addressCase-sensitive
MessageExact signed contentMust match character-for-character
Signature HashThe "sig" valueAdd "0x" prefix if missing
  1. Choose verification options:

    • Verify only
    • Verify and publish (with same privacy considerations)

Published Message Management

To remove accidentally published messages:

  1. Sign this exact message format:

    [Etherscan.io dd/mm/yyyy hh:mm:ss] I, hereby request that the Verified Signature #[ID] be removed from Etherscan.io
  2. Submit the signed request via Etherscan's Contact Us page

👉 Explore advanced Ethereum tools

FAQs

Q: Is message signing the same as making a transaction?
A: No. Signing consumes no gas and doesn't broadcast to the network—it only creates cryptographic proof.

Q: Can I verify messages signed with hardware wallets?
A: Yes, our tool supports all standard Ethereum signing methods including Ledger and Trezor.

Q: How long do published messages remain available?
A: Published messages persist indefinitely unless manually unpublished.

Q: What's the difference between 'msg' and 'sig' fields?
A: 'msg' contains the original content, while 'sig' is the cryptographic proof of its authenticity.

Q: Can smart contracts sign messages?
A: No, only EOAs (user-controlled addresses) can sign messages. Contracts can verify signatures but not create them.