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

Commit 3ac69e7

Browse files
authored
chore: upgrade to 5.0.0 rc.2 (#358)
# 🤖 Linear Closes AZT-XXX ## Description
1 parent 08fe237 commit 3ac69e7

15 files changed

Lines changed: 294 additions & 294 deletions

File tree

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": "5.0.0-rc.1",
3+
"version": "5.0.0-rc.2",
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": "5.0.0-rc.1",
30-
"@aztec/aztec.js": "5.0.0-rc.1",
31-
"@aztec/noir-contracts.js": "5.0.0-rc.1",
32-
"@aztec/protocol-contracts": "5.0.0-rc.1",
33-
"@aztec/pxe": "5.0.0-rc.1",
34-
"@aztec/stdlib": "5.0.0-rc.1",
35-
"@aztec/wallet-sdk": "5.0.0-rc.1",
36-
"@aztec/wallets": "5.0.0-rc.1",
37-
"@defi-wonderland/aztec-benchmark": "5.0.0-rc.1",
29+
"@aztec/accounts": "5.0.0-rc.2",
30+
"@aztec/aztec.js": "5.0.0-rc.2",
31+
"@aztec/noir-contracts.js": "5.0.0-rc.2",
32+
"@aztec/protocol-contracts": "5.0.0-rc.2",
33+
"@aztec/pxe": "5.0.0-rc.2",
34+
"@aztec/stdlib": "5.0.0-rc.2",
35+
"@aztec/wallet-sdk": "5.0.0-rc.2",
36+
"@aztec/wallets": "5.0.0-rc.2",
37+
"@defi-wonderland/aztec-benchmark": "https://github.com/defi-wonderland/aztec-benchmark/releases/download/prerelease-a2add93/defi-wonderland-aztec-benchmark-5.0.0-rc.2-prerelease.a2add93.tgz",
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": "5.0.0-rc.1"
53+
"aztecVersion": "5.0.0-rc.2"
5454
},
5555
"engines": {
5656
"node": ">=22"

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 = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", 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 = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
9-
serde = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/noir-protocol-circuits/crates/serde" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
9+
serde = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", 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/library/logic.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub fn _get_escrow(
3939
let escrow_instance = ContractInstance {
4040
salt: context.this_address().to_field(),
4141
deployer: AztecAddress::from_field(0),
42-
contract_class_id: ContractClassId::from_field(escrow_class_id),
42+
original_contract_class_id: ContractClassId::from_field(escrow_class_id),
4343
initialization_hash: 0,
4444
immutables_hash: 0,
4545
public_keys: computed_public_keys,

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 = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
99
escrow_contract = { path = "../../../" }
1010
token = { path = "../../../../token_contract" }
1111
nft = { path = "../../../../nft_contract" }

src/escrow_contract/src/test/test_logic_contract/src/test/get_escrow.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ unconstrained fn get_escrow_correct_instance() {
3131
assert_eq(escrow_instance.salt, logic.to_field(), "Salt is not the logic contract");
3232
assert_eq(escrow_instance.deployer, AztecAddress::from_field(0), "Deployer is not zero");
3333
assert_eq(
34-
escrow_instance.contract_class_id.to_field(),
34+
escrow_instance.original_contract_class_id.to_field(),
3535
escrow_class_id,
3636
"Escrow class id mismatch",
3737
);

src/escrow_contract/src/test/utils.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ pub unconstrained fn get_escrow_class_id() -> Field {
5656
random(),
5757
AztecAddress::zero(),
5858
);
59-
escrow_instance.contract_class_id.to_field()
59+
escrow_instance.original_contract_class_id.to_field()
6060
}

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 = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", 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 = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
9-
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/compressed-string" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
9+
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", 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,9 +5,9 @@ compiler_version = ">=1.0.0"
55
type = "contract"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
9-
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/uint-note" }
10-
balance_set = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/balance-set" }
11-
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/compressed-string" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
9+
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/uint-note" }
10+
balance_set = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/balance-set" }
11+
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/compressed-string" }
1212
generic_proxy = { path = "../generic_proxy" }
1313
authorization_contract = { path = "src/test/test_authorization_contract" }

0 commit comments

Comments
 (0)