
Research
/Security News
77 Firefox Extensions Linked to Crypto Wallet and Credential Theft
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.
@bolyra/openclaw
Advanced tools
OpenClaw trust verification adapter for Bolyra — ZKP-native agent authentication
OpenClaw trust verification adapter for Bolyra — ZKP-native agent authentication.
Maps Bolyra's mutual ZKP handshake (Groth16 + PLONK) to OpenClaw's TrustVerificationResult interface, providing cryptographic agent identity verification at every OpenClaw verification point.
npm install @bolyra/openclaw @bolyra/sdk
import { createBolyraPlugin } from '@bolyra/openclaw';
import { createHumanIdentity } from '@bolyra/sdk';
// 1. Create your human identity (done once)
const human = await createHumanIdentity(mySecret);
// 2. Create the plugin with a credential resolver
const plugin = createBolyraPlugin(
human,
async (agentId) => credentialStore.get(agentId),
{ network: 'base-sepolia' }
);
// 3. Register with OpenClaw
openclaw.use(plugin);
When OpenClaw calls onAgentVerify(agentId):
TrustVerificationResult with score (0-100), grade (A-F), and DID| Dimension | Points | What it checks |
|---|---|---|
| Proof validity | 40 | Both ZKP proofs verify |
| Credential expiry | 20 | Agent credential hasn't expired |
| Permission coverage | 20 | Agent has read/write permissions |
| Nonce freshness | 10 | Session nonce within maxProofAge |
| Scope commitment | 10 | Delegation chain initialized |
createBolyraPlugin(human, resolver, {
network: 'base-sepolia', // DID network identifier
minScore: 70, // Minimum score for verified=true
maxProofAge: 300, // Cache TTL in seconds
sdkConfig: { // Passthrough to @bolyra/sdk
rpcUrl: 'https://sepolia.base.org',
registryAddress: '0x2781...',
},
});
import { verifyAgent, computeTrustScore } from '@bolyra/openclaw';
const result = await verifyAgent(human, agentCredential, { network: 'base' });
// { verified: true, score: 100, grade: 'A', did: 'did:bolyra:base:...', warnings: undefined }
FAQs
OpenClaw trust verification adapter for Bolyra — ZKP-native agent authentication
The npm package @bolyra/openclaw receives a total of 6 weekly downloads. As such, @bolyra/openclaw popularity was classified as not popular.
We found that @bolyra/openclaw 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
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.

Security News
NIST disclosed an unreleased AI tool called V-etalon and opened a broad inquiry into NVD modernization after years of automation plans produced no public enrichment system.

Security News
In his AI Council 2026 talk, Feross Aboukhadijeh covers recent package compromises, vulnerability discovery, and a more automated security model.