Skip to content

Commit 80a66f8

Browse files
critesjoshclaude
andcommitted
Update all examples to Aztec v3.0.0-devnet.6-patch.1
- Update all Nargo.toml files to use v3.0.0-devnet.6-patch.1 - Switch to cleaner aztec-nr repo format for dependencies - Update all package.json files with matching npm versions - Update READMEs with correct version references - Update GitHub workflow files with new AZTEC_VERSION - Fix test-wallet-webapp cast_vote API call for new PrivateVoting interface - Update root CLAUDE.md to reflect unified versioning All examples now use the same Aztec version for consistency. Tested: - recursive_verification: 5/5 tests passed - note-send-proof: 3/3 tests passed - prediction-market: 9/9 e2e + 10/10 Noir tests passed - account-contract: compiles successfully - custom-note: compiles successfully - test-wallet-webapp: builds successfully Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 2437d51 commit 80a66f8

File tree

25 files changed

+1081
-1045
lines changed

25 files changed

+1081
-1045
lines changed

.github/workflows/note-send-proof-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
env:
2020
AZTEC_ENV: local-network
21-
AZTEC_VERSION: 3.0.0-devnet.20251212
21+
AZTEC_VERSION: 3.0.0-devnet.6-patch.1
2222

2323
steps:
2424
- name: Checkout repository

.github/workflows/prediction-market-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
env:
2020
AZTEC_ENV: local-network
21-
AZTEC_VERSION: 3.0.0-devnet.20251212
21+
AZTEC_VERSION: 3.0.0-devnet.6-patch.1
2222

2323
steps:
2424
- name: Checkout repository

.github/workflows/test-wallet-webapp-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Test Wallet Webapp Tests
1818
runs-on: ubuntu-latest
1919
env:
20-
AZTEC_VERSION: 3.0.0-devnet.20251212
20+
AZTEC_VERSION: 3.0.0-devnet.6-patch.1
2121

2222
steps:
2323
- name: Checkout repository

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,9 @@ aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "vX.X.
259259
easy_private_state = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "vX.X.X", directory = "noir-projects/aztec-nr/easy-private-state" }
260260
```
261261

262-
**Version Compatibility**: Different examples may use different Aztec versions:
262+
**Version Compatibility**: All examples use the same Aztec version:
263263

264-
- `recursive_verification`: v3.0.0-devnet.6-patch.1
264+
- All examples: v3.0.0-devnet.6-patch.1
265265

266266
### JavaScript/TypeScript Dependencies
267267

account-contract/Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ compiler_version = ">=1.0.0"
55
type = "contract"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v3.0.0-devnet.20251212", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v3.0.0-devnet.6-patch.1", directory = "aztec" }

account-contract/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -172,25 +172,25 @@ When implementing custom account contracts in Aztec, be aware of these critical
172172

173173
## Aztec Version Compatibility
174174

175-
This example is compatible with **Aztec v3.0.0-devnet.20251212**.
175+
This example is compatible with **Aztec v3.0.0-devnet.6-patch.1**.
176176

177177
To set this version:
178178

179179
```bash
180-
aztec-up 3.0.0-devnet.20251212
180+
aztec-up 3.0.0-devnet.6-patch.1
181181
```
182182

183183
## Dependencies
184184

185185
### Noir Dependencies
186186

187-
- **aztec**: v3.0.0-devnet.20251212
187+
- **aztec**: v3.0.0-devnet.6-patch.1
188188

189189
### TypeScript Dependencies
190190

191-
- **@aztec/aztec.js**: 3.0.0-devnet.20251212
192-
- **@aztec/accounts**: 3.0.0-devnet.20251212
193-
- **@aztec/stdlib**: 3.0.0-devnet.20251212
191+
- **@aztec/aztec.js**: 3.0.0-devnet.6-patch.1
192+
- **@aztec/accounts**: 3.0.0-devnet.6-patch.1
193+
- **@aztec/stdlib**: 3.0.0-devnet.6-patch.1
194194
- **@aztec/entrypoints**: Included in aztec.js
195195

196196
## Project Structure

account-contract/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"typescript": "^5.0.0"
1313
},
1414
"dependencies": {
15-
"@aztec/accounts": "3.0.0-devnet.20251212",
16-
"@aztec/aztec.js": "3.0.0-devnet.20251212",
17-
"@aztec/foundation": "3.0.0-devnet.20251212",
18-
"@aztec/noir-contracts.js": "3.0.0-devnet.20251212",
19-
"@aztec/stdlib": "3.0.0-devnet.20251212",
20-
"@aztec/test-wallet": "3.0.0-devnet.20251212",
15+
"@aztec/accounts": "3.0.0-devnet.6-patch.1",
16+
"@aztec/aztec.js": "3.0.0-devnet.6-patch.1",
17+
"@aztec/foundation": "3.0.0-devnet.6-patch.1",
18+
"@aztec/noir-contracts.js": "3.0.0-devnet.6-patch.1",
19+
"@aztec/stdlib": "3.0.0-devnet.6-patch.1",
20+
"@aztec/test-wallet": "3.0.0-devnet.6-patch.1",
2121
"tsx": "^4.20.6"
2222
}
2323
}

account-contract/yarn.lock

Lines changed: 248 additions & 248 deletions
Large diffs are not rendered by default.

custom-note/Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ compiler_version = ">=1.0.0"
55
type = "contract"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v3.0.0-devnet.20251212", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v3.0.0-devnet.6-patch.1", directory = "aztec" }

custom-note/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ CustomNote.view_custom_notes(owner_address)
6565

6666
## Dependencies
6767

68-
- Aztec v3.0.0-devnet.20251212
68+
- Aztec v3.0.0-devnet.6-patch.1
6969

7070
To set this version:
7171

7272
```bash
73-
aztec-up 3.0.0-devnet.20251212
73+
aztec-up 3.0.0-devnet.6-patch.1
7474
```
7575

7676
## Project Structure

0 commit comments

Comments
 (0)