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: 4.0.0-devnet.2-patch.1
AZTEC_VERSION: 4.1.0-rc.2

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: 4.0.0-devnet.2-patch.1
AZTEC_VERSION: 4.1.0-rc.2

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/recursive-verification-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: 4.0.0-devnet.2-patch.1
AZTEC_VERSION: 4.1.0-rc.2

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: 4.0.0-devnet.2-patch.1
AZTEC_VERSION: 4.1.0-rc.2

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 @@ -52,7 +52,7 @@ aztec-examples/
bash -i <(curl -s https://install.aztec.network)

# Set specific version (examples may require different versions)
aztec-up 4.0.0-devnet.2-patch.1 # For recursive_verification
aztec-up 4.1.0-rc.2 # For recursive_verification
```

### Building Contracts
Expand Down Expand Up @@ -260,7 +260,7 @@ easy_private_state = { git = "https://github.com/AztecProtocol/aztec-packages/",

**Version Compatibility**: All examples use the same Aztec version:

- All examples: v4.0.0-devnet.2-patch.1
- All examples: v4.1.0-rc.2

### JavaScript/TypeScript Dependencies

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You can find additional examples in the Aztec monorepo [docs examples folder](ht

### 1. [Recursive Verification](./recursive_verification)

**Aztec Version**: 4.0.0-devnet.2-patch.1
**Aztec Version**: 4.1.0-rc.2

Demonstrates how to verify Noir circuit proofs within Aztec smart contracts using the UltraHonk proving system. This example showcases:

Expand All @@ -43,7 +43,7 @@ Demonstrates how to verify Noir circuit proofs within Aztec smart contracts usin
bash -i <(curl -s https://install.aztec.network)

# Set specific Aztec version (if needed)
aztec-up 4.0.0-devnet.2-patch.1
aztec-up 4.1.0-rc.2
```

## Development Workflow
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-nr/", tag = "v4.0.0-devnet.2-patch.1", directory = "aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v4.1.0-rc.2", 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 v4.0.0-devnet.2-patch.1**.
This example is compatible with **Aztec v4.1.0-rc.2**.

To set this version:

```bash
aztec-up 4.0.0-devnet.2-patch.1
aztec-up 4.1.0-rc.2
```

## Dependencies

### Noir Dependencies

- **aztec**: v4.0.0-devnet.2-patch.1
- **aztec**: v4.1.0-rc.2

### TypeScript Dependencies

- **@aztec/aztec.js**: 4.0.0-devnet.2-patch.1
- **@aztec/accounts**: 4.0.0-devnet.2-patch.1
- **@aztec/stdlib**: 4.0.0-devnet.2-patch.1
- **@aztec/aztec.js**: 4.1.0-rc.2
- **@aztec/accounts**: 4.1.0-rc.2
- **@aztec/stdlib**: 4.1.0-rc.2
- **@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": "4.0.0-devnet.2-patch.1",
"@aztec/aztec.js": "4.0.0-devnet.2-patch.1",
"@aztec/foundation": "4.0.0-devnet.2-patch.1",
"@aztec/noir-contracts.js": "4.0.0-devnet.2-patch.1",
"@aztec/stdlib": "4.0.0-devnet.2-patch.1",
"@aztec/wallets": "4.0.0-devnet.2-patch.1",
"@aztec/accounts": "4.1.0-rc.2",
"@aztec/aztec.js": "4.1.0-rc.2",
"@aztec/foundation": "4.1.0-rc.2",
"@aztec/noir-contracts.js": "4.1.0-rc.2",
"@aztec/stdlib": "4.1.0-rc.2",
"@aztec/wallets": "4.1.0-rc.2",
"tsx": "^4.20.6"
}
}
2 changes: 1 addition & 1 deletion account-contract/ts/deploy-account-contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const { estimatedGas, stats } = await accountContractDeployMethod.simulate(deplo
console.log(estimatedGas);
console.log(stats);

const deployedAccountContract = await accountContractDeployMethod.send(deployAccountOpts);
const { contract: deployedAccountContract } = await accountContractDeployMethod.send(deployAccountOpts);

console.log('PasswordAccount contract deployed at:', deployedAccountContract.address);

Expand Down
Loading
Loading