Media Coordination is the core infrastructure layer of RelayStream. It acts as an abstraction and routing engine that connects decentralized storage providers, real-time streaming pipelines, dynamic metadata models, and wallet-based authentication into a single unified developer experience.
Instead of locking applications into a single vendor or monolithic CDN, RelayStream coordinates disparate decentralized technologies using open standards.
import { CoordinationEngine } from '@relaystream/core'; const engine = new CoordinationEngine({ network: 'mainnet', daLayer: '0G_DAG' }); async function coordinateAsset(assetId: string) { const routingTable = await engine.resolveRoutes(assetId); console.log(`Active Storage Providers: ${routingTable.providers.join(', ')}`); console.log(`Optimal Manifest: ${routingTable.manifestUrl}`); } coordinateAsset('relaystream.media.001');