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/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: 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 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 = "v3.0.0-devnet.20251212", directory = "aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-nr/", tag = "v3.0.0-devnet.6-patch.1", 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.20251212
export VERSION=3.0.0-devnet.6-patch.1
aztec-up && docker pull aztecprotocol/aztec:$VERSION && docker tag aztecprotocol/aztec:$VERSION aztecprotocol/aztec:latest
```

Expand Down
2 changes: 1 addition & 1 deletion config/devnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"settings": {
"skipLocalNetwork": true,
"version": "3.0.0-devnet.20251212"
"version": "3.0.0-devnet.6-patch.1"
},
"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.20251212"
"version": "3.0.0-devnet.6-patch.1"
},
"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": "3.0.0-devnet.20251212",
"@aztec/aztec.js": "3.0.0-devnet.20251212",
"@aztec/noir-contracts.js": "3.0.0-devnet.20251212",
"@aztec/protocol-contracts": "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/noir-contracts.js": "3.0.0-devnet.6-patch.1",
"@aztec/protocol-contracts": "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",
"dotenv": "^17.2.2"
},
"devDependencies": {
Expand Down
7 changes: 6 additions & 1 deletion scripts/deploy_account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ export async function deployAccount() {
await deploySchnorrAccount();
}

deployAccount();
deployAccount()
.then(() => process.exit(0))
.catch((error) => {
console.error("Error:", error);
process.exit(1);
});
6 changes: 4 additions & 2 deletions scripts/deploy_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,11 @@ async function main() {
logger.info(` - Sponsored FPC: ${sponsoredFPC.address}`);
}

main().catch((error) => {
main()
.then(() => process.exit(0))
.catch((error) => {
const logger = createLogger('aztec:aztec-starter');
logger.error(`❌ Deployment failed: ${error.message}`);
logger.error(`📋 Error details: ${error.stack}`);
process.exit(1);
});
});
7 changes: 6 additions & 1 deletion scripts/fees.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,12 @@ async function main() {
logger.info(`Transfer paid with fees from Sponsored FPC.`)
}

main();
main()
.then(() => process.exit(0))
.catch((error) => {
console.error("Error:", error);
process.exit(1);
});

// from here: https://github.com/AztecProtocol/aztec-packages/blob/ecbd59e58006533c8885a8b2fadbd9507489300c/yarn-project/end-to-end/src/fixtures/utils.ts#L534
function getL1WalletClient(rpcUrl: string, index: number) {
Expand Down
7 changes: 6 additions & 1 deletion scripts/get_block.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,9 @@ async function main() {
console.log(await block?.hash())
}

main();
main()
.then(() => process.exit(0))
.catch((error) => {
console.error("Error:", error);
process.exit(1);
});
6 changes: 4 additions & 2 deletions scripts/interaction_existing_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ async function main() {
logger.info("To join this game, another player would call join_game with the same game ID.");
}

main().catch((error) => {
main()
.then(() => process.exit(0))
.catch((error) => {
console.error("Error:", error);
process.exit(1);
});
});
7 changes: 6 additions & 1 deletion scripts/multiple_wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,9 @@ async function main() {

}

main();
main()
.then(() => process.exit(0))
.catch((error) => {
console.error("Error:", error);
process.exit(1);
});
7 changes: 6 additions & 1 deletion scripts/profile_deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,9 @@ async function main() {
console.dir(profileTx, { depth: 2 });
}

main();
main()
.then(() => process.exit(0))
.catch((error) => {
console.error("Error:", error);
process.exit(1);
});
Loading