Skip to content
@Telocel-Labs

Telocel Labs

Telocel Labs

Building open infrastructure for the Stellar ecosystem

X (Twitter) GitHub Stars


What we build

Telocel Labs creates production-grade developer tooling and indexing infrastructure for the Stellar network — specifically targeting the Soroban smart contract platform.

Our goal: give Stellar developers the same quality of data infrastructure that EVM developers take for granted.


Projects

Trident — Soroban Event Indexer

Real-time historical event indexing for Soroban smart contracts

Trident continuously streams events from Stellar RPC, stores them in Postgres, and exposes them via a REST API and WebSocket subscriptions — so developers can query contract history and receive live updates without running their own infrastructure.

Stack: Rust · Go · TypeScript · PostgreSQL · Redis

Component Description
crates/indexer Rust — polls Stellar RPC, parses XDR, writes to Postgres + Redis
crates/api Rust — gRPC interface over Postgres
services/api Go — REST + WebSocket API for SDK clients
sdk/typescript TypeScript — @trident-indexer/sdk npm package

Quick start:

# Clone and run the full stack
git clone https://github.com/Telocel-Labs/Trident
cd Trident
docker compose up

SDK usage:

import { TridentClient } from "@trident-indexer/sdk";

const client = new TridentClient({
  apiUrl: "https://api.trident.telocel.io",
  apiKey: "your-api-key",
});

// Query historical events
const { events } = await client.queryEvents({
  contractId: "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM",
  ledgerFrom: 50000,
  ledgerTo: 51000,
});

// Subscribe to live events
const sub = client.subscribeToContract({
  contractId: "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM",
  onEvent: (event) => console.log(event),
});

Contributing

All Telocel Labs projects are open source. Check each repo's issues for open tasks tagged phase-1 — these are actively being worked on and contributions are welcome.

  • Found a bug? Open an issue.
  • Want to contribute? Check the CONTRIBUTING.md in the relevant repo.

Built on Stellar · Powered by open source

Popular repositories Loading

  1. Trident Trident Public

    Rust

  2. .github .github Public

    Telocel Labs org profile

Repositories

Showing 2 of 2 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…