Aztec Network
11 Dec
## min read

Announcing the Aztec Sandbox Alpha Program

Share
Written by
Jon Wu
Edited by

Supporting the earliest builders on Aztec’s privacy-first Layer 2

In September, Aztec Labs launched the Aztec Sandbox, a prototype local developer testnet for privacy-first applications on the Aztec network.

Shortly thereafter, we recruited a small group of dedicated blockchain and ZK developers to a friendly, closed-invite feedback partnership program.

We had three goals for this program:

  1. Improve developer experience with added features
  2. Stabilize the Sandbox with bug reports and technical feedback
  3. Encourage experimentation and development of novel applications using the Sandbox’s Private Execution Environment (PXE) and public-private state management functionality

We’re now wrapping up the first round of closed-invite Sandbox feedback partnerships, with two more rounds to come, before we gear up for an open testnet launch.

We believe the Sandbox environment is alpha-ready: stable, well-documented, and well-featured enough for dedicated partners to use.

As a result, we are opening the alpha to developers in a hands-on program. Experience with Noir, Aztec, or Sandbox is strongly preferred but not necessary.

The Program

{{blog_divider}}

Of course non-men are also wanted.

The Sandbox Alpha Program is meant to onboard the earliest, most hardcore, and most dedicated privacy-first developers. No prior experience with Noir, Aztec, or ZK is necessary, but alpha partners will need to have:

  • Exceptional technical skills
  • Ability to commit 15-20 hours a week for ~4-6 weeks
  • Regular check-ins with the Aztec Labs core team

In return, alpha partners will receive:

  • A modest stipend
  • Comarketing support
  • A dedicated core Aztec protocol engineer as a partner
  • Opportunity to be a highly valued member of the Aztec community and join early to voice your feedback in the development of our network
  • Help from the Aztec core team in building fully-fledged Aztec applications on Aztec’s eventual mainnet
  • And, of course, honor and glory

📝 If you’re interested in becoming an Alpha partner, apply here:

What’s so special about Aztec?

Aztec is a privacy-first layer 2 on Ethereum. What that means is Aztec enables:

  • Reading and writing smart contract data to private storage
  • Private execution of smart contract functions
  • Public-private state interactions in the same transaction

Aztec also comes with private L1<>L2 messaging functionality and native account abstraction.

Practically, smart contracts can store public information, legible to all, and also write information to private, encrypted datastores.

Users–and only users–are able to retrieve their own private data and compute over that data locally, on their own devices.

This not only establishes ironclad privacy, but enables broad new blockchain functionality. For starters, Aztec easily enables identity privacy, meaning every transaction in Aztec can start privately (from your account contract) which can then execute functions privately or publicly.

A dapp can have private and public methods in the same contract, with public-private contract calls.Aztec has identity privacy by default. Meaning even when applications are deployed to public memory, users can interact with those applications privately.

Feedback Partners Proofs of Concept

The design space for private applications goes far beyond “DeFi but private” or “NFTs but private” given that fully encrypted data ownership (“private state”) is now a reality.

Here are just some of the example projects built in the Sandbox during our closed-door feedback round:

Ikigai (web3 Patreon) - Resurgence Labs

As an example, take Resurgence Labs, who are building a project called Ikigai, a private web3 version of Patreon. The way Patreon works in web2 is individuals commit funds on a recurring basis to Patreon, unlocking rewards. Payments are verified using a web2 payment API (e.g. Stripe), allowing access to paywalled content.

👀 See the Ikigai project Github here.

How would you build a Patreon like service on Ethereum without forcing individuals to leak their subscriptions? For instance, on Ethereum everyone can see your address sending payments to your chosen creators.

Using the Aztec Sandbox, Resurgence Labs created a smart contract that allows individuals to purchase a private NFT–kept in one’s own encrypted datastore, which when proven to Ikigai, grants access to gated premium content.

The contract first mints an encrypted NFT with details of the subscription. At any time, the NFT owner can prove ownership and non-expiry of the NFT to Ikigai’s server.

“Unlike most web3 dapps, we can actually cite something other than decentralization as our USP over our web2 counterpart (say Patreon). With this feature, people can subscribe to something without having to let the world know about it (or be judged over it).”

Private Optimistic Oracle - DeFi Wonderland

Wonderland built a private ask-and-answer platform on which a requester can pose a private query for information. This query is encrypted specifically for a third party that can furnish answers for the requester, and all questions and responses are kept private to everyone but the involved parties.

