Reso is a contemporary compliance and identity-guard framework built for the Stellar Network. It utilizes zero-knowledge proofs (ZKP), homomorphic encryption, and multisig authorization logic to guarantee regulatory alignment (KYC, AML, sanctions screening) without disclosing users' private wallet details or transaction histories on the public ledger.
Traditional blockchains require compliance checks to occur on-chain, exposing private user credentials. Reso shifts the heavy cryptographic computations off-chain to an independent compliance oracle, verifying transactions securely in seconds:
When a transaction is initiated, Reso compiles a cryptographic proof verifying that the user meets all requirements (KYC tier, sanctions clearance, daily transfer limits).
The compiled ZK proof is transmitted to the Stellar network ledger. Rather than verifying the transaction contents, the network verifies only the mathematical correctness of the ZK proof.
Allows real-time verification of transaction rules. Simulates sanctions screening, KYC tiers, and homomorphic balance cap checks.
Uses Paillier homomorphic encryption to aggregate daily spending limits without decrypting individual transaction amounts, maintaining financial privacy.
Locks funds on the Stellar network testnet. Releasing/claiming the locked funds requires presenting a valid off-chain ZK verification token.
Implements a 3-of-5 trustee schema with built-in time delays to reveal user identities only under emergency or legal audit situations.
Reso processes compliance checks sequentially inside isolated ZK circuits, generating verification proofs step-by-step:
Checks if your wallet address exists in a Merkle tree of blacklisted/sanctioned entities. The ZK circuit proves the non-membership of your public key without revealing your actual address.
Verifies if your registered profile meets the required compliance tier (Tier 0, 1, or 2) for the target action. The proof validates that your credentials meet or exceed the threshold dynamically.
Aggregates transaction sums utilizing Paillier additive homomorphic encryption. This validates that the transaction is within daily spending limits without revealing the transaction amounts.
Once all compliance proofs are successfully compiled and folded together, the transaction is released to the Stellar Horizon API for final on-chain settlement.