
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
@ethersflow/sdk
Advanced tools
EthersFlow TypeScript SDK & Cloudflare Worker helpers for Multi-Model Adversarial Consensus
Official TypeScript SDK and Cloudflare Worker middleware for EthersFlow — the multi-model trust layer that verifies AI agent action directives through adversarial consensus before execution.
npm install @ethersflow/sdk
import { EthersFlow } from '@ethersflow/sdk';
const ef = new EthersFlow(process.env.ETHERSFLOW_API_KEY || 'your_api_key');
const result = await ef.verify({
agentAction: 'Transfer 5000 USDC to 0x71C... for auditing services',
personaPreset: 'financial_compliance',
agentCount: 3
});
console.log('Verified:', result.verified);
console.log('Verdict:', result.verdict_summary);
import { cloudflareVerifyGate } from '@ethersflow/sdk';
export default {
async fetch(request: Request, env: { ETHERSFLOW_API_KEY: string }) {
const isSafe = await cloudflareVerifyGate(
'Transfer 5000 USDC to wallet 0x9f',
'Vendor audit payment',
env.ETHERSFLOW_API_KEY
);
if (!isSafe) {
return new Response('Action blocked by EthersFlow Consensus Gate', { status: 403 });
}
// Proceed with execution
}
};
FAQs
EthersFlow TypeScript SDK & Cloudflare Worker helpers for Multi-Model Adversarial Consensus
The npm package @ethersflow/sdk receives a total of 5 weekly downloads. As such, @ethersflow/sdk popularity was classified as not popular.
We found that @ethersflow/sdk 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.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.