
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@bolyra/circuits
Advanced tools
Prebuilt Circom circuit artifacts for the Bolyra ZKP identity protocol
Prebuilt Circom circuit artifacts for the Bolyra ZKP identity protocol.
Ships .wasm witness calculators, .zkey proving keys (Groth16), and .vkey.json verification keys for all three production circuits:
npm install @bolyra/circuits
import {
getCircuitArtifacts,
getArtifactsDir,
getVerificationKey,
listAvailableCircuits,
} from '@bolyra/circuits';
// Get artifact paths for a circuit
const { wasm, zkey, vkey } = getCircuitArtifacts('HumanUniqueness');
// Use with snarkjs
const { proof, publicSignals } = await snarkjs.groth16.fullProve(
input,
wasm,
zkey,
);
// Get the verification key as parsed JSON
const vkeyJson = getVerificationKey('HumanUniqueness');
const valid = await snarkjs.groth16.verify(vkeyJson, publicSignals, proof);
// List all available circuit/system combinations
const available = listAvailableCircuits();
// [{ circuit: 'HumanUniqueness', system: 'groth16' }, ...]
// Get the artifacts directory (useful for @bolyra/sdk integration)
const dir = getArtifactsDir();
| Circuit | Groth16 | Notes |
|---|---|---|
| HumanUniqueness | Yes | Reuses Semaphore v4 ceremony (depth 20) |
| AgentPolicy | Yes | Project-specific Phase 2 ceremony |
| Delegation | Yes | Project-specific Phase 2 ceremony |
pot16.ptau (Hermez Cryptographic Ceremony, 2^16 powers).~29 MB (Groth16 artifacts only). PLONK proving keys (~146 MB each) are excluded. PLONK verification keys are included for verification-only use cases.
Note: The SDK does not yet auto-resolve artifacts from this package. Pass the artifacts directory to the SDK config manually: { circuitDir: require('@bolyra/circuits').getArtifactsDir() }. Auto-resolution is planned for a future SDK release.
Apache-2.0
FAQs
Prebuilt Circom circuit artifacts for the Bolyra ZKP identity protocol
The npm package @bolyra/circuits receives a total of 3 weekly downloads. As such, @bolyra/circuits popularity was classified as not popular.
We found that @bolyra/circuits demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.