
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
VERIA TypeScript SDK — Solana-native ZK Coprocessor. Few dots. Whole truth.
TypeScript SDK for VERIA — Solana-native ZK Coprocessor.
Few dots. Whole truth.
npm install @veria/sdk @solana/web3.js
import { VeriaClient, VeriaVerifier } from '@veria/sdk';
import { Connection, Keypair } from '@solana/web3.js';
const client = new VeriaClient({
apiUrl: 'https://api.veria.fun',
programId: process.env.VERIA_PROGRAM_ID!,
});
// Submit a folded proof job
const fold = await client.fold({
circuit: 'scoring',
input: { scores: [80, 90, 70], weights: [1, 2, 1], count: 3 },
subProofCount: 100,
});
console.log(`Cost: ${fold.costSol} SOL Savings: ${fold.savingsPct.toFixed(2)}%`);
// Verify on Solana mainnet
const verifier = new VeriaVerifier({
connection: new Connection('https://api.mainnet-beta.solana.com'),
programId: process.env.VERIA_PROGRAM_ID!,
});
const submitter = Keypair.generate().publicKey;
const tx = verifier.buildVerifyTx({
submitter,
circuit: 'scoring',
proofBytes: fold.proofBytes,
publicInputs: fold.publicInputs,
});
// Sign & send tx with your wallet, then:
const record = await verifier.fetchRecord(
verifier.recordPda(fold.proofBytes, fold.publicInputs),
);
console.log(record);
| ID | Name | Max input | Tests |
|---|---|---|---|
| 1 | Scoring | 64 | 5 |
| 2 | Aggregation | 4096 | 4 |
| 3 | Median | 256 | 5 |
| 4 | Sort | 256 | 4 |
| 5 | ML Inference | 32 | 4 |
VeriaClient — HTTP client for the Compute API (/fold, /verify).VeriaVerifier — Anchor verifier program instruction builder + PDA derivation + account fetch.CIRCUITS — circuit registry (numeric id, schema, test count).proofHash, publicInputsHash — SHA-256 helpers matching the on-chain program.const c = new VeriaClient();
console.log(c.computeCost(100));
// {
// subProofs: 100,
// directTotalSol: 0.5,
// foldedSol: 0.0001,
// savingsPct: 99.98
// }
Apache-2.0.
FAQs
VERIA TypeScript SDK — Solana-native ZK Coprocessor. Few dots. Whole truth.
We found that @veria/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.
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.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.