You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Updated README title for consistency and improved clarity.
- Added links to additional examples in the Aztec monorepo.
- Removed outdated starter token examples and related files to streamline the repository.
- Enhanced contributing guidelines to encourage new example submissions and documentation improvements.
Copy file name to clipboardExpand all lines: README.md
+12-31Lines changed: 12 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,17 @@
1
-
# aztec-examples
1
+
# Aztec Examples
2
2
3
3
A collection of example Aztec smart contracts and circuits written in Noir, designed for hands-on learning of the Aztec privacy-first Layer 2 blockchain.
4
4
5
5
## Overview
6
6
7
7
This repository contains practical examples demonstrating various features of Aztec's zero-knowledge smart contract platform, from basic token implementations to advanced proof verification patterns.
8
8
9
+
You can find additional examples in the Aztec monorepo [docs examples folder](https://github.com/AztecProtocol/aztec-packages/tree/next/docs/examples), including:
@@ -20,39 +26,14 @@ Demonstrates how to verify Noir circuit proofs within Aztec smart contracts usin
20
26
- Integration between off-chain proving and on-chain verification
21
27
22
28
**Key features**:
29
+
23
30
- Circuit that proves two values are not equal (x ≠ y)
24
31
- Smart contract that verifies proofs and maintains private counters
25
32
- Comprehensive test suite and GitHub Actions CI/CD pipeline
26
33
- TypeScript utilities for proof generation and contract deployment
27
34
28
35
[View README](./recursive_verification/README.md)
29
36
30
-
### 2. [Starter Token](./starter-token)
31
-
32
-
**Aztec Version**: 2.0.2
33
-
34
-
A beginner-friendly token contract implementation with both template and reference versions. Perfect for learning Aztec contract development from scratch.
35
-
36
-
**Structure**:
37
-
-`start-here/`: Template implementation for hands-on learning
38
-
-`reference/`: Complete working implementation with all features
39
-
-`external-call-contract/`: Example of cross-contract interactions
0 commit comments