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 .github/workflows/note-send-proof-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
env:
AZTEC_ENV: local-network
AZTEC_VERSION: 3.0.0-devnet.20251212
AZTEC_VERSION: 3.0.0-devnet.6-patch.1

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prediction-market-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
env:
AZTEC_ENV: local-network
AZTEC_VERSION: 3.0.0-devnet.20251212
AZTEC_VERSION: 3.0.0-devnet.6-patch.1

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-wallet-webapp-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Test Wallet Webapp Tests
runs-on: ubuntu-latest
env:
AZTEC_VERSION: 3.0.0-devnet.20251212
AZTEC_VERSION: 3.0.0-devnet.6-patch.1

steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@ aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "vX.X.
easy_private_state = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "vX.X.X", directory = "noir-projects/aztec-nr/easy-private-state" }
```

**Version Compatibility**: Different examples may use different Aztec versions:
**Version Compatibility**: All examples use the same Aztec version:

- `recursive_verification`: v3.0.0-devnet.6-patch.1
- All examples: v3.0.0-devnet.6-patch.1

### JavaScript/TypeScript Dependencies

Expand Down
2 changes: 1 addition & 1 deletion account-contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v3.0.0-devnet.20251212", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v3.0.0-devnet.6-patch.1", directory = "aztec" }
12 changes: 6 additions & 6 deletions account-contract/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,25 +172,25 @@ When implementing custom account contracts in Aztec, be aware of these critical

## Aztec Version Compatibility

This example is compatible with **Aztec v3.0.0-devnet.20251212**.
This example is compatible with **Aztec v3.0.0-devnet.6-patch.1**.

To set this version:

```bash
aztec-up 3.0.0-devnet.20251212
aztec-up 3.0.0-devnet.6-patch.1
```

## Dependencies

### Noir Dependencies

- **aztec**: v3.0.0-devnet.20251212
- **aztec**: v3.0.0-devnet.6-patch.1

### TypeScript Dependencies

- **@aztec/aztec.js**: 3.0.0-devnet.20251212
- **@aztec/accounts**: 3.0.0-devnet.20251212
- **@aztec/stdlib**: 3.0.0-devnet.20251212
- **@aztec/aztec.js**: 3.0.0-devnet.6-patch.1
- **@aztec/accounts**: 3.0.0-devnet.6-patch.1
- **@aztec/stdlib**: 3.0.0-devnet.6-patch.1
- **@aztec/entrypoints**: Included in aztec.js

## Project Structure
Expand Down
12 changes: 6 additions & 6 deletions account-contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@aztec/accounts": "3.0.0-devnet.20251212",
"@aztec/aztec.js": "3.0.0-devnet.20251212",
"@aztec/foundation": "3.0.0-devnet.20251212",
"@aztec/noir-contracts.js": "3.0.0-devnet.20251212",
"@aztec/stdlib": "3.0.0-devnet.20251212",
"@aztec/test-wallet": "3.0.0-devnet.20251212",
"@aztec/accounts": "3.0.0-devnet.6-patch.1",
"@aztec/aztec.js": "3.0.0-devnet.6-patch.1",
"@aztec/foundation": "3.0.0-devnet.6-patch.1",
"@aztec/noir-contracts.js": "3.0.0-devnet.6-patch.1",
"@aztec/stdlib": "3.0.0-devnet.6-patch.1",
"@aztec/test-wallet": "3.0.0-devnet.6-patch.1",
"tsx": "^4.20.6"
}
}
496 changes: 248 additions & 248 deletions account-contract/yarn.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion custom-note/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v3.0.0-devnet.20251212", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v3.0.0-devnet.6-patch.1", directory = "aztec" }
4 changes: 2 additions & 2 deletions custom-note/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ CustomNote.view_custom_notes(owner_address)

## Dependencies

- Aztec v3.0.0-devnet.20251212
- Aztec v3.0.0-devnet.6-patch.1

To set this version:

```bash
aztec-up 3.0.0-devnet.20251212
aztec-up 3.0.0-devnet.6-patch.1
```

## Project Structure
Expand Down
2 changes: 1 addition & 1 deletion note-send-proof/circuits/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ type = "bin"
authors = [""]

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v2.0.3", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v3.0.0-devnet.6-patch.1", directory = "aztec" }
poseidon = { tag = "v0.1.1", git = "https://github.com/noir-lang/poseidon" }
uint_note = { path = "../uint-note" }
12 changes: 6 additions & 6 deletions note-send-proof/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@aztec/accounts": "3.0.0-devnet.20251212",
"@aztec/aztec.js": "3.0.0-devnet.20251212",
"@aztec/foundation": "3.0.0-devnet.20251212",
"@aztec/pxe": "3.0.0-devnet.20251212",
"@aztec/stdlib": "3.0.0-devnet.20251212",
"@aztec/test-wallet": "3.0.0-devnet.20251212",
"@aztec/accounts": "3.0.0-devnet.6-patch.1",
"@aztec/aztec.js": "3.0.0-devnet.6-patch.1",
"@aztec/foundation": "3.0.0-devnet.6-patch.1",
"@aztec/pxe": "3.0.0-devnet.6-patch.1",
"@aztec/stdlib": "3.0.0-devnet.6-patch.1",
"@aztec/test-wallet": "3.0.0-devnet.6-patch.1",
"tsx": "^4.20.6"
}
}
8 changes: 4 additions & 4 deletions note-send-proof/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This project implements:
- **Note Hash Computation**: Scripts demonstrating the v3 note hash formula
- **Hash Verification**: Tests that verify computed unique note hashes match on-chain hashes

**Aztec Version**: `3.0.0-devnet.20251212`
**Aztec Version**: `3.0.0-devnet.6-patch.1`

## Note Hash Computation Formula (v3)

Expand All @@ -35,7 +35,7 @@ The unique note hash is what gets stored on-chain in the note hash tree.
To set the correct Aztec version:

```bash
aztec-up 3.0.0-devnet.20251212
aztec-up 3.0.0-devnet.6-patch.1
```

## Project Structure
Expand Down Expand Up @@ -77,7 +77,7 @@ bash -i <(curl -s https://install.aztec.network)
### Set Aztec to the correct version:

```bash
aztec-up 3.0.0-devnet.20251212
aztec-up 3.0.0-devnet.6-patch.1
```

## Build & Compile
Expand Down Expand Up @@ -126,7 +126,7 @@ For a fresh setup, run these commands in order:
yarn install

# 2. Setup Aztec
aztec-up 3.0.0-devnet.20251212
aztec-up 3.0.0-devnet.6-patch.1

# 3. Compile contract and generate TypeScript bindings
yarn ccc
Expand Down
2 changes: 1 addition & 1 deletion note-send-proof/sample-contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v3.0.0-devnet.20251212", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v3.0.0-devnet.6-patch.1", directory = "aztec" }
# Local uint_note with create_note_with_randomness for hash verification demo
uint_note = { path = "../uint-note" }
2 changes: 1 addition & 1 deletion note-send-proof/uint-note/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler_version = ">=1.0.0"
type = "lib"

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