Provably Correct Stream Execution.
The world's first marketplace for formally verified data processors.
The world's first marketplace for formally verified data processors.
Unlike traditional scripts, our processors are mathematically proven to:
This isn't runtime validation. It's compile-time proof. If it compiles, it's correct.
In high-stakes environments—esports, wagering, competitive rankings—"close enough" isn't an option. A bug in a stat calculation can invalidate entire tournaments.
Formal verification provides a built-in audit trail. Every computation is traceable, reproducible, and provably free from nefarious side-effects.
Execute any verified function over any live stream with a single POST request. The API handles authentication, stream resolution, and result normalization.
POST api.dreamlands/execute
{
"function": "Lia.Community.Football.AverageYards",
"arguments": ["stream://football-game-001"]
}
// Response
{
"result": 4.7,
"execution_ms": 12
}Dreamlands treats events as first-class data structures. Define your schema in Gaunt, and the compiler generates type-safe SDKs for every platform.
module Tristan.Community.Tetris.Event;
obj GameOver is Event {
meta {
let String NormalName = "Game Over";
let Array[String, 1] NormalFieldNames =
Array[String, 1].new("Lines Cleared");
}
fields {
let Int32 lines_cleared = 0;
}
}Gaunt schemas compile to type-safe SDKs in every supported language. Events are validated at compile time, not runtime. Subscribers get the same type safety. Breaking changes are caught before production.
Players see exactly what's being tracked. No hidden telemetry. Event definitions are public. Privacy by design, transparency by default.
Events are validated before they leave the client. Malformed data never enters the stream. Integrity checking ensures subscribers get authentic, clean data from the source.
Define your event schema in Gaunt. Run the compiler. Get type-safe SDKs for every platform. The same events, the same type safety, across C++, C#, TypeScript, GameMaker, Lua, Node.js, and in the Browser.