Skip to content
This repository was archived by the owner on Jul 10, 2026. It is now read-only.
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
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@defi-wonderland/aztec-standards",
"version": "5.0.0-rc.1",
"version": "5.0.0-rc.2",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/aztec-standards.git"
Expand All @@ -26,15 +26,15 @@
"*.ts": "prettier --write -u"
},
"dependencies": {
"@aztec/accounts": "5.0.0-rc.1",
"@aztec/aztec.js": "5.0.0-rc.1",
"@aztec/noir-contracts.js": "5.0.0-rc.1",
"@aztec/protocol-contracts": "5.0.0-rc.1",
"@aztec/pxe": "5.0.0-rc.1",
"@aztec/stdlib": "5.0.0-rc.1",
"@aztec/wallet-sdk": "5.0.0-rc.1",
"@aztec/wallets": "5.0.0-rc.1",
"@defi-wonderland/aztec-benchmark": "5.0.0-rc.1",
"@aztec/accounts": "5.0.0-rc.2",
"@aztec/aztec.js": "5.0.0-rc.2",
"@aztec/noir-contracts.js": "5.0.0-rc.2",
"@aztec/protocol-contracts": "5.0.0-rc.2",
"@aztec/pxe": "5.0.0-rc.2",
"@aztec/stdlib": "5.0.0-rc.2",
"@aztec/wallet-sdk": "5.0.0-rc.2",
"@aztec/wallets": "5.0.0-rc.2",
"@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",
"commander": "14.0.1",
"dotenv": "16.4.7"
},
Expand All @@ -50,7 +50,7 @@
"vitest": "4.0.17"
},
"config": {
"aztecVersion": "5.0.0-rc.1"
"aztecVersion": "5.0.0-rc.2"
},
"engines": {
"node": ">=22"
Expand Down
2 changes: 1 addition & 1 deletion src/dripper/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
token = { path = "../token_contract" }
4 changes: 2 additions & 2 deletions src/escrow_contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
serde = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/noir-protocol-circuits/crates/serde" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
serde = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/noir-protocol-circuits/crates/serde" }
token = { path = "../token_contract" }
nft = { path = "../nft_contract" }
sha512 = { git = "https://github.com/noir-lang/sha512", tag = "mv/use-bool-over-u1" }
Expand Down
2 changes: 1 addition & 1 deletion src/escrow_contract/src/library/logic.nr
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub fn _get_escrow(
let escrow_instance = ContractInstance {
salt: context.this_address().to_field(),
deployer: AztecAddress::from_field(0),
contract_class_id: ContractClassId::from_field(escrow_class_id),
original_contract_class_id: ContractClassId::from_field(escrow_class_id),
initialization_hash: 0,
immutables_hash: 0,
public_keys: computed_public_keys,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
escrow_contract = { path = "../../../" }
token = { path = "../../../../token_contract" }
nft = { path = "../../../../nft_contract" }
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ unconstrained fn get_escrow_correct_instance() {
assert_eq(escrow_instance.salt, logic.to_field(), "Salt is not the logic contract");
assert_eq(escrow_instance.deployer, AztecAddress::from_field(0), "Deployer is not zero");
assert_eq(
escrow_instance.contract_class_id.to_field(),
escrow_instance.original_contract_class_id.to_field(),
escrow_class_id,
"Escrow class id mismatch",
);
Expand Down
2 changes: 1 addition & 1 deletion src/escrow_contract/src/test/utils.nr
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ pub unconstrained fn get_escrow_class_id() -> Field {
random(),
AztecAddress::zero(),
);
escrow_instance.contract_class_id.to_field()
escrow_instance.original_contract_class_id.to_field()
}
2 changes: 1 addition & 1 deletion src/generic_proxy/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler_version = ">=0.25.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
4 changes: 2 additions & 2 deletions src/nft_contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/compressed-string" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/compressed-string" }
generic_proxy = { path = "../generic_proxy" }
8 changes: 4 additions & 4 deletions src/token_contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/uint-note" }
balance_set = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/balance-set" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/compressed-string" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/uint-note" }
balance_set = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/balance-set" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/compressed-string" }
generic_proxy = { path = "../generic_proxy" }
3 changes: 2 additions & 1 deletion src/ts/test/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,8 @@ export async function deriveContractAddressWithConstructor(
* Must match the PRIVATE_ADDRESS_MAGIC_VALUE in the Noir contract:
* sha224sum 'PRIVATE_ADDRESS'
*/
export const PRIVATE_ADDRESS = AztecAddress.fromBigInt(0x1ea7e01501975545617c2e694d931cb576b691a4a867fed81ebd3264n);
export const PRIVATE_ADDRESS =
AztecAddress.fromBigIntUnsafe(0x1ea7e01501975545617c2e694d931cb576b691a4a867fed81ebd3264n);

/** Represents a decoded Transfer event. */
export type TransferEvent = {
Expand Down
2 changes: 1 addition & 1 deletion src/vault_contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
token_contract = { path = "../token_contract" }
generic_proxy = { path = "../generic_proxy" }
2 changes: 1 addition & 1 deletion src/vault_deployer/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.2", directory = "noir-projects/aztec-nr/aztec" }
vault_contract = { path = "../vault_contract" }
token_contract = { path = "../token_contract" }
2 changes: 1 addition & 1 deletion src/vault_deployer/src/main.nr
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ pub contract VaultDeployer {
ContractInstance {
salt,
deployer,
contract_class_id,
original_contract_class_id: contract_class_id,
initialization_hash,
immutables_hash: 0,
public_keys: PublicKeys::default(),
Expand Down
Loading
Loading