Skip to content

Commit d5c7eb2

Browse files
authored
update and mv ts tests
1 parent 5b07e48 commit d5c7eb2

File tree

8 files changed

+528
-101
lines changed

8 files changed

+528
-101
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dockerfile": "Dockerfile"
55
},
66
"features": { "ghcr.io/devcontainers/features/docker-in-docker:2": {} },
7-
"postCreateCommand": "curl -s https://install.aztec.network | NON_INTERACTIVE=1 BIN_PATH=/usr/local/bin bash -s",
7+
"postCreateCommand": "yarn && curl -s https://install.aztec.network | NON_INTERACTIVE=1 BIN_PATH=/usr/local/bin bash -s",
88
"customizations": {
99
// Configure properties specific to VS Code.
1010
"vscode": {

.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)