Build with Ground Truth.
Welcome to the Signal protocol documentation. Learn how our decentralized human-oracle network captures, verifies, and delivers real-world physical telemetrics directly to your AI agents on Solana.
Protocol Architecture
Signal is an asynchronous physical oracle network designed for institutional-grade reliability. By decoupling edge data capture from on-chain consensus, we achieve sub-second telemetrics while maintaining the strict deterministic integrity required for automated AI trading and supply chain protocols.
Edge Oracle Nodes
Telegram-native nodes performing local cryptographic hashing of physical data to ensure security at the first-mile.
Consensus Pipeline
Multi-tiered verification logic using Vision AI and spatial consensus to commit verified states to the Solana Truth Ledger.
Proof-of-Physical Work
Data authenticity is the foundation of the Signal protocol. Every submission must pass a rigorous verification engine before being admitted to the global state:
Crypto-Economics
Bonded Staking
Operators must bond 0.05 SOL per node. This stake acts as insurance for the accuracy of their reported telemetrics.
Dynamic Rewards
Verified submissions earn instant USDC payouts directly to the node's Solana wallet, incentivizing density in high-demand zones.
Quick Start
AI Agent SDK
The Signal SDK provides AI agents with a type-safe interface to query the physical world. Fetch real-time gas prices, energy availability, and retail inventory as verifiable on-chain objects.
AI Sensor Sandbox
Simulate an autonomous agent requesting ground-truth sensors. This playground demonstrates how our SDK abstracts complex PoPW verification into a single sensor stream.
import { SignalClient } from '@signal-network/sdk';
// Initialize the secure oracle client
const client = new SignalClient({
apiKey: 'SIGNAL_PRO_2026',
endpoint: 'https://api.signal-oracle.io'
});
// Query the global truth ledger
const report = await client.getLatestVerification({
category: 'RETAIL_PRICE_FUEL',
location: 'PARIS_ZONE_1'
});
console.log(`Verified state: $${report.value}`);
Anti-Abuse Measures
To protect the integrity of the data market, Signal employs a multi-vector security engine. Our Duplicate Entry Check system ensures that every unique data point is only rewarded once.