Skip to content

Commit dd077ba

Browse files
authored
Merge pull request #72 from AztecProtocol/jc/82
update to 0.82
2 parents 97e1f3f + d6ce6d0 commit dd077ba

File tree

8 files changed

+113
-111
lines changed

8 files changed

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

scripts/fees.ts

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const setupSandbox = async () => {
2424
};
2525

2626
const MNEMONIC = 'test test test test test test test test test test test junk';
27-
const FEE_FUNDING_FOR_TESTER_ACCOUNT = BigInt(1_000e20);
27+
const FEE_FUNDING_FOR_TESTER_ACCOUNT = 1000000000000000000n;
2828

2929
let walletClient = getL1WalletClient(foundry.rpcUrls.default.http[0], 0);
3030
const ownerEthAddress = walletClient.account.address;
@@ -40,14 +40,11 @@ async function main() {
4040
let wallets: AccountWallet[] = [];
4141
let logger: Logger;
4242

43-
const amount = FEE_FUNDING_FOR_TESTER_ACCOUNT;
44-
4543
logger = createLogger('aztec:aztec-starter');
4644

4745
pxe = await setupSandbox();
4846
wallets = await getInitialTestAccountsWallets(pxe);
4947
const nodeInfo = (await pxe.getNodeInfo())
50-
const l1ContractAddresses = nodeInfo.l1ContractAddresses;
5148

5249
// Setup Schnorr AccountManager
5350

@@ -60,16 +57,15 @@ async function main() {
6057

6158
// Setup and bridge fee asset to L2 to get fee juice
6259

63-
const feeJuicePortalManager = new L1FeeJuicePortalManager(
64-
l1ContractAddresses.feeJuicePortalAddress,
65-
l1ContractAddresses.feeJuiceAddress,
60+
const feeJuicePortalManager = await L1FeeJuicePortalManager.new(
61+
pxe,
6662
//@ts-ignore
6763
publicClient,
6864
walletClient,
6965
logger,
7066
);
7167

72-
const claim = await feeJuicePortalManager.bridgeTokensPublic(feeJuiceReceipient, amount, true);
68+
const claim = await feeJuicePortalManager.bridgeTokensPublic(feeJuiceReceipient, FEE_FUNDING_FOR_TESTER_ACCOUNT, true);
7369

7470
const feeJuice = await FeeJuiceContract.at(nodeInfo.protocolContractAddresses.feeJuice, wallets[0])
7571
logger.info(`Fee Juice minted to ${feeJuiceReceipient} on L2.`)
@@ -98,7 +94,7 @@ async function main() {
9894

9995
// This uses bananaCoin as the fee paying asset that will be exchanged for fee juice
10096
const fpc = await FPCContract.deploy(wallets[0], bananaCoin.address, wallets[0].getAddress()).send().deployed()
101-
const fpcClaim = await feeJuicePortalManager.bridgeTokensPublic(fpc.address, amount, true);
97+
const fpcClaim = await feeJuicePortalManager.bridgeTokensPublic(fpc.address, FEE_FUNDING_FOR_TESTER_ACCOUNT, true);
10298
// 2 public txs to make the bridged fee juice available
10399
// Mint some bananaCoin and send to the newWallet to pay fees privately
104100
await bananaCoin.methods.mint_to_private(wallets[0].getAddress(), newWallet.getAddress(), FEE_FUNDING_FOR_TESTER_ACCOUNT).send().wait()

src/test/accounts.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ describe("Accounts", () => {
9292

9393

9494
// bridge funds to unfunded random addresses
95-
const claimAmount = 10n ** 22n;
95+
const claimAmount = 1000000000000000000n;
9696
const approxMaxDeployCost = 10n ** 10n; // Need to manually update this if fees increase significantly
9797
let claims: L2AmountClaim[] = [];
9898
// bridge sequentially to avoid l1 txs (nonces) being processed out of order
Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import type { FeePaymentMethod } from '@aztec/aztec.js';
2+
import { ExecutionPayload } from '@aztec/entrypoints/payload';
23
import { ProtocolContractAddress } from '@aztec/protocol-contracts';
3-
import { type FunctionCall, FunctionSelector, FunctionType } from '@aztec/stdlib/abi';
4+
import { FunctionSelector, FunctionType } from '@aztec/stdlib/abi';
45
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
56
import type { PXE } from '@aztec/stdlib/interfaces/client';
67

@@ -15,7 +16,7 @@ export class SponsoredFeePaymentMethod implements FeePaymentMethod {
1516
* Contract which will pay the fee.
1617
*/
1718
private paymentContract: AztecAddress,
18-
) { }
19+
) {}
1920

2021
static async new(pxe: PXE) {
2122
const sponsoredFPC = await getDeployedSponsoredFPCAddress(pxe);
@@ -30,17 +31,21 @@ export class SponsoredFeePaymentMethod implements FeePaymentMethod {
3031
return Promise.resolve(this.paymentContract);
3132
}
3233

33-
async getFunctionCalls(): Promise<FunctionCall[]> {
34-
return [
35-
{
36-
name: 'sponsor_unconditionally',
37-
to: this.paymentContract,
38-
selector: await FunctionSelector.fromSignature('sponsor_unconditionally()'),
39-
type: FunctionType.PRIVATE,
40-
isStatic: false,
41-
args: [],
42-
returnTypes: [],
43-
},
44-
];
34+
async getExecutionPayload(): Promise<ExecutionPayload> {
35+
return new ExecutionPayload(
36+
[
37+
{
38+
name: 'sponsor_unconditionally',
39+
to: this.paymentContract,
40+
selector: await FunctionSelector.fromSignature('sponsor_unconditionally()'),
41+
type: FunctionType.PRIVATE,
42+
isStatic: false,
43+
args: [],
44+
returnTypes: [],
45+
},
46+
],
47+
[],
48+
[],
49+
);
4550
}
4651
}

yarn.lock

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

18-
"@aztec/accounts@0.81.0":
19-
version "0.81.0"
20-
resolved "https://registry.yarnpkg.com/@aztec/accounts/-/accounts-0.81.0.tgz#537c4154cd67b5c89720f1804f44618f8cb4533f"
21-
integrity sha512-3IJS2q5LFfqQggrkBIywnjnb9z5z54rqgq99nBR36rgz9DB4NP9MvS+LSiJeL32n7rF6R7qBZSyoCngkPTLlVg==
22-
dependencies:
23-
"@aztec/aztec.js" "0.81.0"
24-
"@aztec/entrypoints" "0.81.0"
25-
"@aztec/ethereum" "0.81.0"
26-
"@aztec/foundation" "0.81.0"
27-
"@aztec/stdlib" "0.81.0"
18+
"@aztec/accounts@0.82.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"
2828
tslib "^2.4.0"
2929

30-
31-
version "0.81.0"
32-
resolved "https://registry.yarnpkg.com/@aztec/aztec.js/-/aztec.js-0.81.0.tgz#19764fa0e08ed2f7659dc6d0dbaef084109cf578"
33-
integrity sha512-FZKZqninct6WnU1815/ExGDTvuO7JdR3cE0kpHcwDqHkSL7vfxcEM/xhmQsNF8+PWi4ZqSP5naKdiB4XGVanuw==
34-
dependencies:
35-
"@aztec/constants" "0.81.0"
36-
"@aztec/ethereum" "0.81.0"
37-
"@aztec/foundation" "0.81.0"
38-
"@aztec/l1-artifacts" "0.81.0"
39-
"@aztec/protocol-contracts" "0.81.0"
40-
"@aztec/stdlib" "0.81.0"
30+
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"
4142
axios "^1.7.2"
4243
tslib "^2.4.0"
4344
viem "2.23.7"
4445

45-
"@aztec/bb.js@0.81.0":
46-
version "0.81.0"
47-
resolved "https://registry.yarnpkg.com/@aztec/bb.js/-/bb.js-0.81.0.tgz#9cf0d9d5dea86815b6550fb4324b5967f175b7f0"
48-
integrity sha512-6lcE/1d1+buGNff0+gGzSM8srt6nUke8R+y+7O1L9kREbmbcuAf6S7S4FWVYjyD0YE5Lr2JZz7Gecu+gmwCdjw==
46+
"@aztec/bb.js@0.82.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==
4950
dependencies:
5051
comlink "^4.4.1"
5152
commander "^12.1.0"
@@ -54,54 +55,54 @@
5455
pako "^2.1.0"
5556
tslib "^2.4.0"
5657

57-
"@aztec/blob-lib@0.81.0":
58-
version "0.81.0"
59-
resolved "https://registry.yarnpkg.com/@aztec/blob-lib/-/blob-lib-0.81.0.tgz#38ff96af1859cd4284aa97e22c0c2f5fe24f1a4a"
60-
integrity sha512-8GF8mt0TeJH1h6Yt0siUdiVlX1kVoE2PZjXkzejmZppZplFUXwzNb6hUuy3SE8oL/3fV5bM1DaTzpM5+cwwi2A==
58+
"@aztec/blob-lib@0.82.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==
6162
dependencies:
62-
"@aztec/constants" "0.81.0"
63-
"@aztec/foundation" "0.81.0"
63+
"@aztec/constants" "0.82.0"
64+
"@aztec/foundation" "0.82.0"
6465
c-kzg "4.0.0-alpha.1"
6566
tslib "^2.4.0"
6667

67-
"@aztec/constants@0.81.0":
68-
version "0.81.0"
69-
resolved "https://registry.yarnpkg.com/@aztec/constants/-/constants-0.81.0.tgz#33c1d9b5756f8593d7bcb772b5ee32ffa333860b"
70-
integrity sha512-sBCHgT9Bb2gA0K8y0uLFOgtQqoIb3wevDtfl1isHDDP7lQpLbQx8qfeDQpGm7KW/b1pSQwOlZedlzNSAI9Y4lg==
68+
"@aztec/constants@0.82.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==
7172
dependencies:
7273
tslib "^2.4.0"
7374

74-
"@aztec/entrypoints@0.81.0":
75-
version "0.81.0"
76-
resolved "https://registry.yarnpkg.com/@aztec/entrypoints/-/entrypoints-0.81.0.tgz#344baccbb21d789b330f4f36ddd1e533e23de2ad"
77-
integrity sha512-h6csNqPxBWYZoyG+oyF+xosyMKhFAdu/kUDmiHPxeU3isj+ygtreq8/2w0Ea+Ht5yGgwA11QmZFINo0QMv4dGg==
75+
"@aztec/entrypoints@0.82.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==
7879
dependencies:
79-
"@aztec/aztec.js" "0.81.0"
80-
"@aztec/foundation" "0.81.0"
81-
"@aztec/protocol-contracts" "0.81.0"
82-
"@aztec/stdlib" "0.81.0"
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"
8384
tslib "^2.4.0"
8485

85-
"@aztec/ethereum@0.81.0":
86-
version "0.81.0"
87-
resolved "https://registry.yarnpkg.com/@aztec/ethereum/-/ethereum-0.81.0.tgz#af3450b76d0a4dd6a10199c0ed2149a4d7726836"
88-
integrity sha512-SN8yAaPO1HWrtEbzbg9HqLJiU9K+DvuK3skGpXZpE6m4U9YyxPV0slmYc2xeA2hgr6ir59jZtmhbPRD2lXMN5Q==
86+
"@aztec/ethereum@0.82.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==
8990
dependencies:
90-
"@aztec/blob-lib" "0.81.0"
91-
"@aztec/foundation" "0.81.0"
92-
"@aztec/l1-artifacts" "0.81.0"
91+
"@aztec/blob-lib" "0.82.0"
92+
"@aztec/foundation" "0.82.0"
93+
"@aztec/l1-artifacts" "0.82.0"
9394
"@viem/anvil" "^0.0.10"
9495
dotenv "^16.0.3"
9596
tslib "^2.4.0"
9697
viem "2.23.7"
9798
zod "^3.23.8"
9899

99-
"@aztec/foundation@0.81.0":
100-
version "0.81.0"
101-
resolved "https://registry.yarnpkg.com/@aztec/foundation/-/foundation-0.81.0.tgz#cc9535d9e6716337b9aaa8eee7e858fb0003b3a9"
102-
integrity sha512-w4i1uPz12YrN1l5MnFLav6grWooy3rZ6DivdT879ID/kzi8p5sBczZ/JbfCKpiw7EzmIx5YlMcv/iTjoVCkY8g==
100+
"@aztec/foundation@0.82.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==
103104
dependencies:
104-
"@aztec/bb.js" "0.81.0"
105+
"@aztec/bb.js" "0.82.0"
105106
"@koa/cors" "^5.0.0"
106107
"@noble/curves" "^1.2.0"
107108
bn.js "^5.2.1"
@@ -127,43 +128,43 @@
127128
undici "^5.28.5"
128129
zod "^3.23.8"
129130

130-
"@aztec/l1-artifacts@0.81.0":
131-
version "0.81.0"
132-
resolved "https://registry.yarnpkg.com/@aztec/l1-artifacts/-/l1-artifacts-0.81.0.tgz#b54bf7cc5a09c5226c5d11ffec92ddab2cbc10ef"
133-
integrity sha512-S1flofMA/juE6UF3EaQtFKWL5IE/cGQXJJsQnXt8zSG9E0WmUX5epQWo/AFRLx3q9Mi105kOdL4NTzDsk3ZmcQ==
131+
"@aztec/l1-artifacts@0.82.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==
134135
dependencies:
135136
tslib "^2.4.0"
136137

137-
"@aztec/noir-contracts.js@0.81.0":
138-
version "0.81.0"
139-
resolved "https://registry.yarnpkg.com/@aztec/noir-contracts.js/-/noir-contracts.js-0.81.0.tgz#27e715b70d668d88638a23aa5fdb565bdfda4ea2"
140-
integrity sha512-mRtk4Zpu4BHNM6lwB+T54/hufcwujk4Y4tOVBktHaaAhr/vNpb0WdDpcrnFCqRPhsnYVetul78pBVZ3KyOEhFg==
138+
"@aztec/noir-contracts.js@0.82.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==
141142
dependencies:
142-
"@aztec/aztec.js" "0.81.0"
143+
"@aztec/aztec.js" "0.82.0"
143144
tslib "^2.4.0"
144145

145-
"@aztec/protocol-contracts@0.81.0":
146-
version "0.81.0"
147-
resolved "https://registry.yarnpkg.com/@aztec/protocol-contracts/-/protocol-contracts-0.81.0.tgz#f7a4f2b4605a0bd2636a659ec9e8eac0be8cc5b5"
148-
integrity sha512-GiHh+AuxFSeLw8CuOEkUF4JE3NhureKcnBHVyr8gZ1s3LHWiiGo0M2O7c37A2mSMNGMViIUqLvZmFgcZ1bprMA==
146+
"@aztec/protocol-contracts@0.82.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==
149150
dependencies:
150-
"@aztec/constants" "0.81.0"
151-
"@aztec/foundation" "0.81.0"
152-
"@aztec/stdlib" "0.81.0"
151+
"@aztec/constants" "0.82.0"
152+
"@aztec/foundation" "0.82.0"
153+
"@aztec/stdlib" "0.82.0"
153154
lodash.chunk "^4.2.0"
154155
lodash.omit "^4.5.0"
155156
tslib "^2.4.0"
156157

157-
"@aztec/stdlib@0.81.0":
158-
version "0.81.0"
159-
resolved "https://registry.yarnpkg.com/@aztec/stdlib/-/stdlib-0.81.0.tgz#83ff9b9392ad0b95b05e730a2bf6d67729220acf"
160-
integrity sha512-72C/35epboelF7dOfYrsipSndQ5pnK/lb/UUA+mWWCTSE3no/EATptg+ZtzkbkB5efkHKAswoQOiIHsnxSbIcQ==
158+
"@aztec/stdlib@0.82.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==
161162
dependencies:
162-
"@aztec/bb.js" "0.81.0"
163-
"@aztec/blob-lib" "0.81.0"
164-
"@aztec/constants" "0.81.0"
165-
"@aztec/ethereum" "0.81.0"
166-
"@aztec/foundation" "0.81.0"
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"
167168
lodash.chunk "^4.2.0"
168169
lodash.isequal "^4.5.0"
169170
lodash.omit "^4.5.0"

0 commit comments

Comments
 (0)