Provably fair randomness & verifiable AI execution infrastructure
https://api.fairseal.io
curl -X POST https://api.fairseal.io/api/v1/games/sicbo/bet \
-H "Content-Type: application/json" \
-d {bet_type: big, amount: 10}
{
"status": "resolved",
"game_id": "7f0a6f6e...",
"result": {
"outcome": { "die1": 4, "die2": 5, "die3": 2, "total": 11 },
"won": true,
"payout": "10.00"
},
"pool_served": true
}
curl https://api.fairseal.io/api/v1/verify/7f0a6f6e...
{
"game_id": "7f0a6f6e...",
"verified": true,
"proof": {
"vdfEpoch": 42,
"rngValue": "e358...",
"derivation": "HMAC-SHA256(vdf_output, game_id || player_seed)"
},
"replay_steps": [
{ "step": 1, "action": "bet_committed", ... },
{ "step": 2, "action": "vdf_epoch_published", ... },
{ "step": 3, "action": "randomness_derived", ... },
{ "step": 4, "action": "dice_rolled", ... },
{ "step": 5, "action": "bet_evaluated", ... }
]
}
npm install @fairseal/core @fairseal/auto
import OpenAI from openai;
import { auto } from @fairseal/auto;
const client = auto(new OpenAI());
// Every AI call now emits a Verifiable Execution Object
The VEO-2 RFC defines the Verifiable Execution Object standard — a format for recording, proving, and explaining AI decisions.
Fairseal — Open infrastructure for verifiable AI execution · GitHub · MIT License