👀 See DeFi Wonderland's Github projects here, here, and here.

The requester escrows funds privately to a contract, where the answerer can eventually redeem the funds, without any established relationship between the requester and the answerer.

Wonderland’s design opens up significant opportunities across messaging and oracle services:

Not only can individuals privately request information and data on-chain, but they can also exchange funds attached to answers furnished.

The notion that two parties can privately escrow funds in advance of a unilateral transaction is a powerful primitive we think could be used in everything from oracles to on-chain legal contracts and business agreements.

Zybil, a Sybil-Resistant Identity Protocol - Mach34

Mach34 created a mock of a Gitcoin Passport-style Sybil Resistance protocol that allows the creation of a sybil resistance score that encrypts “stamps” of data ingested from various web2 and web3 sources. By aggregating stamps, a public sybil score can be created for use in other applications, proving you meet a minimum sybil score without revealing the individual data sources used. Users can also post encrypted attestations to identity back to L1.

👀 See Mach34's project Github here.

In the future, such functionality can be extended to things like legal identities which could confer proof of age, residency, or other personal identifiable information without privacy leakage.

Aztec Labs has always believed provable attestations and identity would be a significant step ahead in securing blockchains, improving fair token distributions, and unlocking DeFi primitives like undercollateralized lending.

Imagine identity passports with completely private attestations, any combination of which a protocol can request in order for the user to access additional functionality.

Private On-Chain Poker - Zach Obront

Poker is a trivial game to design in a trusted game environment. A trusted dealer custodies face-down cards, shuffles them, and deals them to players. Players assume fairness in shuffling and distribution.

👀 See Zach's project Github here.

Zach Obront is an Aztec Labs grantee who developed a poker game with no centralized, trusted dealer. The players cryptographically generate the deck and use Aztec’s infrastructure to keep their cards private while performing betting and hand resolution logic.

  • Each player generates a secret key, derives a public key, and posts proof that they know the secret key corresponding with the public key.
  • Each player takes turns shuffling the order of the cards, and then encrypting the value. They submit a ZK proof that the shuffle was done legitimately.
  • After all players have shuffled, no group (except the whole table) could have colluded to know which encrypted value corresponds to which card, and all cards are encrypted with the aggregate public key.
  • To deal the cards, we count off which card belongs to which player, and everyone else decrypts it. Then the player can privately decrypt to view the card.

While playing fully on-chain poker is likely too transaction- and latency-intensive to be feasible, we believe such a design could be implemented using state channels (where the end state of the hand is settled on-chain) or an L3 built on top of Aztec.

“ZK proof of correct shuffle is as easy as a for loop. That would have been the bottleneck to the whole thing working in any other environment.”
– Zach Obront on choosing Aztec

Join the Feedback Program

We want to work with dedicated, privacy-first individuals and teams who are willing to commit to working with Aztec’s infrastructure on a collaborative and open basis.

We are at the frontier of blockchain privacy. So to paraphrase Ernest Shackleton, Antarctic explorer:

DEVS WANTED

  • For hazardous journey, small wages, bitter bugs, long months of debugging, constant updates, working code doubtful, honor and recognition in case of success

What we’re looking for

  • Prior experience with building apps/infra either for blockchains or the ZK domain
  • A commitment to collaborating on application concepts and feature improvements for Aztec
  • Solid foundational understanding of smart contracts, blockchain applications and Ethereum Layer 2’s

📝 To join our next round of Sandbox Alpha Partners, apply here.

Read more
Aztec Network
Aztec Network
22 Jan
xx min read

The $AZTEC TGE Vote: What You Need to Know

The TL:DR:

  • The $AZTEC token sale, conducted entirely onchain concluded on December 6, 2025, with ~50% of the capital committed coming from the community. 
  • Immediately following the sale, tokens could be withdrawn from the sale website into personal Token Vault smart contracts on the Ethereum mainnet.
  • The proposal for TGE (Token Generation Event) is now live, and sequencers can start signaling to bring the proposal to a vote to unlock these tokens and make them tradeable. 
  • Anyone who participated in the token sale can participate in the TGE vote. 

The $AZTEC token sale was the first of its kind, conducted entirely onchain with ~50% of the capital committed coming from the community. The sale was conducted completely onchain to ensure that you have control over your tokens from day one. As we approach the TGE vote, all token sale participants will be able to vote to unlock their tokens and make them tradable. 

