🪄Konseal: Concept
Self-custodial multi-sig wallet for the Ethereum ecosystem that provides true on-chain privacy and anonymity.
Stealth addresses enable two parties to transact privately by allowing the sender (Alice) to generate a one-time recipient (stealth) address, which can only be controlled by the intended transaction recipient (Bob). This stealth address is not linked to Bob and provides true on-chain privacy and anonymity.
Overview
Bob wants to receive a transaction from Alice on Ethereum anonymously.
Bob signs up to Konseal, and a root spending key and meta address are generated.
Bob sends Alice his meta-address.
Alice inputs Bob's meta-address into Konseal dApp to generate a stealth address.
Alice transfers 100 Ether to Bob's meta-address.
Bob checks the Konseal dApp and waits until the spending address is found.
Bob can now access the 100 Ether.
Architecture
Bob wants to receive a transaction from Alice on Ethereum anonymously.
Bob signs up to Konseal to create a Private Smart Wallet. A spending and viewing key is generated for Bob. These two keys are formatted together to form Bob's meta address.
// Some code to call contracts to return stealthMetaAddressThe meta address is a spending key, viewing key in the following format:
st:eth:0x<spendingKey><viewingKey>Alice inputs Bob's meta-address into Konseal dApp to generate a stealth address.
Alices ephemeralPubKey is published to a registry smart contract.
Alice sends 100 Ether to Bob's stealth meta-address.
Bob input his viewing spending key into Konseal
Konseal bot scans the ephemeral public key registry for the entire list of ephemeral public keys published by anyone for any reason since the last time it did the scan.
For each ephemeral public key, the bot attempts to combine it with Bob's viewing spending key to generate a stealth address and checks if there are any assets in that address.
The bot computes the spending key for any address that contains funds and returns it.
Alice has the option to fund the stealth address and allow Bob to move the assets.
Last updated