✨Works out of the box guarantee. If you face any issue at all, hit us up on Telegram and we will write the integration for you.
logoReclaim Protocol Docs

Cardano SDK

Learn how to implement and verify Reclaim Protocol Proofs in your blockchain applications.

Overview

Reclaim Protocol Proofs provide a secure way to verify user data in blockchain applications. This guide explains the implementation flow from requesting proofs to on-chain verification.

Implementation Flow

  1. Request Proofs

  2. Handle Proof Upload

    • Once the user uploads the proof, store the proof identifier or reference
    • This reference will be needed for subsequent verification steps
  3. Submit Proof to Smart Contract

    • Convert the proof into a blockchain-compatible format (serialization)
    • Submit the serialized proof to your designated smart contract
  4. Verify On-chain

    • The smart contract performs verification of the submitted proof
    • Implement appropriate logic to handle verification results

Next Steps

  • Review our [Smart Contract Integration Guide] for detailed verification implementation
  • Explore [Example Implementations] for practical usage scenarios
  • Check our [Security Best Practices] for proof handling

Note: Replace bracketed links with actual documentation links when available.

On this page