What Is This Vote About?

Immediately following the $AZTEC token sale, tokens could be withdrawn from the sale website into your personal Token Vault smart contracts on the Ethereum mainnet. Right now, token holders are not able to transfer or trade these tokens. 

The TGE is a governance vote that decides when to unlock these tokens. If the vote passes, three things happen:

  1. Tokens purchased in the token sale become fully transferable 
  2. Trading goes live for the Uniswap v4 pool
  3. Block rewards become transferable for sequencers

This decision is entirely in the hands of $AZTEC token holders. The Aztec Labs and Aztec Foundation teams, and investors cannot participate in staking or governance for 12 months, which includes the TGE governance proposal. Team and investor tokens will also remain locked for 1 year and then slowly unlock over the next 2 years. 

The proposal for TGE is now live, and sequencers are already signaling to bring the proposal to a vote. Once enough sequencers have signaled, anyone who participated in the token sale will be able to connect their Token Vault contract to the governance dashboard to vote. Note, this will require you to stake/unstake and follow the regular 15-day process to withdraw tokens.

If the vote passes, TGE can go live as early as February 12, 2026, at 7am UTC. TGE can be executed by the first person to call the execute function to execute the proposal after the time above. 

How Do I Participate?

If you participated in the token sale, you don't have to do anything if you prefer not to vote. If the vote passes, your tokens will become available to trade at TGE. If you want to vote, the process happens in two phases:

Phase 1: Sequencer Signaling

Sequencers kick things off by signaling their support. Once 600 out of 1,000 sequencers signal, the proposal moves to a community vote.

Phase 2: Community Voting

After sequencers create the proposal, all Token Vault holders can vote using the voting governance dashboard. Please note that anyone who wants to vote must stake their tokens, locking their tokens for at least 15 days to ensure the proposal can be executed before the voter exits. Once signaling is complete, the timeline is as follows:

  • Days 1–3: Waiting period 
  • Days 4–10: Voting period (7 days to cast your vote)
  • Days 11–17: Execution delay
  • Days 18–24: Grace period to execute the proposal

Vote Requirements:

  • At least 100M tokens must participate in the vote. This is less than 10% of the tokens sold in the token sale.  
  • 66% of votes must be in favor for the vote to pass.

Frequently Asked Questions

Do I need to participate in the vote? No. If you don't vote, your tokens will become available for trading when TGE goes live. 

Can I vote if I have less than 200,000 tokens? Yes! Anyone who participated in the token sale can participate in the TGE vote. You'll need to connect your wallet to the governance dashboard to vote. 

Is there a withdrawal period for my tokens after I vote? Yes. If you participate in the vote, you will need to withdraw your tokens after voting. Voters can initiate a withdrawal of their tokens immediately after voting, but require a standard 15-day withdrawal period to ensure the vote is executed before voters can exit.

If I have over 200,000 tokens is additional action required to make my tokens tradable after TGE? Yes. If you purchased over 200,000 $AZTEC tokens, you will need to stake your tokens before they become tradable. 

What if the vote fails? A new proposal can be submitted. Your tokens remain locked until a successful vote is completed, or the fallback date of November 13, 2026, whichever happens first.

I'm a Genesis sequencer. Does this apply to me? Genesis sequencer tokens cannot be unlocked early. You must wait until November 13, 2026, to withdraw. However, you can still influence the vote by signaling, earn block rewards, and benefit from trading being enabled.

Where to Learn More

This overview covers the essentials, but the full technical proposal includes contract addresses, code details, and step-by-step instructions for sequencers and advanced users. 

Read the complete proposal on the Aztec Forum and join us for the Privacy Rabbit Hole on Discord happening this Thursday, January 22, 2026, at 15:00 UTC. 

Follow Aztec on X to stay up to date on the latest developments.

Aztec Network
Aztec Network
6 Dec
xx min read

$AZTEC TGE: Next Steps For Holders

The TL;DR: 

The $AZTEC token sale was conducted entirely onchain to maximize transparency and fair distribution. Next steps for holders are as follows:

  1. Step 1: Create your Token Vault on the sale website. Your Token Vault will keep your tokens secure on Ethereum, keep them non-transferable until TGE, allow you to stake/delegate/participate in governance, and then withdraw them to your wallet after TGE.
  1. Step 2: Staking and Earning Block Rewards. If you have more than 200,000 tokens, you can start staking today on the staking dashboard
  1. Step 3: Token sale participants can vote for TGE as early as February 11th, 2026, at which 100% of tokens from the sale become transferable, and a Uniswap V4 pool goes live. 

