
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@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
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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.