Skip to content
This repository was archived by the owner on Jul 10, 2026. It is now read-only.

Commit 12da8ee

Browse files
authored
chore: v4.3.0 release (#344)
# 🤖 Linear Closes AZT-XXX ## Description
2 parents 95e9167 + 3f5cf1c commit 12da8ee

22 files changed

Lines changed: 417 additions & 511 deletions

File tree

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
nargo fmt
1+
aztec-nargo fmt
22
yarn lint-staged

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@defi-wonderland/aztec-standards",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/defi-wonderland/aztec-standards.git"
@@ -26,15 +26,15 @@
2626
"*.ts": "prettier --write -u"
2727
},
2828
"dependencies": {
29-
"@aztec/accounts": "4.2.0",
30-
"@aztec/aztec.js": "4.2.0",
31-
"@aztec/noir-contracts.js": "4.2.0",
32-
"@aztec/protocol-contracts": "4.2.0",
33-
"@aztec/pxe": "4.2.0",
34-
"@aztec/stdlib": "4.2.0",
35-
"@aztec/wallet-sdk": "4.2.0",
36-
"@aztec/wallets": "4.2.0",
37-
"@defi-wonderland/aztec-benchmark": "4.2.0",
29+
"@aztec/accounts": "4.3.0",
30+
"@aztec/aztec.js": "4.3.0",
31+
"@aztec/noir-contracts.js": "4.3.0",
32+
"@aztec/protocol-contracts": "4.3.0",
33+
"@aztec/pxe": "4.3.0",
34+
"@aztec/stdlib": "4.3.0",
35+
"@aztec/wallet-sdk": "4.3.0",
36+
"@aztec/wallets": "4.3.0",
37+
"@defi-wonderland/aztec-benchmark": "4.3.0",
3838
"commander": "14.0.1",
3939
"dotenv": "16.4.7"
4040
},
@@ -50,7 +50,7 @@
5050
"vitest": "4.0.17"
5151
},
5252
"config": {
53-
"aztecVersion": "4.2.0"
53+
"aztecVersion": "4.3.0"
5454
},
5555
"engines": {
5656
"node": ">=22"

scripts/deploy.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,13 +269,14 @@ async function deployContract(
269269

270270
logger.info(`Deploying ${label}...`);
271271

272-
const deployMethod = Contract.deploy(deployer, artifact, constructorArgs, constructorArtifact);
272+
const deployMethod = Contract.deploy(deployer, artifact, constructorArgs, constructorArtifact, {
273+
salt,
274+
universalDeploy: true,
275+
});
273276

274277
try {
275278
await deployMethod.send({
276279
...options,
277-
contractAddressSalt: salt,
278-
universalDeploy: true,
279280
wait: { waitForStatus: TxStatus.PROPOSED },
280281
});
281282
} catch (error: unknown) {

src/dripper/Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ compiler_version = ">=1.0.0"
55
type = "contract"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/aztec" }
99
token = { path = "../token_contract" }

src/escrow_contract/Nargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ compiler_version = ">=1.0.0"
55
type = "contract"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/aztec" }
9-
serde = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/noir-protocol-circuits/crates/serde" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/aztec" }
9+
serde = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/noir-protocol-circuits/crates/serde" }
1010
token = { path = "../token_contract" }
1111
nft = { path = "../nft_contract" }
1212
sha512 = { git = "https://github.com/noir-lang/sha512", tag = "mv/use-bool-over-u1" }

src/escrow_contract/src/test/test_logic_contract/Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ compiler_version = ">=1.0.0"
55
type = "contract"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/aztec" }
99
escrow_contract = { path = "../../../" }
1010
token = { path = "../../../../token_contract" }
1111
nft = { path = "../../../../nft_contract" }

src/generic_proxy/Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ compiler_version = ">=0.25.0"
55
type = "contract"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/aztec" }

src/nft_contract/Nargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ compiler_version = ">=1.0.0"
55
type = "contract"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/aztec" }
9-
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/compressed-string" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/aztec" }
9+
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/compressed-string" }
1010
generic_proxy = { path = "../generic_proxy" }

src/token_contract/Nargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ compiler_version = ">=1.0.0"
55
type = "contract"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/aztec" }
9-
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/uint-note" }
10-
balance_set = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/balance-set" }
11-
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0", directory = "noir-projects/aztec-nr/compressed-string" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/aztec" }
9+
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/uint-note" }
10+
balance_set = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/balance-set" }
11+
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/compressed-string" }
1212
generic_proxy = { path = "../generic_proxy" }

src/token_contract/src/test/mint_to_commitment.nr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ unconstrained fn mint_to_private_failure_total_supply_overflow() {
9595
);
9696
}
9797

98-
#[test(should_fail_with = "Invalid partial note or completer 'context.nullifier_exists_unsafe(validity_commitment, context.this_address())'")]
98+
#[test(should_fail_with = "Invalid partial note or completer")]
9999
unconstrained fn mint_to_private_failure_invalid_commitments_random() {
100100
let (mut env, token_contract_address, _, _, minter) = utils::setup_with_minter(false);
101101

@@ -107,7 +107,7 @@ unconstrained fn mint_to_private_failure_invalid_commitments_random() {
107107
);
108108
}
109109

110-
#[test(should_fail_with = "Invalid partial note or completer 'context.nullifier_exists_unsafe(validity_commitment, context.this_address())'")]
110+
#[test(should_fail_with = "Invalid partial note or completer")]
111111
unconstrained fn mint_to_private_failure_invalid_commitments_zero() {
112112
let (mut env, token_contract_address, _, _, minter) = utils::setup_with_minter(false);
113113

0 commit comments

Comments
 (0)