Skip to content

Commit 5e8954b

Browse files
authored
Merge pull request #88 from AztecProtocol/jc/86
update to 86
2 parents 0f93f68 + 2c44fbc commit 5e8954b

File tree

8 files changed

+123
-109
lines changed

8 files changed

+123
-109
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.85.0 aztec-up
31+
VERSION=0.86.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.85.0", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.86.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.85.0
44+
aztec-up 0.86.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.85.0",
26-
"@aztec/aztec.js": "0.85.0",
27-
"@aztec/noir-contracts.js": "0.85.0",
28-
"@aztec/stdlib": "0.85.0",
25+
"@aztec/accounts": "0.86.0",
26+
"@aztec/aztec.js": "0.86.0",
27+
"@aztec/noir-contracts.js": "0.86.0",
28+
"@aztec/stdlib": "0.86.0",
2929
"@types/node": "^22.5.1"
3030
},
3131
"devDependencies": {

scripts/fees.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { TokenContract } from "@aztec/noir-contracts.js/Token";
1616
// TODO: replace with import from aztec.js when published
1717
import { SponsoredFeePaymentMethod } from '@aztec/aztec.js/fee/testing'
1818
import { getDeployedSponsoredFPCAddress } from "../src/utils/sponsored_fpc.js";
19+
import { createEthereumChain, createExtendedL1Client } from "@aztec/ethereum";
1920

2021
const setupSandbox = async () => {
2122
const { PXE_URL = 'http://localhost:8080' } = process.env;
@@ -30,10 +31,6 @@ const FEE_FUNDING_FOR_TESTER_ACCOUNT = 1000000000000000000n;
3031
let walletClient = getL1WalletClient(foundry.rpcUrls.default.http[0], 0);
3132
const ownerEthAddress = walletClient.account.address;
3233

33-
const publicClient = createPublicClient({
34-
chain: foundry,
35-
transport: http("http://127.0.0.1:8545"),
36-
});
3734

3835
async function main() {
3936

@@ -47,6 +44,9 @@ async function main() {
4744
wallets = await getInitialTestAccountsWallets(pxe);
4845
const nodeInfo = (await pxe.getNodeInfo())
4946

47+
const chain = createEthereumChain(['http://localhost:8545'], nodeInfo.l1ChainId);
48+
const l1Client = createExtendedL1Client(chain.rpcUrls, MNEMONIC, chain.chainInfo);
49+
5050
// Setup Schnorr AccountManager
5151

5252
let secretKey = Fr.random();
@@ -61,8 +61,7 @@ async function main() {
6161
const feeJuicePortalManager = await L1FeeJuicePortalManager.new(
6262
pxe,
6363
//@ts-ignore
64-
publicClient,
65-
walletClient,
64+
l1Client,
6665
logger,
6766
);
6867

src/test/e2e/accounts.test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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";
8-
import { createEthereumChain, createL1Clients } from '@aztec/ethereum';
8+
import { createEthereumChain, createExtendedL1Client } from '@aztec/ethereum';
99
import { getDeployedSponsoredFPCAddress } from "../../utils/sponsored_fpc.js";
1010

1111
const setupSandbox = async () => {
@@ -57,15 +57,14 @@ describe("Accounts", () => {
5757
const nodeInfo = await pxe.getNodeInfo();
5858
const chain = createEthereumChain(['http://localhost:8545'], nodeInfo.l1ChainId);
5959
const DefaultMnemonic = 'test test test test test test test test test test test junk';
60-
const { publicClient, walletClient } = createL1Clients(chain.rpcUrls, DefaultMnemonic, chain.chainInfo);
60+
const l1Client = createExtendedL1Client(chain.rpcUrls, DefaultMnemonic, chain.chainInfo);
6161

6262
feeJuiceAddress = nodeInfo.protocolContractAddresses.feeJuice;
6363

6464
// create portal manager
6565
l1PortalManager = await L1FeeJuicePortalManager.new(
6666
pxe,
67-
publicClient,
68-
walletClient,
67+
l1Client,
6968
logger
7069
);
7170

src/test/e2e/index.test.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ 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";
8-
import { createEthereumChain, createL1Clients } from '@aztec/ethereum';
8+
import { createEthereumChain, createExtendedL1Client } from '@aztec/ethereum';
99
import { getDeployedSponsoredFPCAddress } from "../../utils/sponsored_fpc.js";
10-
10+
import {createPublicClient,
11+
createWalletClient,
12+
http,
13+
} from 'viem';
14+
import { foundry } from "viem/chains";
1115
const setupSandbox = async () => {
1216
const { PXE_URL = 'http://localhost:8080' } = process.env;
1317
const pxe = createPXEClient(PXE_URL);
@@ -66,13 +70,12 @@ describe("Voting", () => {
6670
const nodeInfo = await pxe.getNodeInfo();
6771
const chain = createEthereumChain(['http://localhost:8545'], nodeInfo.l1ChainId);
6872
const DefaultMnemonic = 'test test test test test test test test test test test junk';
69-
const { publicClient, walletClient } = createL1Clients(chain.rpcUrls, DefaultMnemonic, chain.chainInfo);
73+
const l1Client = createExtendedL1Client(chain.rpcUrls, DefaultMnemonic, chain.chainInfo);
7074

7175
// create portal manager
7276
l1PortalManager = await L1FeeJuicePortalManager.new(
7377
pxe,
74-
publicClient,
75-
walletClient,
78+
l1Client,
7679
logger
7780
);
7881

yarn.lock

Lines changed: 100 additions & 87 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/accounts@0.85.0":
19-
version "0.85.0"
20-
resolved "https://registry.yarnpkg.com/@aztec/accounts/-/accounts-0.85.0.tgz#8b3b46fea61a07746ce16059fac4aaf82a3c48b6"
21-
integrity sha512-GB0xJaRuG6sXkUe318gwQ+iEm3SIjDaeptw2O4yC/Dvm7EuVEoe9dXYTX7cjILTR1Yf/9HXF/kDohJlrqRE2gA==
22-
dependencies:
23-
"@aztec/aztec.js" "0.85.0"
24-
"@aztec/entrypoints" "0.85.0"
25-
"@aztec/ethereum" "0.85.0"
26-
"@aztec/foundation" "0.85.0"
27-
"@aztec/stdlib" "0.85.0"
18+
"@aztec/accounts@0.86.0":
19+
version "0.86.0"
20+
resolved "https://registry.yarnpkg.com/@aztec/accounts/-/accounts-0.86.0.tgz#2b53915bd13daed883b8054be557287b9430961a"
21+
integrity sha512-L4nM3uTcpTMt5AETW1wleWZ4sSGZdL+QGZqu3wNBXsMfrIo3QcriqjyHMqsC1lkyLWLHvX2pBbt6n/rian1b0w==
22+
dependencies:
23+
"@aztec/aztec.js" "0.86.0"
24+
"@aztec/entrypoints" "0.86.0"
25+
"@aztec/ethereum" "0.86.0"
26+
"@aztec/foundation" "0.86.0"
27+
"@aztec/stdlib" "0.86.0"
2828
tslib "^2.4.0"
2929

30-
"@aztec/aztec.js@0.85.0":
31-
version "0.85.0"
32-
resolved "https://registry.yarnpkg.com/@aztec/aztec.js/-/aztec.js-0.85.0.tgz#4ba3c60efe2c1a0eabaa27f6025f06c161624548"
33-
integrity sha512-MZbcaMyNjdSktbJ7BBQPJfasiEJwc80QZcuu+JR3kmGNTLJJ0ZFt2cn6VihJZu8Hxf7UTVUAm38JK0z/Y+ue1Q==
34-
dependencies:
35-
"@aztec/constants" "0.85.0"
36-
"@aztec/entrypoints" "0.85.0"
37-
"@aztec/ethereum" "0.85.0"
38-
"@aztec/foundation" "0.85.0"
39-
"@aztec/l1-artifacts" "0.85.0"
40-
"@aztec/protocol-contracts" "0.85.0"
41-
"@aztec/stdlib" "0.85.0"
42-
axios "^1.7.2"
30+
"@aztec/aztec.js@0.86.0":
31+
version "0.86.0"
32+
resolved "https://registry.yarnpkg.com/@aztec/aztec.js/-/aztec.js-0.86.0.tgz#133f5a0a70fa7f58fb51d145c6c6a472b94de37f"
33+
integrity sha512-nUfT31+7W+hEdOMpx2K62WZPtN9vVNr96FPJ2psBKdTx4fzXtuX2NE/ZrgHFtEenycDWEgjlEcYG9aR5LI51Bw==
34+
dependencies:
35+
"@aztec/constants" "0.86.0"
36+
"@aztec/entrypoints" "0.86.0"
37+
"@aztec/ethereum" "0.86.0"
38+
"@aztec/foundation" "0.86.0"
39+
"@aztec/l1-artifacts" "0.86.0"
40+
"@aztec/protocol-contracts" "0.86.0"
41+
"@aztec/stdlib" "0.86.0"
42+
axios "^1.8.2"
4343
tslib "^2.4.0"
4444
viem "2.23.7"
4545

46-
"@aztec/bb.js@0.85.0":
47-
version "0.85.0"
48-
resolved "https://registry.yarnpkg.com/@aztec/bb.js/-/bb.js-0.85.0.tgz#a653e7dace6d966946d54df3a5caae9b20f8dc5f"
49-
integrity sha512-uNaXq6CmPWV5vb2Yr9nEI4VR7PahVXRA0eo1p3YfrHMfxhsWSee3yBTsQ3CktSC5yZdyJR10d2yld/mUGkDxKQ==
46+
"@aztec/bb.js@0.86.0":
47+
version "0.86.0"
48+
resolved "https://registry.yarnpkg.com/@aztec/bb.js/-/bb.js-0.86.0.tgz#0d84e14cfb21ef4274e90be55a1a012554126a4e"
49+
integrity sha512-9XcEltM0qRJpNvowZ0w2TY1YCDXlktxupBG+HHi6P+snF/wBhAXPzJb5mdqEkVcVqcwXskVoBdj4XqTLNiPZKg==
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/blob-lib@0.85.0":
59-
version "0.85.0"
60-
resolved "https://registry.yarnpkg.com/@aztec/blob-lib/-/blob-lib-0.85.0.tgz#03e8af3e7acfb2ea0af58a9e599a98c7dd416173"
61-
integrity sha512-C098+LZ8i8nSas7jnVwYheE65orG/SEKbaosZ59p+FGtN9G1X1kWJLw/j3jLFqRJSzdnpCXuW7sQ9P0pFBhdXw==
58+
"@aztec/blob-lib@0.86.0":
59+
version "0.86.0"
60+
resolved "https://registry.yarnpkg.com/@aztec/blob-lib/-/blob-lib-0.86.0.tgz#5efe2b57beb1b4ce7c826975ff8a2e6b963678ac"
61+
integrity sha512-GyTnqC3nCkfUKayQRk8RBy/MftejTgcrqGn5tryK3Vo21LJSPzo6MGe/tZ/glqxX2CpwI8YkFtPCbBaOPvZQTg==
6262
dependencies:
63-
"@aztec/constants" "0.85.0"
64-
"@aztec/foundation" "0.85.0"
63+
"@aztec/constants" "0.86.0"
64+
"@aztec/foundation" "0.86.0"
6565
c-kzg "4.0.0-alpha.1"
6666
tslib "^2.4.0"
6767

68-
"@aztec/constants@0.85.0":
69-
version "0.85.0"
70-
resolved "https://registry.yarnpkg.com/@aztec/constants/-/constants-0.85.0.tgz#d5bfcf0dd94d8a6e5de0548e21f29d6d0f686dfc"
71-
integrity sha512-h43MR0FUDCVkI04nPCDZ2S6sVQLpS0CFApyyO698abanOm8VKNboHVeZuHu5aeBKJeQE//jKtbv7qXlAGfF33Q==
68+
"@aztec/constants@0.86.0":
69+
version "0.86.0"
70+
resolved "https://registry.yarnpkg.com/@aztec/constants/-/constants-0.86.0.tgz#fc73fd40f47ccb704109ab63ce7d8ac3ebb362c5"
71+
integrity sha512-xNlaNkBGodgEeSfwee7yevPNgMvNCMl9jZ2j+gBAR+SrbGtMkdTo1aNg732gcQNFjW+3MN/rUNMqPodWD0KN4A==
7272
dependencies:
7373
tslib "^2.4.0"
7474

75-
"@aztec/entrypoints@0.85.0":
76-
version "0.85.0"
77-
resolved "https://registry.yarnpkg.com/@aztec/entrypoints/-/entrypoints-0.85.0.tgz#097f585f12f5086ff220506138c4bdf8c53ff12c"
78-
integrity sha512-KIMeNGmwnOx5KvM1uC3b4ek7HyRo9JQeHHzxR/jQqKkMcb1QFEXfcv+h3zgqjuFa/ABuocz2T9mPhIxhG75GEg==
75+
"@aztec/entrypoints@0.86.0":
76+
version "0.86.0"
77+
resolved "https://registry.yarnpkg.com/@aztec/entrypoints/-/entrypoints-0.86.0.tgz#1a81868563bff11bc6d5060db44fed8bd6edcf42"
78+
integrity sha512-V9st4p1+EaDNk7srix6nMCgPXVodBpIm+uMEhtoUUSXWWrCJIaioywHOAkqeLR6Roq0epDT849yWgcvUIrQOhA==
7979
dependencies:
80-
"@aztec/constants" "0.85.0"
81-
"@aztec/foundation" "0.85.0"
82-
"@aztec/protocol-contracts" "0.85.0"
83-
"@aztec/stdlib" "0.85.0"
80+
"@aztec/constants" "0.86.0"
81+
"@aztec/foundation" "0.86.0"
82+
"@aztec/protocol-contracts" "0.86.0"
83+
"@aztec/stdlib" "0.86.0"
8484
tslib "^2.4.0"
8585

86-
"@aztec/ethereum@0.85.0":
87-
version "0.85.0"
88-
resolved "https://registry.yarnpkg.com/@aztec/ethereum/-/ethereum-0.85.0.tgz#77e2fe8609ae996ef4bfe0299457eb3db69c2745"
89-
integrity sha512-c+NTMZh8eg2ot/dCgZr1TR4ONyUVI0RCHRgPk49GzCWM8OHYwCkD2VTkO21e6IHS0NRk9z1ucZVuzob+aq+jHg==
86+
"@aztec/ethereum@0.86.0":
87+
version "0.86.0"
88+
resolved "https://registry.yarnpkg.com/@aztec/ethereum/-/ethereum-0.86.0.tgz#31869dfc1fccabc64c1775122e9de419e196615b"
89+
integrity sha512-ApBl27p4Sr19IH5XJUruKSLV1CkR2NDkh7Km39PCdbtJ086KL4yG/Zs8IFAq9Irwx2JwLFSoGGeOuporKf+QPA==
9090
dependencies:
91-
"@aztec/blob-lib" "0.85.0"
92-
"@aztec/foundation" "0.85.0"
93-
"@aztec/l1-artifacts" "0.85.0"
91+
"@aztec/blob-lib" "0.86.0"
92+
"@aztec/foundation" "0.86.0"
93+
"@aztec/l1-artifacts" "0.86.0"
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/foundation@0.85.0":
101-
version "0.85.0"
102-
resolved "https://registry.yarnpkg.com/@aztec/foundation/-/foundation-0.85.0.tgz#71dd5a8dd08784c246cf3bf6dd21fab6f36338fd"
103-
integrity sha512-aJZsMswdL8TlJW+FpgUt9jToxGMEPdxYwE5SLwA9gw2n2DfIdpCtNW5GIbazqwASMchpzWdoxExNyT05efNY9A==
100+
"@aztec/foundation@0.86.0":
101+
version "0.86.0"
102+
resolved "https://registry.yarnpkg.com/@aztec/foundation/-/foundation-0.86.0.tgz#cd6854bcc364c24093547a0d80ab9d5a84fb1d65"
103+
integrity sha512-7jWbH4oZrMPMLuKEKPyu7fMa5wk2eLZVaKZR2TtLPUQKlJdtgA/UuLvRirmFEDlsIF22AkorHfQmFxBSxzogoQ==
104104
dependencies:
105-
"@aztec/bb.js" "0.85.0"
105+
"@aztec/bb.js" "0.86.0"
106106
"@koa/cors" "^5.0.0"
107107
"@noble/curves" "^1.2.0"
108108
bn.js "^5.2.1"
@@ -125,43 +125,56 @@
125125
undici "^5.28.5"
126126
zod "^3.23.8"
127127

128-
"@aztec/l1-artifacts@0.85.0":
129-
version "0.85.0"
130-
resolved "https://registry.yarnpkg.com/@aztec/l1-artifacts/-/l1-artifacts-0.85.0.tgz#b43b6e53796c5a4ea771ea73eade967b632275f8"
131-
integrity sha512-YKv/6JyX4X03qNaEKVJXE/yRqrorTUVhtbcYDr0ZAMP/L7LLW4k/U6N1z0kzhk3ICFrvybnfglRK/Oz/yW7F0Q==
128+
"@aztec/l1-artifacts@0.86.0":
129+
version "0.86.0"
130+
resolved "https://registry.yarnpkg.com/@aztec/l1-artifacts/-/l1-artifacts-0.86.0.tgz#e8ccdca7691253da1fcf9cd4555d1b28b63355d6"
131+
integrity sha512-qvEzljtfH7Z6EYwp8m/Enzl2bhYZap8TgEM8AKzYVjo3Mi9OW9jFLhQwUzQ6o6X1PzTDb1/k4GYQSR1dxVGsmg==
132132
dependencies:
133133
tslib "^2.4.0"
134134

135-
"@aztec/noir-contracts.js@0.85.0":
136-
version "0.85.0"
137-
resolved "https://registry.yarnpkg.com/@aztec/noir-contracts.js/-/noir-contracts.js-0.85.0.tgz#48fbe1290c5b7a0cfcd3784594259d6757f89da6"
138-
integrity sha512-S1udPVVe71YOSuzP7w83jO+sJOtRp0Q56w0X9KIKmt7SnPCGOx7+q+rglDcNM7LdXsao+UHNSZBmy5lsC8WsUg==
135+
"@aztec/noir-contracts.js@0.86.0":
136+
version "0.86.0"
137+
resolved "https://registry.yarnpkg.com/@aztec/noir-contracts.js/-/noir-contracts.js-0.86.0.tgz#528058a56d9255bb4a08bf94d9c94a0becabf3bf"
138+
integrity sha512-O3msV66+yNAELiEcYnHaoNhm7f8D2EMDXoYIrgN1sSWsDL2fnMs/7KDEhqk85mHWzEIARbMmQFoLGnFC/L8JhA==
139139
dependencies:
140-
"@aztec/aztec.js" "0.85.0"
140+
"@aztec/aztec.js" "0.86.0"
141141
tslib "^2.4.0"
142142

143-
"@aztec/protocol-contracts@0.85.0":
144-
version "0.85.0"
145-
resolved "https://registry.yarnpkg.com/@aztec/protocol-contracts/-/protocol-contracts-0.85.0.tgz#1264ef6d216ba0ce475aeea2905384c2a2929187"
146-
integrity sha512-zHRF9tkcGUFFKqDpgqYedsSYVBNUrkh7LYd2eEdT6u2nRZaLnFiUIF8L73fC6jXhJNXrhHJs9VJEHbNsA+yeyg==
143+
"@aztec/noir-noirc_abi@0.86.0":
144+
version "0.86.0"
145+
resolved "https://registry.yarnpkg.com/@aztec/noir-noirc_abi/-/noir-noirc_abi-0.86.0.tgz#b3ea5dbf6317eeaee03c0961b7594b0bb432ace0"
146+
integrity sha512-HgCm2slJHguMNQmBJfFlkrJ66k9hv5uj+GOY+E2OfqCMCVPV+ORdAXxE+gZq+u5CFxT7jhk05i5g8hYHc6+Ziw==
147147
dependencies:
148-
"@aztec/constants" "0.85.0"
149-
"@aztec/foundation" "0.85.0"
150-
"@aztec/stdlib" "0.85.0"
148+
"@aztec/noir-types" "0.86.0"
149+
150+
151+
version "0.86.0"
152+
resolved "https://registry.yarnpkg.com/@aztec/noir-types/-/noir-types-0.86.0.tgz#f07fd5133f00ffbb1a34f181babd8ef14e652339"
153+
integrity sha512-+Q7Ql8SFklbtG1oIN8+6BNLEvXQRji9kmmgT2pARQwMNa3tfU3ybPUHTPMpapcB58Hbn1Sv84TpZvr9cweycEA==
154+
155+
156+
version "0.86.0"
157+
resolved "https://registry.yarnpkg.com/@aztec/protocol-contracts/-/protocol-contracts-0.86.0.tgz#10b965cf9ae6db17357dca8ecaae27b95495a976"
158+
integrity sha512-dAUlqROtbjb/yvL6IzaDb43WigdUuZ4+Yx2tY6I1NWcy41S7BO4ClH49zjIemozcClyn9qKIpEGokJFej7lMLg==
159+
dependencies:
160+
"@aztec/constants" "0.86.0"
161+
"@aztec/foundation" "0.86.0"
162+
"@aztec/stdlib" "0.86.0"
151163
lodash.chunk "^4.2.0"
152164
lodash.omit "^4.5.0"
153165
tslib "^2.4.0"
154166

155-
156-
version "0.85.0"
157-
resolved "https://registry.yarnpkg.com/@aztec/stdlib/-/stdlib-0.85.0.tgz#4e3f4cca7b2132f51d0cc8782e06d9b4150315f8"
158-
integrity sha512-UoxYKVkB+L5lnpKXXHbGfB2ABWww2hMJO/3UH/hW+OXNyVVoEefWz33RWDE09mk1VKhpqP33K0cCmJcHbErACA==
159-
dependencies:
160-
"@aztec/bb.js" "0.85.0"
161-
"@aztec/blob-lib" "0.85.0"
162-
"@aztec/constants" "0.85.0"
163-
"@aztec/ethereum" "0.85.0"
164-
"@aztec/foundation" "0.85.0"
167+
168+
version "0.86.0"
169+
resolved "https://registry.yarnpkg.com/@aztec/stdlib/-/stdlib-0.86.0.tgz#43df9fc5e6a812e96beeec30a23da8a144e48fcf"
170+
integrity sha512-8oeGazLUGx6rtKAIz8GOUgSwZg4uRAYhVbRREYd79JGiwu96hVQ3suTlKdHK4gc1EYOugvuUpKS+8eAKC3rv9g==
171+
dependencies:
172+
"@aztec/bb.js" "0.86.0"
173+
"@aztec/blob-lib" "0.86.0"
174+
"@aztec/constants" "0.86.0"
175+
"@aztec/ethereum" "0.86.0"
176+
"@aztec/foundation" "0.86.0"
177+
"@aztec/noir-noirc_abi" "0.86.0"
165178
"@google-cloud/storage" "^7.15.0"
166179
lodash.chunk "^4.2.0"
167180
lodash.isequal "^4.5.0"
@@ -1145,10 +1158,10 @@ atomic-sleep@^1.0.0:
11451158
resolved "https://registry.yarnpkg.com/atomic-sleep/-/atomic-sleep-1.0.0.tgz#eb85b77a601fc932cfe432c5acd364a9e2c9075b"
11461159
integrity sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==
11471160

1148-
axios@^1.7.2:
1149-
version "1.7.7"
1150-
resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.7.tgz#2f554296f9892a72ac8d8e4c5b79c14a91d0a47f"
1151-
integrity sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==
1161+
axios@^1.8.2:
1162+
version "1.8.4"
1163+
resolved "https://registry.yarnpkg.com/axios/-/axios-1.8.4.tgz#78990bb4bc63d2cae072952d374835950a82f447"
1164+
integrity sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==
11521165
dependencies:
11531166
follow-redirects "^1.15.6"
11541167
form-data "^4.0.0"

0 commit comments

Comments
 (0)