Policy checks, wallet controls, and cryptographic audit — every approved transaction writes to a governed smart contract on-chain. Not a simulated hash. A real tx, with real gas, on X Layer testnet.
Every spend flows through the same pipeline. No shortcuts, no simulations.
Drag the slider. Watch the policy evaluate in real time.
→ Policy: OWS Spend Governance Policy → Rule: auto-approve (< $100) → txHash: 0x8f97102d...
Governed transaction dispatch. Every approved spend writes to GovernanceContract.evaluateAction(). Real gas, real txHash, real block confirmation.
GovernanceContract deployed on FVM Calibration testnet. Audit evidence anchoring via AIGovernanceStorage in progress.
Real-time governance decision anchoring to 0G decentralized storage for immediate availability.
Fully homomorphic encryption for private policy evaluation. Transaction amounts and wallet balances never exposed to servers.
Optional durable storage for agent memory, policy configurations, and run ledger alongside the JSONL hot cache.
No signup needed. The demo API key works right now on our live endpoint.
# Evaluate a spend against the active policy
curl -X POST https://cognivern.thisyearnofear.com/api/governance/evaluate \
-H "Content-Type: application/json" \
-d '{
"agentId": "demo",
"action": {
"type": "spend",
"metadata": { "amount": 50 }
}
}'{
"approved": true,
"policyId": "policy-1781185670152",
"checks": [{ "rule": "auto-approve", "passed": true }],
"txHash": "0x6942d4bf..."
}Any autonomous agent that spends, swaps, stakes, or transfers on-chain.
Enforce per-trade limits, restrict to allowlisted DEXs, cap daily volume. Every swap is policy-checked before execution.
Cap per-payment and daily totals, restrict recipient addresses. Auto-deny any attempt to send to an unknown address.
Approve deposit/withdraw within budget, block unknown protocols. Policies evaluated in under 100ms.
Enforce proposal-linked budgets, require multi-sig for large disbursements. Transaction recorded on-chain for public verification.
Watch a live spend-flow demo — see policies, governance checks, and real on-chain transactions. When you're ready, the same screens work with your own treasury.