Developers
One SDK.
Every runtime.
TypeScript, Python, Go, and Rust. REST under the hood. ENS-compatible on the wire.
quickstart.tslive
import { qguid } from "@qguid/sdk";
const client = qguid({ apiKey: process.env.QGUID_KEY });
// Issue a quantum-backed identifier
const id = await client.issue({
name: "orca",
alg: "ML-DSA-65",
});
// id.qguid -> "0x9e3f-c7a1-44b2-8e0d-f1c2a8b3d4e5"
// id.name -> "orca.qguid.eth"
// id.signature -> Dilithium-3 signature, NIST FIPS 204
await client.resolve("orca.qguid.eth");