Search docs

Find a documentation page

TEE-delegated SWQoS signing

Build on the 2QUIC Marketplace

Everything you need to lease, sell, or integrate staked QUIC capacity: guides, SDKs, API reference, and the security model, all in one place.

4.6×
Throughput
vs vanilla TPU
24×
Confirmation
tx success rate
19×
Latency
end-to-end improvement

Quickstart

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 });

Explore the docs