The $AZTEC token sale has come to a close– the sale was conducted entirely onchain, and the power is now in your hands. Over 16.7k people participated, with 19,476 ETH raised. A huge thank you to our community and everyone who participated– you all really showed up for privacy. 50% of the capital committed has come from the community of users, testnet operators and creators!

Now that you have your tokens, what’s next? This guide walks you through the next steps leading up to TGE, showing you how to withdraw, stake, and vote with your tokens.

Step 1: Creating a Token Vault 

The $AZTEC sale was conducted onchain to ensure that you have control over your own tokens from day 1 (even before tokens become transferable at TGE). 

The team has no control over your tokens. You will be self-custodying them in a smart contract known as the Token Vault on the Ethereum mainnet ahead of TGE. 

Your Token Vault contract will: 

  • Keep your tokens secure on the Ethereum mainnet.
  • Ensure tokens remain non-transferable until TGE.
  • Allows you to stake, delegate, and take part in governance.
  • After TGE, you can withdraw your tokens to your wallet.

To create and withdraw your tokens to your Token Vault, simply go to the sale website and click on ‘Create Token Vault.’ Any unused ETH from your bids will be returned to your wallet in the process of creating your Token Vault. 

Step 2: Staking and Earning Block Rewards 

If you have 200,000+ tokens, you are eligible to start staking and earning block rewards today. 

You can stake by connecting your Token Vault to the staking dashboard, just select a provider to delegate your stake. Alternatively, you can run your own sequencer node.

If your Token Vault holds 200,000+ tokens, you must stake in order to withdraw your tokens after TGE. If your Token Vault holds less than 200,000 tokens, you can withdraw without any additional steps at TGE

Fractional staking for anyone with less than 200,000 tokens is not currently supported, but multiple external projects are already working to offer this in the future. 

Step 3: TGE 

TGE is triggered by an onchain governance vote, which can happen as early as February 11th, 2026. 

At TGE, 100% of tokens from the token sale will be transferable. Only token sale participants and genesis sequencers can participate in the TGE vote, and only tokens purchased in the sale will become transferrable. 

How does the voting process work? 

Community members discuss potential votes on the governance forum. If the community agrees, sequencers signal to start a vote with their block proposals. Once enough sequencers agree, the vote goes onchain for eligible token holders. 

Voting lasts 7 days, requires participation of at least 100,000,000 $AZTEC tokens, and passes if 2/3 vote yes.

What happens when the vote passes? 

Following a successful yes vote, anyone can execute the proposal after a 7-day execution delay, triggering TGE. 

At TGE, the following tokens will be 100% unlocked and available for trading: 

  • All tokens in Token Vaults that belong to token sale participants.
  • Accumulated block rewards for anyone staking.
  • Uniswap V4 pool. This pool will have 273,000,000 $AZTEC tokens and a matching ETH amount at the final clearing price. 

Join us Thursday, December 11th at 3 pm UTC for the next Discord Town Hall–AMA style on next steps for token holders. Follow Aztec on X to stay up to date on the latest developments.

Aztec Network
Aztec Network
13 Nov
xx min read

The ticker is $AZTEC

We invented the math. We wrote the language. Proved the concept and now, we’re opening registration and bidding for the $AZTEC token today, starting at 3 pm CET. 

The community-first distribution offers a starting floor price based on a $350 million fully diluted valuation (FDV), representing an approximate 75% discount to the implied network valuation (based on the latest valuation from Aztec Labs’ equity financings). The auction also features per-user participation caps to give community members genuine, bid-clearing opportunities to participate daily through the entirety of the auction. 

How to Check Eligibility and Submit Your Bid 

The token auction portal is live at: sale.aztec.network

  • This is the only valid link to the $AZTEC token auction site. Be cautious of phishing scams. No one from the Aztec team will ever contact you directly for seed phrase or private keys. 
  • Visit the site to verify your eligibility and mint a soul-bound NFT that confirms your participation rights. 
  • We have incorporated zero-knowledge proofs into the sale smart contracts by using ZKPassport's Noir circuits to ensure compliant sanctions checks without risking the privacy of our users. 
  • Registration and bidding for early contributors start today, November 13th, at 3 PM CET, with early contributors receiving one day of exclusive access before bidding opens to the general public.
  • The public auction will run from December 2nd, 2025, to December 6th, 2025, at which point tokens can be withdrawn and staked.

