@@ -71,11 +71,11 @@ bun ccc # Compiles contract, post-processes, and generates TypeScript bindings
7171### Running Local Development Environment
7272
7373``` bash
74- # Start Aztec sandbox (node + PXE)
75- aztec start --sandbox
74+ # Start Aztec local network (node + PXE)
75+ aztec start --local-network
7676
7777# Start without PXE (when using aztec-wallet)
78- NO_PXE=true aztec start --sandbox
78+ NO_PXE=true aztec start --local-network
7979
8080# Import test accounts to aztec-wallet
8181aztec-wallet import-test-accounts
@@ -148,8 +148,8 @@ bun ccc # Runs: aztec-nargo compile && aztec-postprocess-contract && aztec code
148148# 4. Generate proof data (UltraHonk proof, verification key, public inputs)
149149bun data # Creates data.json with proof for x=1, y=2
150150
151- # 5. Start Aztec sandbox (in separate terminal)
152- aztec start --sandbox
151+ # 5. Start Aztec local network (in separate terminal)
152+ aztec start --local-network
153153
154154# 6. Deploy contract and verify proof on-chain
155155bun recursion # Deploys ValueNotEqual contract and verifies proof
@@ -261,7 +261,7 @@ TypeScript projects use:
261261
262262- ** Node.js/npm** : For starter-token TypeScript examples (v20+)
263263- ** Bun** : Required for recursive_verification example (faster alternative to Node.js)
264- - ** Docker** : Required for running Aztec sandbox
264+ - ** Docker** : Required for running Aztec local network
265265- ** Memory** : 8GB+ RAM recommended for proof generation
266266
267267## CI/CD
@@ -280,7 +280,7 @@ Steps:
280280
2812811 . Sets up Node.js (v22) and Bun
2822822 . Installs Aztec CLI
283- 3 . Starts Aztec sandbox
283+ 3 . Starts Aztec local network
2842844 . Compiles circuits and contracts
2852855 . Generates proof data
2862866 . Runs integration tests
@@ -294,7 +294,7 @@ Steps:
294294
295295### Issue: "Failed to connect to PXE"
296296
297- ** Solution** : Ensure Aztec sandbox is running with ` aztec start --sandbox `
297+ ** Solution** : Ensure Aztec local network is running with ` aztec start --local-network `
298298
299299### Issue: "Proof verification failed"
300300
@@ -314,4 +314,4 @@ Steps:
3143142 . ** Testing** : Run tests locally before pushing changes
3153153 . ** Documentation** : Update READMEs when modifying examples
3163164 . ** Clean Builds** : When encountering issues, try removing ` target/ ` , ` artifacts/ ` , and ` node_modules/ ` directories
317- 5 . ** Sandbox Management** : Always ensure sandbox is running when deploying/testing contracts
317+ 5 . ** Local Network Management** : Always ensure local network is running when deploying/testing contracts
0 commit comments