AZTEC is an efficient zero-knowledge privacy protocol. The protocol powers real world financial applications on Ethereum mainnet today. A complete explanation of AZTEC can be found in our white paper.
This is a proof of concept. The trusted setup was generated by our team internally. We will be releasing more information about the production trusted setup generation in the near future. Use at own risk.
There are two key sources of documentation:
- Protocol specification: https://aztec-protocol.gitbook.io/aztec-documentation/
aztec.js
client side proof construction API: https://aztecprotocol.github.io/AZTEC/
AZTEC is maintained as a monorepo with multiple sub packages. Please find a comprehensive list below.
Package | Version | Description |
---|---|---|
aztec.js |
An aggregate package combining many smaller utility packages for interacting with the AZTEC Protocol | |
@aztec/contract-artifacts |
AZTEC smart contract compiled artifacts | |
@aztec/contract-addresses |
A tiny utility library for getting known deployed contract addresses for a particular network | |
@aztec/dev-utils |
Dev utils to be shared across AZTEC projects and packages |
Package | Version | Description |
---|---|---|
@aztec/protocol |
AZTEC solidity smart contracts & tests |
Package | Description |
---|---|
@aztec/monorepo-scripts |
Scripts for managing the monorepo |
To create AZTEC notes and construct zero-knowledge proofs:
$ yarn add aztec.js
Other goodies:
$ yarn add @aztec/contract-artifacts
$ yarn add @aztec/contract-addresses
$ yarn add @aztec/dev-utils
To see a demo, head to this tutorial.
For more information, check out our documentation.
- node >=8.3
- yarn >=1.15.2
- solidity >=0.5.0 <0.6.0
Make sure you are using Yarn >= 1.15.2. To install using brew:
brew install yarn
Then install dependencies:
yarn install
To build all packages:
$ yarn build
To build a specific package:
$ PKG=aztec.js yarn build
To re-build all packages on change:
$ yarn watch
To clean all packages:
$ yarn clean
To clean a specific package:
$ PKG=aztec.js yarn clean
To lint all packages:
$ yarn lint
To lint a specific package:
$ PKG=aztec.js yarn lint
To run all tests:
$ yarn test
To run tests in a specific package:
$ PKG=aztec.js yarn test
The protocol enables transactions of value, where the values of the transaction are encrypted. The AZTEC protocol smart contract validator, AZTEC.sol
, validates a unique zero-knowledge proof that determines the legitimacy of a transaction via a combination of homomorphic encryption and range proofs.
Instead of balances, the protocol uses AZTEC notes. A note encrypts a number that represents a value (for example a number of ERC-20 tokens). Each note has an owner, defined via an Ethereum address. In order to spend a note the owner must provide a valid ECDSA signature attesting to this.
The AZTEC protocol can enable confidential transactions for any generic digital asset on Ethereum, including existing assets. For our proof of concept implementation of the AZTEC protocol, we attached an AZTEC token to MakerDAO's DAI token. This smart contract can be used to convert DAI from its public ERC-20 form into a confidential AZTEC note form.
The AZTEC protocol can be utilized as a stand-alone confidential token, with value transfers described entirely through AZTEC join-split transactions
The gas costs scale with the number of input and output notes in a join-split transaction. For a fully confidential transfer, with 2 input notes and 2 output notes, the gas cost is approximately 900,000 gas. Planned EIP improvements will reduce the cost of these transactions dramatically, to approximately 200,000 - 300,000 gas.
The AZTEC protocol is live today on the Ethereum main-net. Our proof of concept contract converts DAI into AZTEC note form and is live on the Ethereum main-net. Here is an example AZTEC join-split transaction.
Read the AZTEC paper here. The unique AZTEC commitment function enables the efficient construction and verification of range proofs. The protocol requires a trusted setup protocol, that generates a dataset that is required to construct AZTEC zero-knowledge proofs
Our proof of concept uses a trusted setup generated by our team internally. Whilst we would like to think you can trust us implicitly, we have developed a method of performing the trusted setup via multiparty computation. Each participant generates a piece of toxic waste that must be destroyed. Only one participant must destroy their toxic waste for the protocol to be secure and the trusted setup process can scale indefinitely. We will be releasing our full specification for the trusted setup protocol shortly.
The AZTEC protocol supports a stealth address protocol that can be used to obfuscate the link between a note 'owner' and any on-chain identity.
Anybody wishing to become early members of the AZTEC network please get in touch at [email protected]