Why Are We Doing This? 

We’ve taken the community access that made the 2017 ICO era great and made it even better. 

For the past several months, we've worked closely with Uniswap Labs as core contributors on the CCA protocol, a set of smart contracts that challenge traditional token distribution mechanisms to prioritize fair access, permissionless, on-chain access to community members and the general public pre-launch. This means that on day 1 of the unlock, 100% of the community's $AZTEC tokens will be unlocked.

This model is values-aligned with our Core team and addresses the current challenges in token distribution, where retail participants often face unfair disadvantages against whales and institutions that hold large amounts of money. 

Early contributors and long-standing community members, including genesis sequencers, OG Aztec Connect users, network operators, and community members, can start bidding today, ahead of the public auction, giving those who are whitelisted a head start and early advantage for competitive pricing. Community members can participate by visiting the token sale site to verify eligibility and mint a soul-bound NFT that confirms participation rights. 

To read more about Aztec’s fair-access token sale, visit the economic and technical whitepapers and the token regulatory report.

Discount Price Disclaimer: Any reference to a prior valuation or percentage discount is provided solely to inform potential purchasers of how the initial floor price for the token sale was calculated. Equity financing valuations were determined under specific circumstances that are not comparable to this offering. They do not represent, and should not be relied upon as, the current or future market value of the tokens, nor as an indication of potential returns. The price of tokens may fluctuate substantially, the token may lose its value in part or in full, and purchasers should make independent assessments without reliance on past valuations. No representation or warranty is made that any purchaser will achieve profits or recover the purchase price.

Information for Persons in the UK: This communication is directed only at persons outside the UK. Persons in the UK are not permitted to participate in the token sale and must not act upon this communication.

MiCA Disclaimer: Any crypto-asset marketing communications made from this account have not been reviewed or approved by any competent authority in any Member State of the European Union. Aztec Foundation as the offeror of the crypto-asset is solely responsible for the content of such crypto-asset marketing communications. The Aztec MiCA white paper has been published and is available here. The Aztec Foundation can be contacted at hello@aztec.foundation or +41 41 710 16 70. For more information about the Aztec Foundation, visit https://aztec.foundation.

Aztec Network
Aztec Network
28 Oct
xx min read

Your Favorite DeFi Apps, Now With Privacy

Every time you swap tokens on Uniswap, deposit into a yield vault, or vote in a DAO, you're broadcasting your moves to the world. Anyone can see what you own, where you trade, how much you invest, and when you move your money.

Tracking and analysis tools like Chainalysis and TRM are already extremely advanced, and will only grow stronger with advances in AI in the coming years. The implications of this are that the ‘pseudo-anonymous’ wallets on Ethereum are quickly becoming linked to real-world identities. This is concerning for protecting your personal privacy, but it’s also a major blocker in bringing institutions on-chain with full compliance for their users. 

Until now, your only option was to abandon your favorite apps and move to specialized privacy-focused apps or chains with varying degrees of privacy. You'd lose access to the DeFi ecosystem as you know it now, the liquidity you depend on, and the community you're part of. 

What if you could keep using Uniswap, Aave, Yearn, and every other app you love, but with your identity staying private? No switching chains. Just an incognito mode for your existing on-chain life? 

If you’ve been following Aztec for a while, you would be right to think about Aztec Connect here, which was hugely popular with $17M TVL and over 100,000 active wallets, but was sunset in 2024 to focus on bringing a general-purpose privacy network to life. 

Read on to learn how you’ll be able to import privacy to any L2, using one of the many privacy-focused bridges that are already built. 

The Aztec Network  

Aztec is a fully decentralized, privacy-preserving L2 on Ethereum. You can think of Aztec as a private world computer with full end-to-end programmable privacy. A private world computer extends Ethereum to add optional privacy at every level, from identity and transactions to the smart contracts themselves. 

On Aztec, every wallet is a smart contract that gives users complete control over which aspects they want to make public or keep private. 

Aztec is currently in Testnet, but will have multiple privacy-preserving bridges live for its mainnet launch, unlocking a myriad of privacy preserving features.

Bringing Privacy to You

