Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Verify Identity – Makechain
Skip to content

Verify Identity

Link an external address (Ethereum or Solana) to your Make ID by signing a deterministic challenge message. The claim is verified on-chain and stored in consensus state.

Interactive Demo

Link an Ethereum addressinteractive
1
Connect your Ethereum wallet
2
Enter your Make ID (MID)
3
Sign with your Ethereum wallet
4
Preview VERIFICATION_ADD message
Type: ETH_ADDRESSScheme: EIP-191 personal_sign

Solana variant

Link a Solana addressdemo
Sign the challenge with your Solana wallet
Challengemakechain:verify:42
SchemeEd25519 (Solana address IS the public key)
Signature (64 bytes)7f8e9d0c1b2a...3e4f5a6b7c8d
Submit and finalize
VERIFICATION_ADD message
{
  "type": "VERIFICATION_ADD",
  "mid": 42,
  "timestamp": 1740000300,
  "body": {
    "verification_type": "SOL_ADDRESS",
    "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
    "claim_signature": "7f8e9d0c1b2a..."
  }
}
Finalized in block #1,502

How verification works

Ethereum (ETH_ADDRESS)

  1. You sign the challenge makechain:verify:<mid> using EIP-191 personal_sign
  2. The validator recovers the signer address from the signature using secp256k1 + keccak256
  3. If the recovered address matches the address field, the verification is accepted

Solana (SOL_ADDRESS)

  1. You sign the challenge makechain:verify:<mid> with your Solana keypair
  2. The validator verifies the Ed25519 signature directly — the Solana address is the public key
  3. If the signature is valid, the verification is accepted

Removal

Verifications are a 2P set. Submit VERIFICATION_REMOVE to unlink an address. On a timestamp tie between add and remove, remove wins.