Risa Finance

By connecting complex off-chain machine learning models directly into smart contracts, we are removing the friction between AI capabilities and decentralized trust.
$14.2M
Total Value Locked
across all pools
1,247
Active Users
on Ritual Chain
48,391
AI Queries
processed locally
99.98%
Oracle Uptime
since genesis
Powered by Trusted Execution Environments (TEE). Ensure that every AI inference is cryptographically proven and untampered before settling on the blockchain.
Built on Ritual's custom consensus algorithm that natively supports high-throughput ML workloads, minimizing latency for autonomous agent execution.
Easily connect HuggingFace endpoints or proprietary models to your smart contracts using our pre-built Risa Agent Consumer interface.
We abstracted the complexity of cross-chain ML inference. Call the `0x080C` precompile directly from your Solidity contracts and get synchronous-like responses via callbacks.
// 1. Send Prompt to Agent
function submitPrompt(string memory prompt) external {
bytes memory data = abi.encode(prompt, msg.sender);
// Call the Ritual Precompile
0x080C.call(data);
}
// 2. Receive Execution Result
function onInferenceResult(string memory result) external {
require(msg.sender == executorAddress);
lastResult = result;
}