Skip to content

Commit 2c1fa85

Browse files
authored
Merge pull request #77 from AztecProtocol/jc/82.3
update to 82.3 and mv ts tests
2 parents 5c2d0f1 + d5c7eb2 commit 2c1fa85

File tree

7 files changed

+527
-100
lines changed

7 files changed

+527
-100
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Set Aztec version and start sandbox
3030
run: |
31-
VERSION=0.82.2 aztec-up
31+
VERSION=0.82.3 aztec-up
3232
aztec start --sandbox &
3333
3434
- name: Install project dependencies

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-packages/", tag = "v0.82.2", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.82.3", directory = "noir-projects/aztec-nr/aztec" }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ bash -i <(curl -s https://install.aztec.network)
4141
Install the correct version of the toolkit with:
4242

4343
```bash
44-
aztec-up 0.82.2
44+
aztec-up 0.82.3
4545
```
4646

4747
Start the sandbox with:

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"update-readme-version": "node ./.github/scripts/update-readme-version.js"
2323
},
2424
"dependencies": {
25-
"@aztec/accounts": "0.82.2",
26-
"@aztec/aztec.js": "0.82.2",
27-
"@aztec/noir-contracts.js": "0.82.2",
28-
"@aztec/stdlib": "0.82.2",
25+
"@aztec/accounts": "0.82.3",
26+
"@aztec/aztec.js": "0.82.3",
27+
"@aztec/noir-contracts.js": "0.82.3",
28+
"@aztec/stdlib": "0.82.3",
2929
"@types/node": "^22.5.1"
3030
},
3131
"devDependencies": {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { EasyPrivateVotingContractArtifact, EasyPrivateVotingContract } from "../artifacts/EasyPrivateVoting.js"
1+
import { EasyPrivateVotingContractArtifact, EasyPrivateVotingContract } from "../../artifacts/EasyPrivateVoting.js"
22
import { AccountManager, AccountWallet, CompleteAddress, ContractDeployer, createLogger, Fr, PXE, waitForPXE, TxStatus, createPXEClient, getContractInstanceFromDeployParams, Logger } from "@aztec/aztec.js";
33
import { getInitialTestAccountsWallets, generateSchnorrAccounts } from "@aztec/accounts/testing"
44
import { getSchnorrAccount } from '@aztec/accounts/schnorr';
55
import { spawn } from 'child_process';
66
import { SponsoredFeePaymentMethod } from "@aztec/aztec.js/fee/testing";
77
import { getFeeJuiceBalance, type L2AmountClaim, L1FeeJuicePortalManager, FeeJuicePaymentMethodWithClaim, AztecAddress } from "@aztec/aztec.js";
88
import { createEthereumChain, createL1Clients } from '@aztec/ethereum';
9-
import { getDeployedSponsoredFPCAddress } from "../utils/sponsored_fpc.js";
9+
import { getDeployedSponsoredFPCAddress } from "../../utils/sponsored_fpc.js";
1010

1111
const setupSandbox = async () => {
1212
const { PXE_URL = 'http://localhost:8080' } = process.env;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { EasyPrivateVotingContractArtifact, EasyPrivateVotingContract } from "../artifacts/EasyPrivateVoting.js"
1+
import { EasyPrivateVotingContractArtifact, EasyPrivateVotingContract } from "../../artifacts/EasyPrivateVoting.js"
22
import { AccountManager, AccountWallet, CompleteAddress, ContractDeployer, createLogger, Fr, PXE, waitForPXE, TxStatus, createPXEClient, getContractInstanceFromDeployParams, Logger } from "@aztec/aztec.js";
33
import { getInitialTestAccountsWallets, generateSchnorrAccounts } from "@aztec/accounts/testing"
44
import { getSchnorrAccount } from '@aztec/accounts/schnorr';
55
import { spawn } from 'child_process';
66
import { SponsoredFeePaymentMethod } from '@aztec/aztec.js/fee/testing'
77
import { L1FeeJuicePortalManager, AztecAddress } from "@aztec/aztec.js";
88
import { createEthereumChain, createL1Clients } from '@aztec/ethereum';
9-
import { getDeployedSponsoredFPCAddress } from "../utils/sponsored_fpc.js";
9+
import { getDeployedSponsoredFPCAddress } from "../../utils/sponsored_fpc.js";
1010

1111
const setupSandbox = async () => {
1212
const { PXE_URL = 'http://localhost:8080' } = process.env;

0 commit comments

Comments
 (0)