Identity Privacy
With cryptographic anonymity, sender and recipient identities are hidden
🎉 We are hiring — click to see open roles or take our interview test.
The new internet of money is secured by openness, but at a high price — all your counterparties know your entire financial history. Aztec is the ultimate security shield for the internet of money, protecting user and business data on Web3.0.
With cryptographic anonymity, sender and recipient identities are hidden
Transaction amounts are encrypted, making your crypto balances private
Network observers can’t even see which asset or service a transaction belongs to
Aztec is built on PLONK, the new superfast standard in universal SNARK technology — created by our world-class cryptography team
Private transactions are computed in seconds on all devices, and our rollup service saves gas and settles in minutes
Fund and manage your DeFi positions anonymously, and trade them inside the Aztec privacy shield
Program private money — escrow, money streaming, micropayments — your imagination is the limit
For MetaMask users, zk.money is your app for managing your private assets. Today, you can shield and send DAI and ETH for confidential balances. Later this year zk.money will integrate the Aztec SDK for wallet-level privacy.
Visit zk.moneyUse Aztec 1.0 to bring fast balance privacy to your dApp. Integrate our SDK with one line of code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Enable the SDK
const apiKey = '7FJF5YK-WV1M90Y-G25V2MW-FG2ZMDV';
await window.aztec.enable({ apiKey });
// Fetch the zkAsset
const address = '0x7Fd548E8df0ba86216BfD390EAEB5026adCb5B8a';
const asset = await window.aztec.zkAsset(address);
// Send ZkDai
await asset.send([
{
to:'0xCF4cca97754C0C6a54621B6850f764354Ab2Cb3d',
amount: 50,
},
]);
// browse the full docs here 📚 🎉 |