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
**4. `config/devnet.json`** — Update `settings.version` to the new npm version.
56
57
58
+
**4b. `config/testnet.json`** — Update `settings.version` to the new npm version.
59
+
60
+
> **Note:** Only update the config files relevant to the current branch. On `next`, update `local-network.json` and `devnet.json`. On `testnet`, update `local-network.json` and `testnet.json`. Leave other branch configs as-is.
61
+
57
62
**5. `README.md`** — Update the install command version in the Getting Started section:
58
63
```bash
59
64
export VERSION=<NEW_VERSION>
@@ -173,7 +178,15 @@ Based on the API research from Step 7 and any changes revealed by `yarn codegen`
173
178
174
179
### Step 11: Run Noir TXE tests
175
180
176
-
Run `yarn test:nr` to execute the Noir unit tests in the TXE simulator (no network needed).
181
+
Run the Noir unit tests in the TXE simulator (no network needed).
182
+
183
+
**Known issue:**`yarn test:nr` (which runs `aztec test`) may hang due to a wrapper script issue. If it hangs for more than 30 seconds with no output, use this workaround:
184
+
185
+
1. Kill any process on port 8081: `lsof -ti:8081 | xargs kill -9 2>/dev/null`
186
+
2. Start the TXE server manually: `aztec start --txe --port 8081 &`
187
+
3. Wait a few seconds for it to start
188
+
4. Run nargo test directly: `nargo test --silence-warnings --oracle-resolver http://localhost:8081`
189
+
5. Kill the TXE server when done
177
190
178
191
If tests fail, diagnose and fix the contract test code. Iterate until tests pass.
Copy file name to clipboardExpand all lines: CLAUDE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
6
6
7
7
Aztec Starter — a Pod Racing game contract built with Noir on the Aztec network. Two players allocate points across 5 tracks over 3 rounds with private state; scores are revealed at the end (commit-reveal pattern). The player who wins more tracks (best of 5) wins.
8
8
9
-
**Aztec version: `4.1.0-rc.2`** — pinned across `Nargo.toml`, `package.json`, `config/*.json`, and README. All must stay in sync when updating.
9
+
**Aztec version: `4.1.0`** — pinned across `Nargo.toml`, `package.json`, `config/*.json`, and README. All must stay in sync when updating.
0 commit comments