Off-Chain Proofs
Overview
The flow is the following:
Your site redirects user to Holonym where the user generates the requested proof.
After generating the proof, the user is redirected to a callback specified by the organization. The proof is included in the URL query parameters. At the callback location, the organization can verify the proof.
1. Redirect user to Holonym
Redirect user to the following URL:
Parameter descriptions:
proofType
- Eitheruniqueness
(for government ID proof of uniqueness),uniqueness-phone
(for phone proof of uniqueness), orus-residency
(for proof of US residency).callback
- The URL to which the user should be redirected once they've generated their proof. The proof will be added a query parameter to this callback. For example, ifcallback
ishttps://example.com
, the user will be redirected tohttps://example.com?proof=<proof>
.
2. Verify proof
The user will not be redirected to the callback unless the proof is valid. But you may want to verify the proof yourself.
You can use the @holonym-foundation/off-chain-sdk package to verify proofs.
Last updated