This service runs inside an Intel TDX enclave — a hardware-isolated environment that even we cannot tamper with. You can independently verify:
Compare this hash with our source code to verify we're running the exact code you expect.
Each response includes an Arweave proof. The proof contains a commitment_hash but not the seed (for privacy). Verify like this:
random_seed from your API response
arweave_url to get the commitment_hash
SHA256(seed + request_hash)
commitment_hash → proof is valid ✓
// JavaScript/Node.js
const crypto = require('crypto');
const expected = crypto
.createHash('sha256')
.update(response.random_seed)
.update(request_hash || '')
.digest('hex');
if (expected === arweaveProof.commitment_hash) {
console.log('✓ Proof verified!');
}
Intel TDX powered verifiable randomness. Secure, hardware-enforced generation with remote attestation proofs.
NFT Mints • Gacha / Loot • Casino Games • Tournaments • PvP Selection
Open standard for machine-to-machine payments via HTTP 402 headers. Enables instant, permissionless payments across multiple chains.
Learn more →Each response includes a TEE attestation. Use the AUDIT tab to verify the hardware signature and confirm the randomness was generated in a genuine Intel TDX enclave.