Skip to content

Commit f7413f4

Browse files
authored
Merge pull request #240 from AztecProtocol/update/v4.0.0-devnet.1-patch.0
Update Aztec to v4.0.0-devnet.1-patch.0
2 parents 864f0fd + 972c504 commit f7413f4

13 files changed

Lines changed: 278 additions & 278 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-c"]
33

44
ENV NVM_DIR=/root/.nvm
55
ENV NODE_VERSION=22.15.0
6-
ARG AZTEC_VERSION=4.0.0-nightly.20260204
6+
ARG AZTEC_VERSION=4.0.0-devnet.1-patch.0
77
ENV AZTEC_VERSION=$AZTEC_VERSION
88
ENV NON_INTERACTIVE=1
99
ENV BIN_PATH=/usr/local/bin

.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: 4.0.0-nightly.20260204
20+
AZTEC_VERSION: 4.0.0-nightly.20260211
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 = "v4.0.0-nightly.20260204", directory = "aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v4.0.0-devnet.1-patch.0", 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.6-patch.1
50+
export VERSION=4.0.0-devnet.1-patch.0
5151
aztec-up && docker pull aztecprotocol/aztec:$VERSION && docker tag aztecprotocol/aztec:$VERSION aztecprotocol/aztec:latest
5252
```
5353

config/devnet.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"name": "devnet",
33
"environment": "devnet",
44
"network": {
5-
"nodeUrl": "https://next.devnet.aztec-labs.com",
5+
"nodeUrl": "https://v4-devnet-1.aztec-labs.com",
66
"l1RpcUrl": "https://ethereum-sepolia-rpc.publicnode.com",
77
"l1ChainId": 11155111
88
},
99
"settings": {
1010
"skipLocalNetwork": true,
11-
"version": "3.0.0-devnet.6-patch.1"
11+
"version": "4.0.0-devnet.1-patch.0"
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.6-patch.1"
11+
"version": "4.0.0-devnet.1-patch.0"
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": "4.0.0-nightly.20260204",
37-
"@aztec/aztec.js": "4.0.0-nightly.20260204",
38-
"@aztec/noir-contracts.js": "4.0.0-nightly.20260204",
39-
"@aztec/protocol-contracts": "4.0.0-nightly.20260204",
40-
"@aztec/pxe": "4.0.0-nightly.20260204",
41-
"@aztec/stdlib": "4.0.0-nightly.20260204",
42-
"@aztec/test-wallet": "4.0.0-nightly.20260204",
36+
"@aztec/accounts": "4.0.0-devnet.1-patch.0",
37+
"@aztec/aztec.js": "4.0.0-devnet.1-patch.0",
38+
"@aztec/noir-contracts.js": "4.0.0-devnet.1-patch.0",
39+
"@aztec/protocol-contracts": "4.0.0-devnet.1-patch.0",
40+
"@aztec/pxe": "4.0.0-devnet.1-patch.0",
41+
"@aztec/stdlib": "4.0.0-devnet.1-patch.0",
42+
"@aztec/test-wallet": "4.0.0-devnet.1-patch.0",
4343
"dotenv": "^17.2.2"
4444
},
4545
"devDependencies": {

src/main.nr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ mod test;
1818
mod game_round_note;
1919
mod race;
2020

21-
use dep::aztec::macros::aztec;
21+
use ::aztec::macros::aztec;
2222

2323
#[aztec]
2424
pub contract PodRacing {
25-
use dep::aztec::{
25+
use ::aztec::{
2626
macros::{functions::{external, initializer, only_self}, storage::storage},
2727
messages::message_delivery::MessageDelivery,
2828
note::note_getter_options::NoteGetterOptions,
2929
oracle::debug_log::debug_log_format,
3030
};
31-
use dep::aztec::protocol::{address::AztecAddress, traits::ToField};
32-
use dep::aztec::state_vars::{Map, Owned, PrivateSet, PublicMutable};
31+
use ::aztec::protocol::{address::AztecAddress, traits::ToField};
32+
use ::aztec::state_vars::{Map, Owned, PrivateSet, PublicMutable};
3333

3434
use crate::{game_round_note::GameRoundNote, race::Race};
3535

src/race.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use dep::aztec::protocol::{
1+
use ::aztec::protocol::{
22
address::AztecAddress,
33
traits::{Deserialize, Serialize, Packable},
44
};

src/test/helpers.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use dep::aztec::{
1+
use ::aztec::{
22
protocol::address::AztecAddress, test::helpers::test_environment::TestEnvironment,
33
};
44
use crate::PodRacing;

0 commit comments

Comments
 (0)