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
-
Request Proofs
- Implement proof requests using one of our official SDKs:
- React SDK for web applications
- React Native SDK for mobile applications
- Flutter SDK for cross-platform applications
- Node.js SDK for backend implementations
- Implement proof requests using one of our official SDKs:
-
Handle Proof Upload
- Once the user uploads the proof, store the proof identifier or reference
- This reference will be needed for subsequent verification steps
-
Submit Proof to Smart Contract
- Convert the proof into a blockchain-compatible format (serialization)
- Submit the serialized proof to your designated smart contract
-
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.