Skip to content

Commit 555c4c3

Browse files
authored
Merge pull request #75 from AztecProtocol/jc/0.82.2
update to 82.2
2 parents dd077ba + 79e7125 commit 555c4c3

File tree

10 files changed

+104
-148
lines changed

10 files changed

+104
-148
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.0 aztec-up
31+
VERSION=0.82.2 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.0", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.82.2", 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.0
44+
aztec-up 0.82.2
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.0",
26-
"@aztec/aztec.js": "0.82.0",
27-
"@aztec/noir-contracts.js": "0.82.0",
28-
"@aztec/stdlib": "0.82.0",
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",
2929
"@types/node": "^22.5.1"
3030
},
3131
"devDependencies": {

scripts/deploy-account.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { AccountWallet, CompleteAddress, createLogger, Fr, PXE, waitForPXE, crea
22
import { getSchnorrAccount } from '@aztec/accounts/schnorr';
33
import { deriveSigningKey } from '@aztec/stdlib/keys';
44
import { getInitialTestAccountsWallets } from "@aztec/accounts/testing";
5-
import { SponsoredFeePaymentMethod } from "../src/utils/sponsored_fee_payment_method.js";
6-
5+
import { SponsoredFeePaymentMethod } from "@aztec/aztec.js/fee/testing";
6+
import { getDeployedSponsoredFPCAddress } from "../src/utils/sponsored_fpc.js";
77

88
const setupSandbox = async () => {
99
const { PXE_URL = 'http://localhost:8080' } = process.env;
@@ -23,7 +23,8 @@ async function main() {
2323

2424
pxe = await setupSandbox();
2525
wallets = await getInitialTestAccountsWallets(pxe);
26-
const sponsoredPaymentMethod = await SponsoredFeePaymentMethod.new(pxe);
26+
const deployedSponseredFPC = await getDeployedSponsoredFPCAddress(pxe);
27+
const sponsoredPaymentMethod = new SponsoredFeePaymentMethod(deployedSponseredFPC);
2728

2829
let secretKey = Fr.random();
2930
let salt = Fr.random();

scripts/fees.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ import { FPCContract } from "@aztec/noir-contracts.js/FPC";
1414
import { EasyPrivateVotingContract } from "../src/artifacts/EasyPrivateVoting.js"
1515
import { TokenContract } from "@aztec/noir-contracts.js/Token";
1616
// TODO: replace with import from aztec.js when published
17-
import { SponsoredFeePaymentMethod } from '../src/utils/sponsored_fee_payment_method.js'
17+
import { SponsoredFeePaymentMethod } from '@aztec/aztec.js/fee/testing'
18+
import { getDeployedSponsoredFPCAddress } from "../src/utils/sponsored_fpc.js";
1819

1920
const setupSandbox = async () => {
2021
const { PXE_URL = 'http://localhost:8080' } = process.env;
@@ -122,7 +123,8 @@ async function main() {
122123
// Sponsored Fee Payment
123124

124125
// This method will only work in environments where there is a sponsored fee contract deployed
125-
const sponsoredPaymentMethod = await SponsoredFeePaymentMethod.new(pxe);
126+
const deployedSponseredFPC = await getDeployedSponsoredFPCAddress(pxe);
127+
const sponsoredPaymentMethod = new SponsoredFeePaymentMethod(deployedSponseredFPC);
126128
await bananaCoin.withWallet(newWallet).methods.transfer_in_private(newWallet.getAddress(), wallets[0].getAddress(), 10, 0).send({ fee: { paymentMethod: sponsoredPaymentMethod }}).wait()
127129
logger.info(`Transfer paid with fees from Sponsored FPC.`)
128130
}

src/test/accounts.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ import { AccountManager, AccountWallet, CompleteAddress, ContractDeployer, creat
33
import { getInitialTestAccountsWallets, generateSchnorrAccounts } from "@aztec/accounts/testing"
44
import { getSchnorrAccount } from '@aztec/accounts/schnorr';
55
import { spawn } from 'child_process';
6-
import { SponsoredFeePaymentMethod } from '../utils/sponsored_fee_payment_method.js'
6+
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";
910

1011
const setupSandbox = async () => {
1112
const { PXE_URL = 'http://localhost:8080' } = process.env;
@@ -48,7 +49,8 @@ describe("Accounts", () => {
4849

4950
wallets = await getInitialTestAccountsWallets(pxe);
5051
accounts = wallets.map(w => w.getCompleteAddress());
51-
sponsoredPaymentMethod = await SponsoredFeePaymentMethod.new(pxe);
52+
const deployedSponseredFPC = await getDeployedSponsoredFPCAddress(pxe);
53+
sponsoredPaymentMethod = new SponsoredFeePaymentMethod(deployedSponseredFPC);
5254

5355
// generate random accounts
5456
randomAccountManagers = await Promise.all(

src/test/index.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ import { AccountManager, AccountWallet, CompleteAddress, ContractDeployer, creat
33
import { getInitialTestAccountsWallets, generateSchnorrAccounts } from "@aztec/accounts/testing"
44
import { getSchnorrAccount } from '@aztec/accounts/schnorr';
55
import { spawn } from 'child_process';
6-
import { SponsoredFeePaymentMethod } from '../utils/sponsored_fee_payment_method.js'
6+
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";
910

1011
const setupSandbox = async () => {
1112
const { PXE_URL = 'http://localhost:8080' } = process.env;
@@ -47,7 +48,8 @@ describe("Voting", () => {
4748

4849
wallets = await getInitialTestAccountsWallets(pxe);
4950
accounts = wallets.map(w => w.getCompleteAddress());
50-
sponsoredPaymentMethod = await SponsoredFeePaymentMethod.new(pxe);
51+
const deployedSponseredFPC = await getDeployedSponsoredFPCAddress(pxe);
52+
sponsoredPaymentMethod = new SponsoredFeePaymentMethod(deployedSponseredFPC);
5153

5254
// generate random accounts
5355
randomAccountManagers = await Promise.all(

src/utils/sponsored_fee_payment_method.ts

Lines changed: 0 additions & 51 deletions
This file was deleted.

yarn.lock

Lines changed: 81 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -15,38 +15,38 @@
1515
"@jridgewell/gen-mapping" "^0.3.5"
1616
"@jridgewell/trace-mapping" "^0.3.24"
1717

18-
"@aztec/[email protected].0":
19-
version "0.82.0"
20-
resolved "https://registry.yarnpkg.com/@aztec/accounts/-/accounts-0.82.0.tgz#ae71845c460eb5ac9eb5d0db4580aa815eb7a038"
21-
integrity sha512-IDppenMNclEfrC4J5MTjd6LbrHxagAHtSu8NLD1ddduQUJ+kH1s8TedtUK/KWStIosp+FnSuRSNDmlNvhxZmxQ==
22-
dependencies:
23-
"@aztec/aztec.js" "0.82.0"
24-
"@aztec/entrypoints" "0.82.0"
25-
"@aztec/ethereum" "0.82.0"
26-
"@aztec/foundation" "0.82.0"
27-
"@aztec/stdlib" "0.82.0"
18+
"@aztec/[email protected].2":
19+
version "0.82.2"
20+
resolved "https://registry.yarnpkg.com/@aztec/accounts/-/accounts-0.82.2.tgz#ec55d7e26ad434daa824070b0b6368aa75888d70"
21+
integrity sha512-q06CVFXS4C5p5K2YAOKtuj8Gj1mTcAEi1eo5G7x7R06DEvFxw5o/5OiWiMxfwpn384ovCsyS1feqIDY5UMGGUQ==
22+
dependencies:
23+
"@aztec/aztec.js" "0.82.2"
24+
"@aztec/entrypoints" "0.82.2"
25+
"@aztec/ethereum" "0.82.2"
26+
"@aztec/foundation" "0.82.2"
27+
"@aztec/stdlib" "0.82.2"
2828
tslib "^2.4.0"
2929

30-
"@aztec/[email protected].0":
31-
version "0.82.0"
32-
resolved "https://registry.yarnpkg.com/@aztec/aztec.js/-/aztec.js-0.82.0.tgz#bdaafe0d7e6e108d9ad2dd6b0647eb83aeafabda"
33-
integrity sha512-AX1LJGmTc8R9Ei++E4+gxM/WH7p5Ck3ketMdARXt0n84UQXyeCgbN/UiiDZjed8axn8Z38jhi6T4AI3dJK8RpQ==
34-
dependencies:
35-
"@aztec/constants" "0.82.0"
36-
"@aztec/entrypoints" "0.82.0"
37-
"@aztec/ethereum" "0.82.0"
38-
"@aztec/foundation" "0.82.0"
39-
"@aztec/l1-artifacts" "0.82.0"
40-
"@aztec/protocol-contracts" "0.82.0"
41-
"@aztec/stdlib" "0.82.0"
30+
"@aztec/[email protected].2":
31+
version "0.82.2"
32+
resolved "https://registry.yarnpkg.com/@aztec/aztec.js/-/aztec.js-0.82.2.tgz#3ac33e0851fdee6d0d704ece11d283dcf8879574"
33+
integrity sha512-daZMY8mjQ9i3bSnAfz3206kssVHxtQkkwC+UKS+r41m9LkY62xwNqixZzmsZCdvgwLSBptRkLNoU+iSXuozUyw==
34+
dependencies:
35+
"@aztec/constants" "0.82.2"
36+
"@aztec/entrypoints" "0.82.2"
37+
"@aztec/ethereum" "0.82.2"
38+
"@aztec/foundation" "0.82.2"
39+
"@aztec/l1-artifacts" "0.82.2"
40+
"@aztec/protocol-contracts" "0.82.2"
41+
"@aztec/stdlib" "0.82.2"
4242
axios "^1.7.2"
4343
tslib "^2.4.0"
4444
viem "2.23.7"
4545

46-
"@aztec/[email protected].0":
47-
version "0.82.0"
48-
resolved "https://registry.yarnpkg.com/@aztec/bb.js/-/bb.js-0.82.0.tgz#754611ff7562b28e83c08250836ceacb00364814"
49-
integrity sha512-Iw4m9nzRngZ0L8d/f+P+pMqpTAisMfIYQUfQeYAX/F+xslRVkvlgluD1DR4iMV1DId45+TfA/CBZssZLy5PicA==
46+
"@aztec/[email protected].2":
47+
version "0.82.2"
48+
resolved "https://registry.yarnpkg.com/@aztec/bb.js/-/bb.js-0.82.2.tgz#e123cd781a534b5868da016d93165043923058b4"
49+
integrity sha512-MBOHFVHOtfsknyJ1IsHH30paYqf0qLwYkiDTPyH1/KtkMwemvo5VyIgY0Dsl81KQa388MzoKhC6qnaFgERiaog==
5050
dependencies:
5151
comlink "^4.4.1"
5252
commander "^12.1.0"
@@ -55,54 +55,54 @@
5555
pako "^2.1.0"
5656
tslib "^2.4.0"
5757

58-
"@aztec/[email protected].0":
59-
version "0.82.0"
60-
resolved "https://registry.yarnpkg.com/@aztec/blob-lib/-/blob-lib-0.82.0.tgz#cc78bf38cb34574a54d441cf78e642fbe8298527"
61-
integrity sha512-muJ1lS+ZkZdkvG2jpYW9mlYnz6SfSBKRozbPoQA8BMcg7xoLBBAJ6mNWqExuV/4ZzhIYCkMAEp2JHEBFAjA+Jg==
58+
"@aztec/[email protected].2":
59+
version "0.82.2"
60+
resolved "https://registry.yarnpkg.com/@aztec/blob-lib/-/blob-lib-0.82.2.tgz#a8475693b406b36ee2b0a42c12e1b78421e64bc9"
61+
integrity sha512-ClGVlhLJ06h+QqU0dGBjUdNfcZ+xjjBlEL/ZobPvE8mr7VnTLJ72mf20U/dFarRXphJnukdYhDr246qftmqS6Q==
6262
dependencies:
63-
"@aztec/constants" "0.82.0"
64-
"@aztec/foundation" "0.82.0"
63+
"@aztec/constants" "0.82.2"
64+
"@aztec/foundation" "0.82.2"
6565
c-kzg "4.0.0-alpha.1"
6666
tslib "^2.4.0"
6767

68-
"@aztec/[email protected].0":
69-
version "0.82.0"
70-
resolved "https://registry.yarnpkg.com/@aztec/constants/-/constants-0.82.0.tgz#8ad131869bfc8a1ab883a949079fff7ab6f173fa"
71-
integrity sha512-gjbUpG7gALeE3g5qD37aqOJWUjsrjE/VlEzQOF7leR/X9Jzv0qV621PwmJ5xEIBB/B/mpIGJtVGV3rUojlU+iw==
68+
"@aztec/[email protected].2":
69+
version "0.82.2"
70+
resolved "https://registry.yarnpkg.com/@aztec/constants/-/constants-0.82.2.tgz#bb60a46e9e0bbacd1a886dd68fd7d92f3b7c4488"
71+
integrity sha512-yW58iqR8jbeqnqmZsA6IudyLWiOkq4BSRDLLGeHyu22nrcRRKgqJBVsRKLBRJ1gvuGwFM5hNn9fTWtHf0g19Zg==
7272
dependencies:
7373
tslib "^2.4.0"
7474

75-
"@aztec/[email protected].0":
76-
version "0.82.0"
77-
resolved "https://registry.yarnpkg.com/@aztec/entrypoints/-/entrypoints-0.82.0.tgz#a10839bc5050065f615963c8a0a90dd7f97f8e00"
78-
integrity sha512-H3bY8u/vH1mqxR00+Cusda8chmoHUxRQ0vicZWKb9j14TnLC8AelL4XKbMzoIfimrXMzeCQ7GBqtaPDoQbCLuA==
75+
"@aztec/[email protected].2":
76+
version "0.82.2"
77+
resolved "https://registry.yarnpkg.com/@aztec/entrypoints/-/entrypoints-0.82.2.tgz#fc055ff7281dd6a535a9732da66e258c438247ea"
78+
integrity sha512-IuSOZN0jDG3J3Ie763y6E1cz0BLm8DiuQVHVnR+vdcFjyQULpTQ9yXcZiVHUnbHQh26gl5euNp8zoBUWrpsC4Q==
7979
dependencies:
80-
"@aztec/constants" "0.82.0"
81-
"@aztec/foundation" "0.82.0"
82-
"@aztec/protocol-contracts" "0.82.0"
83-
"@aztec/stdlib" "0.82.0"
80+
"@aztec/constants" "0.82.2"
81+
"@aztec/foundation" "0.82.2"
82+
"@aztec/protocol-contracts" "0.82.2"
83+
"@aztec/stdlib" "0.82.2"
8484
tslib "^2.4.0"
8585

86-
"@aztec/[email protected].0":
87-
version "0.82.0"
88-
resolved "https://registry.yarnpkg.com/@aztec/ethereum/-/ethereum-0.82.0.tgz#b3e489f6cc59b94e7f9f66d0cdc00f21a62a54d0"
89-
integrity sha512-w3hR7tT3ziyTSPZi+viezROX/j81CX8MqyrOSOqiMXoV8DBCS/xl6Mxo4ZjkS7hR1g+zTBVMMpU3hE39cj+AhA==
86+
"@aztec/[email protected].2":
87+
version "0.82.2"
88+
resolved "https://registry.yarnpkg.com/@aztec/ethereum/-/ethereum-0.82.2.tgz#ef0ea1cedb56817de6bba74d494be66a8aeaf826"
89+
integrity sha512-w6qqLDf676Rty+TPwUzeVpqr4MrI/WwfUD+n8SZ4xHilK0lGo+4LlJmDg4ckPa/GZ2ZP1rbOBm822+VgC1LQtg==
9090
dependencies:
91-
"@aztec/blob-lib" "0.82.0"
92-
"@aztec/foundation" "0.82.0"
93-
"@aztec/l1-artifacts" "0.82.0"
91+
"@aztec/blob-lib" "0.82.2"
92+
"@aztec/foundation" "0.82.2"
93+
"@aztec/l1-artifacts" "0.82.2"
9494
"@viem/anvil" "^0.0.10"
9595
dotenv "^16.0.3"
9696
tslib "^2.4.0"
9797
viem "2.23.7"
9898
zod "^3.23.8"
9999

100-
"@aztec/[email protected].0":
101-
version "0.82.0"
102-
resolved "https://registry.yarnpkg.com/@aztec/foundation/-/foundation-0.82.0.tgz#a309357f1459a0c8a294290db5712e5221245edf"
103-
integrity sha512-FBarD01tBpb10JyYXn0+UHoexRGZjM9SR61105XmwgQDXRJaV87zfNqq/8UoXKysvOaoRPBwKwfAciVlOyl9Bg==
100+
"@aztec/[email protected].2":
101+
version "0.82.2"
102+
resolved "https://registry.yarnpkg.com/@aztec/foundation/-/foundation-0.82.2.tgz#2d325af65468ceeea48f6c5bcf606de907f644c7"
103+
integrity sha512-XWWUYbjzDXHO3p4Fzq8DpyCEVGEmhkJxvjQcomXejTWWAyNU6KqouiPTqFJJvHq2qouC3eucDo1BRDuaztqVdQ==
104104
dependencies:
105-
"@aztec/bb.js" "0.82.0"
105+
"@aztec/bb.js" "0.82.2"
106106
"@koa/cors" "^5.0.0"
107107
"@noble/curves" "^1.2.0"
108108
bn.js "^5.2.1"
@@ -128,43 +128,43 @@
128128
undici "^5.28.5"
129129
zod "^3.23.8"
130130

131-
"@aztec/[email protected].0":
132-
version "0.82.0"
133-
resolved "https://registry.yarnpkg.com/@aztec/l1-artifacts/-/l1-artifacts-0.82.0.tgz#34b384573fb4ce053dc88f3176ca581f38102fc1"
134-
integrity sha512-6ZACd24RVUh2bskeT2mNExU/LrNOFlwqWRp7fu4s/Zj9FMMRVY7bZ/2vdL3OPcfnng05zAG1mzdZJuwi2t5LSQ==
131+
"@aztec/[email protected].2":
132+
version "0.82.2"
133+
resolved "https://registry.yarnpkg.com/@aztec/l1-artifacts/-/l1-artifacts-0.82.2.tgz#e297a3a8d4c14a16b0e131e9e528868d8dee6cc8"
134+
integrity sha512-6XSO1uEMvEA3ndR7/558Zj40xXwokvz+0gUXj0d9JdLltx2ajhRNHB1o1jEQTpY2HcopJzCRGOaiyYqosjji9Q==
135135
dependencies:
136136
tslib "^2.4.0"
137137

138-
"@aztec/[email protected].0":
139-
version "0.82.0"
140-
resolved "https://registry.yarnpkg.com/@aztec/noir-contracts.js/-/noir-contracts.js-0.82.0.tgz#69918fcd869280bdf892b8c8c1ac72f1de1941b7"
141-
integrity sha512-Y7ZGp/d0iAFj9WhrxqeAtDdwfXHLdGNNezuns1z6rgq1EFM44aC+2VJVlJZjRKxelOwitxg1QPfltS3GZMD/5Q==
138+
"@aztec/[email protected].2":
139+
version "0.82.2"
140+
resolved "https://registry.yarnpkg.com/@aztec/noir-contracts.js/-/noir-contracts.js-0.82.2.tgz#af596414742906d940fe8f5adf2236bfaa3bbeeb"
141+
integrity sha512-JoCf8hKxej+JX+ZKcuhQ5Ye6AJz+Y+RZrkzDfML/o94bwU+VW8ZoyO3ZhxMUEh2KUlRKEDXM81peKt3lNfWA+w==
142142
dependencies:
143-
"@aztec/aztec.js" "0.82.0"
143+
"@aztec/aztec.js" "0.82.2"
144144
tslib "^2.4.0"
145145

146-
"@aztec/[email protected].0":
147-
version "0.82.0"
148-
resolved "https://registry.yarnpkg.com/@aztec/protocol-contracts/-/protocol-contracts-0.82.0.tgz#d76f6c070a63e64ef2a708a6eb226602b6dd21a7"
149-
integrity sha512-msNP68Txv8PxQV+K4ipsCDuR8fRDCMT72nRlSnDRLsC4hMyZSM0tzhYz/sKff+y9/wYaUO4ykY7S7G6vwdOc/w==
146+
"@aztec/[email protected].2":
147+
version "0.82.2"
148+
resolved "https://registry.yarnpkg.com/@aztec/protocol-contracts/-/protocol-contracts-0.82.2.tgz#c2aaf5a4f9c9a530caa3f0ee473d31137d4d6c0a"
149+
integrity sha512-TlUKsSm4zUHwMJDsIRdpD+MiJf/vYnTpi9s+haYiUmle7OIt3PYFSLV969mug2QxN4844kS2T6AHGrjfHnBOCg==
150150
dependencies:
151-
"@aztec/constants" "0.82.0"
152-
"@aztec/foundation" "0.82.0"
153-
"@aztec/stdlib" "0.82.0"
151+
"@aztec/constants" "0.82.2"
152+
"@aztec/foundation" "0.82.2"
153+
"@aztec/stdlib" "0.82.2"
154154
lodash.chunk "^4.2.0"
155155
lodash.omit "^4.5.0"
156156
tslib "^2.4.0"
157157

158-
"@aztec/[email protected].0":
159-
version "0.82.0"
160-
resolved "https://registry.yarnpkg.com/@aztec/stdlib/-/stdlib-0.82.0.tgz#fdf843a4e2cc3805bc7d08957a18331fed5f2725"
161-
integrity sha512-sXrDIotPe/gIJJ7JG7Hg2biFK4JYMX8w/dR0BXk3qT+UTca3OofQgfSV+RCPJUo2h3DeTlK7ZHTASiou0sj0dw==
158+
"@aztec/[email protected].2":
159+
version "0.82.2"
160+
resolved "https://registry.yarnpkg.com/@aztec/stdlib/-/stdlib-0.82.2.tgz#ff19af8b06d9303e979a4a71a659814927fab2b1"
161+
integrity sha512-Rb1kCztNbRx2tN4HSN5xaJis519qT5DAUWleCs1y3Hgov/KkN/8pq/UhKOh4Sz2KgFM85ZT1oy4FWWSY0gYbdA==
162162
dependencies:
163-
"@aztec/bb.js" "0.82.0"
164-
"@aztec/blob-lib" "0.82.0"
165-
"@aztec/constants" "0.82.0"
166-
"@aztec/ethereum" "0.82.0"
167-
"@aztec/foundation" "0.82.0"
163+
"@aztec/bb.js" "0.82.2"
164+
"@aztec/blob-lib" "0.82.2"
165+
"@aztec/constants" "0.82.2"
166+
"@aztec/ethereum" "0.82.2"
167+
"@aztec/foundation" "0.82.2"
168168
lodash.chunk "^4.2.0"
169169
lodash.isequal "^4.5.0"
170170
lodash.omit "^4.5.0"

0 commit comments

Comments
 (0)