Find a documentation page
TEE-delegated SWQoS signing
Everything you need to lease, sell, or integrate staked QUIC capacity: guides, SDKs, API reference, and the security model, all in one place.
Lease capacity and route a transaction in a few lines with the TypeScript SDK.
import { StakedQuicClient } from "@staked-quic/sdk";
const client = new StakedQuicClient({ token: process.env.SQ_TOKEN });
// Lease a validator's signing capacity for the current epoch
const lease = await client.leases.create({
validatorId: "01HX...",
epochStart: 0,
epochCount: 1,
});
// Route a transaction through the staked-QUIC path
await client.send(tx, { lease: lease.id });