TESTNET — Base Sepolia

BlindCompute

Confidential, verifiable AI inference — settled on Base.

Encrypted in. Verified out. No one sees your data.

Network
Base Sepolia
Status
MVP in Progress
Gateway
x402-gated

Architecture

Client / AI Agent
        |
        | POST /v1/chat/completions
        v
  [BlindCompute Gateway]  <-- x402 USDC payment on Base
        |
        | encrypted request
        v
  [Confidential Worker]   <-- GPU TEE (Intel TDX + NVIDIA H100 CC)
        |
        | output + attestation quote
        v
  [AttestationVerifier]   <-- Automata DCAP on Base Sepolia
        |
        v
  [InferenceReceipts]     <-- on-chain receipt anchored
        |
        v
  Client receives: private result + cryptographic proof

Quick Start

# Install SDK
npm install @blindcompute/sdk

# Run confidential inference
import { BlindComputeClient, createWalletFromPrivateKey } from "@blindcompute/sdk";

const wallet = createWalletFromPrivateKey(process.env.PRIVATE_KEY);
const client = new BlindComputeClient({
  baseURL: "https://gateway.blindcompute.xyz",
  walletClient: wallet,
});

const response = await client.chat.completions.create({
  model: "meta-llama/Llama-3.1-8B-Instruct",
  messages: [{ role: "user", content: "Your private prompt here" }],
});
Gateway Health·BaseScan Sepolia·@BlindCompute