Composable, verified computation — from simple formulas to ML models. Any data source in, real-time actions out.
Working examples you can explore right now
Data, compute, and actions — connected in real-time
Query real-time data without running infrastructure. Blockchain state, market feeds, APIs — every source becomes a node on the network.
Write calculations once and they update automatically whenever data changes. Simple expressions, compiled Rust, or ZK-proven models.
Trigger real-time actions based on your calculations—from Discord alerts to on-chain transactions.
Blockchain state, market feeds, economic indicators, sensor data — every source becomes a composable node
Type-safe reads, writes, and real-time subscriptions. One client for data, compute, and actions.
// Connect to the network
import { RebarClient } from '@rebarxyz/sdk'
const client = new RebarClient('https://rpc.rebar.xyz')
// Read a live value
const price = await client.getValue<number>({
address: 'rebar1qx7...'
})
// Subscribe to real-time changes
client.watchValueUpdates(
['rebar1qx7...'],
(address) => refetch(address)
)