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

Commit 7ea46ed

Browse files
authored
chore: upgrade 403 to v4.3.0 (#343)
# 🤖 Linear Closes AZT-XXX ## Description
1 parent b68b0ef commit 7ea46ed

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/token_contract/src/test/test_authorization_contract/Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ 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" }

src/ts/test/token.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ describe('Token', () => {
6161
deployer: deployerWallet,
6262
});
6363

64-
const deployer = new ContractDeployer(TokenContractArtifact, wallet, undefined, 'constructor_with_minter');
64+
const deployer = new ContractDeployer(TokenContractArtifact, wallet, 'constructor_with_minter');
6565
const { contract } = await deployer
66-
.deploy('PrivateToken', 'PT', 18, deployerWallet, AztecAddress.ZERO, { salt })
66+
.deploy(['PrivateToken', 'PT', 18, deployerWallet, AztecAddress.ZERO], { salt })
6767
.send({ from: deployerWallet });
6868

6969
const contractMetadata = await wallet.getContractMetadata(deploymentData.address);
@@ -89,7 +89,7 @@ describe('Token', () => {
8989
});
9090
const deployer = new ContractDeployer(TokenContractArtifact, wallet, 'constructor_with_initial_supply');
9191
const { contract } = await deployer
92-
.deploy('PrivateToken', 'PT', 18, 1, deployerWallet, AztecAddress.ZERO, { salt })
92+
.deploy(['PrivateToken', 'PT', 18, 1, deployerWallet, AztecAddress.ZERO], { salt })
9393
.send({ from: deployerWallet });
9494

9595
const contractMetadata = await wallet.getContractMetadata(deploymentData.address);

0 commit comments

Comments
 (0)