Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiler/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lint": "NODE_NO_WARNINGS=1 eslint . --max-warnings 0"
},
"dependencies": {
"@aztec/bb.js": "0.81.0",
"@aztec/bb.js": "0.82.0",
"@noir-lang/noir_js": "workspace:*",
"@noir-lang/noir_wasm": "workspace:*",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ test_cases.forEach((testInfo) => {

const contract = await ethers.deployContract(testInfo.compiled, []);

const result = await contract.verify(proofData.proof.slice(4), proofData.publicInputs);
const result = await contract.verify(proofData.proof, proofData.publicInputs);

expect(result).to.be.true;
});
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_bb.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="0.81.0"
VERSION="0.82.0"

BBUP_PATH=~/.bb/bbup

Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ __metadata:
languageName: node
linkType: hard

"@aztec/bb.js@npm:0.81.0":
version: 0.81.0
resolution: "@aztec/bb.js@npm:0.81.0"
"@aztec/bb.js@npm:0.82.0":
version: 0.82.0
resolution: "@aztec/bb.js@npm:0.82.0"
dependencies:
comlink: "npm:^4.4.1"
commander: "npm:^12.1.0"
Expand All @@ -250,7 +250,7 @@ __metadata:
tslib: "npm:^2.4.0"
bin:
bb.js: dest/node/main.js
checksum: 10/0ef05d95590f4126d1deca033f7443e89a66c3cd8985b93fe71a2c90a570e54085deb1ab67379de1c2c7ec32e9e75532f45b7e1df194fd056a4f070cfe822acd
checksum: 10/4b4e6e32168a5dcdff70db237dda26567c16800422721e0482403581a310a98dc2f53b179ce87a2acf138ffd9ab47b0e3a2d8027787a84ba28a12d3f02b60f14
languageName: node
linkType: hard

Expand Down Expand Up @@ -18699,7 +18699,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "integration-tests@workspace:compiler/integration-tests"
dependencies:
"@aztec/bb.js": "npm:0.81.0"
"@aztec/bb.js": "npm:0.82.0"
"@noir-lang/noir_js": "workspace:*"
"@noir-lang/noir_wasm": "workspace:*"
"@nomicfoundation/hardhat-chai-matchers": "npm:^2.0.8"
Expand Down
Loading