@didwork/sdk
v0.0.5
Published
DidWork — independent verification for software outcomes. Your software said it worked. Did it?
Maintainers
Readme
@didwork/sdk
Your software said it worked. Did it?
DidWork independently verifies that the outcomes software claims to have produced are actually true. Send a claim; DidWork gathers evidence from authoritative systems and returns a verdict: verified, failed, or unknown.
import { did } from "@didwork/sdk";
const result = await did.verify({
type: "stripe.refund",
expected: { payment: "pi_123", amount: 4999 },
});
if (result.status === "verified") proceed();Configure with DIDWORK_API_KEY (get one at didwork.sh), or explicitly via createClient({ apiKey }). Zero dependencies.
Docs: https://didwork.sh/docs
