Planned This channel is on our roadmap.
Enterprise DLT

Hedera Verification

Verify Hedera wallet control through message signing. Works with HashPack, Blade and all major Hedera wallets. Enterprise-grade blockchain.

Proofproof.holdings · verification api
AttestationNº 2026-0093
subject0.0.148231
channelhedera logoSigned message · Ed25519
challengesigned proof-verify 8f2c with the key
received14:24:10 UTC
verdictControl proventhe private key signed — nothing left the wallet
Mintedctrl_9a6e…c12 · ES256
How It Works

Hedera message signing verification

§ 01

Create Challenge

Call our API with the Hedera account ID. We generate a unique message for the user to sign.

§ 02

User Signs Message

User signs the challenge message with their wallet (HashPack, Blade, etc.). No transaction needed.

§ 03

Proof Generated

We verify the signature and return a proof token confirming wallet control.

API Integration

Integrate Hedera wallet verification

1. Create Verification Request

curl -X POST https://api.proof.holdings/api/v1/verifications   -H "Authorization: Bearer pk_live_YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{
    "type": "wallet",
    "channel": "hedera",
    "identifier": "0.0.123456"
  }'

2. Verify the Proof Token

# After user signs the challenge message
curl -X POST https://api.proof.holdings/api/v1/verifications/VERIFICATION_ID/submit   -H "Authorization: Bearer pk_live_YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{
    "signature": "0x..."
  }'

Response Example

{
  "id": "507f1f77bcf86cd799439011",
  "type": "wallet",
  "channel": "hedera",
  "status": "verified",
  "identifier": "0.0.123456",
  "verified_at": "2026-03-15T10:30:00Z",
  "proof": {
    "token": "eyJhbGciOiJFUzI1NiIs...",
    "expires_at": "2026-04-14T10:30:00Z"
  }
}