Skip to content

Commit 8f200ef

Browse files
authored
Merge pull request #236 from AztecProtocol/jc/update-devnet.6-patch.1
update to devnet.6-patch.1
2 parents ae1e465 + 5eb50e7 commit 8f200ef

File tree

14 files changed

+298
-269
lines changed

14 files changed

+298
-269
lines changed

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

config/devnet.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"settings": {
1010
"skipLocalNetwork": true,
11-
"version": "3.0.0-devnet.20251212"
11+
"version": "3.0.0-devnet.6-patch.1"
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.20251212"
11+
"version": "3.0.0-devnet.6-patch.1"
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": "3.0.0-devnet.20251212",
37-
"@aztec/aztec.js": "3.0.0-devnet.20251212",
38-
"@aztec/noir-contracts.js": "3.0.0-devnet.20251212",
39-
"@aztec/protocol-contracts": "3.0.0-devnet.20251212",
40-
"@aztec/pxe": "3.0.0-devnet.20251212",
41-
"@aztec/stdlib": "3.0.0-devnet.20251212",
42-
"@aztec/test-wallet": "3.0.0-devnet.20251212",
36+
"@aztec/accounts": "3.0.0-devnet.6-patch.1",
37+
"@aztec/aztec.js": "3.0.0-devnet.6-patch.1",
38+
"@aztec/noir-contracts.js": "3.0.0-devnet.6-patch.1",
39+
"@aztec/protocol-contracts": "3.0.0-devnet.6-patch.1",
40+
"@aztec/pxe": "3.0.0-devnet.6-patch.1",
41+
"@aztec/stdlib": "3.0.0-devnet.6-patch.1",
42+
"@aztec/test-wallet": "3.0.0-devnet.6-patch.1",
4343
"dotenv": "^17.2.2"
4444
},
4545
"devDependencies": {

scripts/deploy_account.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,9 @@ export async function deployAccount() {
77
await deploySchnorrAccount();
88
}
99

10-
deployAccount();
10+
deployAccount()
11+
.then(() => process.exit(0))
12+
.catch((error) => {
13+
console.error("Error:", error);
14+
process.exit(1);
15+
});

scripts/deploy_contract.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,11 @@ async function main() {
7777
logger.info(` - Sponsored FPC: ${sponsoredFPC.address}`);
7878
}
7979

80-
main().catch((error) => {
80+
main()
81+
.then(() => process.exit(0))
82+
.catch((error) => {
8183
const logger = createLogger('aztec:aztec-starter');
8284
logger.error(`❌ Deployment failed: ${error.message}`);
8385
logger.error(`📋 Error details: ${error.stack}`);
8486
process.exit(1);
85-
});
87+
});

scripts/fees.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,12 @@ async function main() {
163163
logger.info(`Transfer paid with fees from Sponsored FPC.`)
164164
}
165165

166-
main();
166+
main()
167+
.then(() => process.exit(0))
168+
.catch((error) => {
169+
console.error("Error:", error);
170+
process.exit(1);
171+
});
167172

168173
// from here: https://github.com/AztecProtocol/aztec-packages/blob/ecbd59e58006533c8885a8b2fadbd9507489300c/yarn-project/end-to-end/src/fixtures/utils.ts#L534
169174
function getL1WalletClient(rpcUrl: string, index: number) {

scripts/get_block.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,9 @@ async function main() {
1111
console.log(await block?.hash())
1212
}
1313

14-
main();
14+
main()
15+
.then(() => process.exit(0))
16+
.catch((error) => {
17+
console.error("Error:", error);
18+
process.exit(1);
19+
});

0 commit comments

Comments
 (0)