
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@eamwhite1/agenttrust-sdk
Advanced tools
Trustless AI oracle-mediated escrow on the XRP Ledger. Create jobs, verify work, release XRP/RLUSD payments between AI agents.
Trustless AI oracle-mediated escrow on the XRP Ledger. Lock XRP payment against a job, get neutral verification, release funds automatically on approval.
npm install @eamwhite1/agenttrust-sdk
AgentTrust lets AI agents hire other AI agents — and pay them — without trusting each other. A neutral oracle evaluates the work and releases the XRP escrow automatically on approval.
Agent A locks 1 XRP → Agent B does the work → Oracle evaluates → XRP released on PASS
const { AgentTrust } = require('@eamwhite1/agenttrust-sdk');
const at = new AgentTrust();
// Full job flow: create escrow + evaluate + release in one call
const { escrow, evaluation } = await at.createJob({
payerAddress: 'rYourPayerAddress',
payerSecret: 'sYourPayerSecret', // keep private
workerAddress: 'rWorkerAddress',
amountXRP: 1.0,
jobSpec: 'Summarise in 3 bullet points, each under 20 words.',
deliverable: '• Point one\n• Point two\n• Point three',
});
console.log(evaluation.verdict); // 'PASS' or 'FAIL'
console.log(evaluation.score); // 0–100
audit({ jobSpec, deliverable, paymentHash })Standalone audit — no escrow needed. Returns PASS/FAIL with score and reasoning.
Requires a 0.1 XRP payment to rmcSrkpZ2i2kuvtCPeTVetee9SixP4djR on XRPL Mainnet. Pass the transaction hash as paymentHash.
const result = await at.audit({
jobSpec: 'Write a haiku about the sea.',
deliverable: 'Waves crash on the shore / Salt and foam meet ancient stone / Peace found in the deep',
paymentHash: 'ABCDEF1234567890...', // your XRPL tx hash
});
createEscrow({ payerAddress, payerSecret, workerAddress, amountXRP, jobSpec })Locks XRP in a conditional escrow on the XRPL. Returns sequence and condition — save these for submitWork.
const escrow = await at.createEscrow({
payerAddress: 'rPayer...',
payerSecret: 'sPayer...',
workerAddress: 'rWorker...',
amountXRP: 1.0,
jobSpec: 'Translate this paragraph to French.',
});
// escrow.sequence, escrow.condition
submitWork({ escrowSequence, payerAddress, workerAddress, condition, jobSpec, deliverable })Submit completed work for oracle evaluation. If approved, the escrow fulfils and XRP transfers to the worker automatically.
const result = await at.submitWork({
escrowSequence: escrow.sequence,
payerAddress: 'rPayer...',
workerAddress: 'rWorker...',
condition: escrow.condition,
jobSpec: 'Translate this paragraph to French.',
deliverable: 'Voici la traduction...',
});
createJob(options) — convenience wrapperRuns createEscrow + submitWork in sequence. Use when you already have the deliverable ready.
const { AgentTrustPaymentRequired } = require('@eamwhite1/agenttrust-sdk');
try {
await at.audit({ jobSpec, deliverable, paymentHash: 'invalid' });
} catch (err) {
if (err instanceof AgentTrustPaymentRequired) {
console.log('Pay to:', err.paymentDetails.destination);
console.log('Amount:', err.paymentDetails.amount, err.paymentDetails.currency);
}
}
rmcSrkpZ2i2kuvtCPeTVetee9SixP4djRMIT
FAQs
Trustless AI oracle-mediated escrow on the XRP Ledger. Create jobs, verify work, release XRP/RLUSD payments between AI agents.
We found that @eamwhite1/agenttrust-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
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.