Now, several bridges, including Wormhole, TRAIN, and Substance, are connecting Aztec to other chains, adding a privacy layer to the L2s you already use. Think of it as a secure tunnel between you and any DeFi app on Ethereum, Arbitrum, Base, Optimism, or other major chains.

Here's what changes: You can now use any DeFi protocol without revealing your identity. Furthermore, you can also unlock brand new features that take advantage of Aztec’s private smart contracts, like private DAO voting or private compliance checks. 

Here's what you can do:

  • Use DeFi without revealing your portfolio: trade on Uniswap or deposit into Yearn without broadcasting your strategy to the world
  • Donate to causes without being tracked: support projects on Base without linking donations to your identity
  • Vote in DAOs without others seeing your choices: participate in governance on Arbitrum while keeping your votes private
  • Prove you're legitimate without doxxing yourself: pass compliance checks or prove asset ownership without revealing which specific assets you hold
  • Access exclusive perks without revealing which NFTs you own: unlock token-gated content on Optimism without showing your entire collection

The apps stay where they are. Your liquidity stays where it is. Your community stays where it is. You just get a privacy upgrade.

How It Actually Works 

Let's follow Alice through a real example.

Alice wants to invest $1,000 USDC into a yield vault on Arbitrum without revealing her identity. 

Step 1: Alice Sends Funds Through Aztec

Alice moves her funds into Aztec's privacy layer. This could be done in one click directly in the app that she’s already using if the app has integrated one of the bridges. Think of this like dropping a sealed envelope into a secure mailbox. The funds enter a private space where transactions can't be tracked back to her wallet.

Step 2: The Funds Arrive at the DeFi Vault

Aztec routes Alice's funds to the Yearn vault on Arbitrum. The vault sees a deposit and issues yield-earning tokens. But there's no way to trace those tokens back to Alice's original wallet. Others can see someone made a deposit, but they have no idea who.

Step 3: Alice Gets Her Tokens Back Privately

The yield tokens arrive in Alice's private Aztec wallet. She can hold them, trade them privately, or eventually withdraw them, without anyone connecting the dots.

Step 4: Alice Earns Yield With Complete Privacy

Alice is earning yield on Arbitrum using the exact same vault as everyone else. But while other users broadcast their entire investment strategy, Alice's moves remain private. 

The difference looks like this:

Without privacy: "Wallet 0x742d...89ab deposited $5,000 into Yearn vault at 2:47 PM"

With Aztec privacy: "Someone deposited funds into Yearn vault" (but who? from where? how much? unknowable).

In the future, we expect apps to directly integrate Aztec, making this experience seamless for you as a user. 

The Developers Behind the Bridges 

While Aztec is still in Testnet, multiple teams are already building bridges right now in preparation for the mainnet launch.

Projects like Substance Labs, Train, and Wormhole are creating connections between Aztec and major chains like Optimism, Unichain, Solana, and Aptos. This means you'll soon have private access to DeFi across nearly every major ecosystem.

Aztec has also launched a dedicated cross-chain catalyst program to support developers with grants to build additional bridges and apps. 

Unifying Liquidity Across Ethereum L2s

L2s have sometimes received criticism for fragmenting liquidity across chains. Aztec is taking a different approach. Instead, Aztec is bringing privacy to the liquidity that already exists. Your funds stay on Arbitrum, Optimism, Base, wherever the deepest pools and best apps already live. Aztec doesn't compete for liquidity, it adds privacy to existing liquidity.

You can access Uniswap's billions in trading volume. You can tap into Aave's massive lending pools. You can deposit into Yearn's established vaults, all without moving liquidity away from where it's most useful.

The Future of Private DeFi

We’re rolling out a new approach to how we think about L2s on Ethereum. Rather than forcing users to choose between privacy and access to the best DeFi applications, we’re making privacy a feature you can add to any protocol you're already using. As more bridges go live and applications integrate Aztec directly, using DeFi privately will become as simple as clicking a button—no technical knowledge required, no compromise on the apps and liquidity you depend on.

While Aztec is currently in testnet, the infrastructure is rapidly taking shape. With multiple bridge providers building connections to major chains and a dedicated catalyst program supporting developers, the path to mainnet is clear. Soon, you'll be able to protect your privacy while still participating fully in the Ethereum ecosystem. 

If you’re a developer and want a full technical breakdown, check out this post. To stay up to date with the latest updates for network operators, join the Aztec Discord and follow Aztec on X.