Skip to content

Commit a4678e3

Browse files
committed
update to devnet.6-patch.1
1 parent fce067e commit a4678e3

9 files changed

Lines changed: 270 additions & 263 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,7 @@ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | b
2727

2828
# Add node and npm to path
2929
ENV PATH="${NVM_DIR}/versions/node/v${NODE_VERSION}/bin:${PATH}"
30-
RUN npm i -g yarn
30+
RUN npm i -g yarn
31+
32+
# Install Claude Code CLI
33+
RUN npm i -g @anthropic-ai/claude-code

.devcontainer/devcontainer.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@
66
"features": { "ghcr.io/devcontainers/features/docker-in-docker:2": {} },
77
"postCreateCommand": "yarn && curl -s https://install.aztec.network | NON_INTERACTIVE=1 BIN_PATH=/usr/local/bin bash -s",
88
"customizations": {
9-
// Configure properties specific to VS Code.
109
"vscode": {
11-
// Set *default* container specific settings.json values on container create.
1210
"settings": {},
1311
"extensions": ["noir-lang.vscode-noir"]
1412
}
1513
},
14+
"containerEnv": {
15+
"ANTHROPIC_API_KEY": "${localEnv:ANTHROPIC_API_KEY}"
16+
},
17+
"mounts": [
18+
"source=${localEnv:HOME}/.claude,target=/root/.claude,type=bind,consistency=cached"
19+
],
1620
"workspaceMount": "source=${localWorkspaceFolder},target=/root/workspace,type=bind",
1721
"workspaceFolder": "/root/workspace"
1822
}

.github/workflows/local-network.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
env:
1919
AZTEC_ENV: local-network
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

Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ authors = [ "" ]
55
compiler_version = ">=0.18.0"
66

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ bash -i <(curl -s https://install.aztec.network)
4747
Install the correct version of the toolkit with:
4848

4949
```bash
50-
export VERSION=3.0.0-devnet.20251212
50+
export VERSION=3.0.0-devnet.6-patch.1
5151
aztec-up && docker pull aztecprotocol/aztec:$VERSION && docker tag aztecprotocol/aztec:$VERSION aztecprotocol/aztec:latest
5252
```
5353

config/devnet.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"settings": {
1010
"skipLocalNetwork": true,
11-
"version": "3.0.0-devnet.20251212"
11+
"version": "3.0.0-devnet.6-patch.1"
1212
},
1313
"timeouts": {
1414
"deployTimeout": 1200000,

config/local-network.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"settings": {
1010
"skipLocalNetwork": false,
11-
"version": "3.0.0-devnet.20251212"
11+
"version": "3.0.0-devnet.6-patch.1"
1212
},
1313
"timeouts": {
1414
"deployTimeout": 120000,

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
"update-readme-version": "node ./.github/scripts/update-readme-version.js"
3434
},
3535
"dependencies": {
36-
"@aztec/accounts": "3.0.0-devnet.20251212",
37-
"@aztec/aztec.js": "3.0.0-devnet.20251212",
38-
"@aztec/noir-contracts.js": "3.0.0-devnet.20251212",
39-
"@aztec/protocol-contracts": "3.0.0-devnet.20251212",
40-
"@aztec/pxe": "3.0.0-devnet.20251212",
41-
"@aztec/stdlib": "3.0.0-devnet.20251212",
42-
"@aztec/test-wallet": "3.0.0-devnet.20251212",
36+
"@aztec/accounts": "3.0.0-devnet.6-patch.1",
37+
"@aztec/aztec.js": "3.0.0-devnet.6-patch.1",
38+
"@aztec/noir-contracts.js": "3.0.0-devnet.6-patch.1",
39+
"@aztec/protocol-contracts": "3.0.0-devnet.6-patch.1",
40+
"@aztec/pxe": "3.0.0-devnet.6-patch.1",
41+
"@aztec/stdlib": "3.0.0-devnet.6-patch.1",
42+
"@aztec/test-wallet": "3.0.0-devnet.6-patch.1",
4343
"dotenv": "^17.2.2"
4444
},
4545
"devDependencies": {

yarn.lock

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

0 commit comments

Comments
 (0)