Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@aztec/bb.js
Advanced tools
Prover/verifier executable and API for barretenberg. Default cli arguments are appropriate for running within Noir project structures.
Prover/verifier executable and API for barretenberg. Default cli arguments are appropriate for running within Noir project structures.
Max circuit size is 2^19 gates (524,288). This is due to the underlying WASM 4GB memory limit. This should improve with future proving systems, and/or introduction of wasm64.
If running from node, or within browser where you can set shared memory COOP/COEP headers, multithreading is enabled. Note there are two independent WASM builds, one with threading enabled and one without. This is because the shared memory flag is set within the WASM itself. If you're running in a context where you can't have shared memory, we want to fallback to single threaded performance.
The following output is from bench_acir_tests.sh
script.
Table represents time in ms to build circuit and proof for each test on n threads. Ignores proving key construction.
+--------------------------+------------+---------------+-----------+-----------+-----------+-----------+-----------+
| Test | Gate Count | Subgroup Size | 1 | 4 | 16 | 32 | 64 |
+--------------------------+------------+---------------+-----------+-----------+-----------+-----------+-----------+
| sha256 | 38799 | 65536 | 18764 | 5116 | 1854 | 1524 | 1635 |
| ecdsa_secp256k1 | 41049 | 65536 | 19129 | 5595 | 2255 | 2097 | 2166 |
| ecdsa_secp256r1 | 67331 | 131072 | 38815 | 11257 | 4744 | 3633 | 3702 |
| schnorr | 33740 | 65536 | 18649 | 5244 | 2019 | 1498 | 1702 |
| double_verify_proof | 505513 | 524288 | 149652 | 45702 | 20811 | 16979 | 15679 |
+--------------------------+------------+---------------+-----------+-----------+-----------+-----------+-----------+
To install the package globally for running as a terminal application:
npm install -g @aztec/bb.js
Assuming $(npm prefix -g)/bin
is in your PATH
, you can now run the command bb.js
.
Run bb.js
for further usage information, you'll see e.g.
% bb.js
Usage: bb.js [options] [command]
Options:
-v, --verbose enable verbose logging (default: false)
-h, --help display help for command
Commands:
prove_and_verify [options] Generate a proof and verify it. Process exits with success or failure code.
prove [options] Generate a proof and write it to a file.
gates [options] Print gate count to standard output.
verify [options] Verify a proof. Process exists with success or failure code.
contract [options] Output solidity verification key contract.
write_vk [options] Output verification key.
proof_as_fields [options] Return the proof as fields elements
vk_as_fields [options] Return the verification key represented as field elements. Also return the verification key hash.
help [command] display help for command
To install as a package to be used as a library:
npm install @aztec/bb.js
or with yarn
yarn add @aztec/bb.js
To create the API and do a blake2s hash:
import { Crs, Barretenberg, RawBuffer } from './index.js';
const api = await Barretenberg.new(/* num_threads */ { threads: 1 });
const input = Buffer.from('hello world!');
const result = await api.blake2s(input);
await api.destroy();
All methods are asynchronous. If no threads are specified, will default to number of cores with a maximum of 32.
If 1
is specified, fallback to non multi-threaded wasm that doesn't need shared memory.
See src/main.ts
for larger example of how to use.
It's recommended to use a dynamic import. This allows the developer to pick the time at which the package (several MB in size) is loaded and keeps page load times responsive.
const { Barretenberg, RawBuffer, Crs } = await import('@aztec/bb.js');
Multithreading in bb.js requires SharedArrayBuffer
to be enabled. It is only enabled in browsers if COOP and COEP headers are set by the server. Read more here.
You can configure your server to set these headers for pages that perform proof generation. See this example project that implements multi-threaded browser proving, which contains the below Next.js config:
{
...
async headers() {
return [
{
source: '/:path*',
headers: [
{ key: 'Cross-Origin-Embedder-Policy', value: 'require-corp' },
{ key: 'Cross-Origin-Opener-Policy', value: 'same-origin' },
],
},
];
},
}
Note that adding COOP and COEP headers will disable loading of external scripts, which might be required by your application.
You can enable these headers for specific pages that perform proof generation, but this may be challenging, especially in single-page applications. One workaround is to move the proof generation to a separate page, load it in an invisible iframe within your main application, and then use postMessage
to communicate between the pages for generating proofs.
Create a symlink to the root script bb.js-dev
in your path. You can now run the current state of the code from
anywhere in your filesystem with no yarn build
required.
If you change the C++ code run yarn build:wasm
to rebuild the webassembly.
To run the tests run yarn test
.
To run a continuous "stress test" run yarn simple_test
to do 10 full pk/proof/vk iterations. This is useful for
inspecting memory growth as we continuously use the library.
FAQs
Prover/verifier executable and API for barretenberg. Default cli arguments are appropriate for running within Noir project structures.
The npm package @aztec/bb.js receives a total of 1,612 weekly downloads. As such, @aztec/bb.js popularity was classified as popular.
We found that @aztec/bb.js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.