Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-c"]

ENV NVM_DIR=/root/.nvm
ENV NODE_VERSION=22.15.0
ARG AZTEC_VERSION=4.0.0-nightly.20260204
ARG AZTEC_VERSION=4.0.0-devnet.1-patch.0
ENV AZTEC_VERSION=$AZTEC_VERSION
ENV NON_INTERACTIVE=1
ENV BIN_PATH=/usr/local/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/local-network.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
env:
AZTEC_ENV: local-network
AZTEC_VERSION: 4.0.0-nightly.20260204
AZTEC_VERSION: 4.0.0-nightly.20260211

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ authors = [ "" ]
compiler_version = ">=0.18.0"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v4.0.0-nightly.20260204", directory = "aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v4.0.0-devnet.1-patch.0", directory = "aztec" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ bash -i <(curl -s https://install.aztec.network)
Install the correct version of the toolkit with:

```bash
export VERSION=3.0.0-devnet.6-patch.1
export VERSION=4.0.0-devnet.1-patch.0
aztec-up && docker pull aztecprotocol/aztec:$VERSION && docker tag aztecprotocol/aztec:$VERSION aztecprotocol/aztec:latest
```

Expand Down
4 changes: 2 additions & 2 deletions config/devnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"name": "devnet",
"environment": "devnet",
"network": {
"nodeUrl": "https://next.devnet.aztec-labs.com",
"nodeUrl": "https://v4-devnet-1.aztec-labs.com",
"l1RpcUrl": "https://ethereum-sepolia-rpc.publicnode.com",
"l1ChainId": 11155111
},
"settings": {
"skipLocalNetwork": true,
"version": "3.0.0-devnet.6-patch.1"
"version": "4.0.0-devnet.1-patch.0"
},
"timeouts": {
"deployTimeout": 1200000,
Expand Down
2 changes: 1 addition & 1 deletion config/local-network.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"settings": {
"skipLocalNetwork": false,
"version": "3.0.0-devnet.6-patch.1"
"version": "4.0.0-devnet.1-patch.0"
},
"timeouts": {
"deployTimeout": 120000,
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
"update-readme-version": "node ./.github/scripts/update-readme-version.js"
},
"dependencies": {
"@aztec/accounts": "4.0.0-nightly.20260204",
"@aztec/aztec.js": "4.0.0-nightly.20260204",
"@aztec/noir-contracts.js": "4.0.0-nightly.20260204",
"@aztec/protocol-contracts": "4.0.0-nightly.20260204",
"@aztec/pxe": "4.0.0-nightly.20260204",
"@aztec/stdlib": "4.0.0-nightly.20260204",
"@aztec/test-wallet": "4.0.0-nightly.20260204",
"@aztec/accounts": "4.0.0-devnet.1-patch.0",
"@aztec/aztec.js": "4.0.0-devnet.1-patch.0",
"@aztec/noir-contracts.js": "4.0.0-devnet.1-patch.0",
"@aztec/protocol-contracts": "4.0.0-devnet.1-patch.0",
"@aztec/pxe": "4.0.0-devnet.1-patch.0",
"@aztec/stdlib": "4.0.0-devnet.1-patch.0",
"@aztec/test-wallet": "4.0.0-devnet.1-patch.0",
"dotenv": "^17.2.2"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions src/main.nr
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ mod test;
mod game_round_note;
mod race;

use dep::aztec::macros::aztec;
use ::aztec::macros::aztec;

#[aztec]
pub contract PodRacing {
use dep::aztec::{
use ::aztec::{
macros::{functions::{external, initializer, only_self}, storage::storage},
messages::message_delivery::MessageDelivery,
note::note_getter_options::NoteGetterOptions,
oracle::debug_log::debug_log_format,
};
use dep::aztec::protocol::{address::AztecAddress, traits::ToField};
use dep::aztec::state_vars::{Map, Owned, PrivateSet, PublicMutable};
use ::aztec::protocol::{address::AztecAddress, traits::ToField};
use ::aztec::state_vars::{Map, Owned, PrivateSet, PublicMutable};

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

Expand Down
2 changes: 1 addition & 1 deletion src/race.nr
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use dep::aztec::protocol::{
use ::aztec::protocol::{
address::AztecAddress,
traits::{Deserialize, Serialize, Packable},
};
Expand Down
2 changes: 1 addition & 1 deletion src/test/helpers.nr
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use dep::aztec::{
use ::aztec::{
protocol::address::AztecAddress, test::helpers::test_environment::TestEnvironment,
};
use crate::PodRacing;
Expand Down
2 changes: 1 addition & 1 deletion src/test/pod_racing.nr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::test::{utils, helpers};
use dep::aztec::protocol::storage::map::derive_storage_slot_in_map;
use ::aztec::protocol::storage::map::derive_storage_slot_in_map;
use crate::PodRacing;

// ============================================================================
Expand Down
2 changes: 1 addition & 1 deletion src/test/utils.nr
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use dep::aztec::{
use ::aztec::{
protocol::address::AztecAddress, test::helpers::test_environment::TestEnvironment,
};

Expand Down
Loading