
Loading...

Loading...
Live overview of the LightChain mainnet AI worker network.
Live from the LightChain mainnet worker subgraph, refreshing every 30s
Loading...
Completion = succeeded / resolved. Incomplete counts jobs taken but never finished in time: explicit timeouts plus jobs the indexer left in "Acknowledged" for over 10 minutes (it rarely marks them timed-out, so these would otherwise be missed). Latency is acknowledged to completed; earnings are settled worker share over the sampled window.
import { LightNode } from "lightnode-sdk";
const ln = new LightNode("mainnet");
// Per-model performance: completion, p50/p95, incomplete, earnings
const models = await ln.getModelStats();
for (const m of models) {
console.log(m.name, m.total, `completion=${m.completionRate}`, `p50=${m.p50}s`);
}