v1.0.4 Release

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.

Core Concepts

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.

Verification

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:

Spatial Consensus
Cross-referencing reports within a geofence to filter noise.
Image Fingerprinting
SHA-256 collision detection prevents data farming.
Vision AI Extraction
High-precision OCR extracting raw physical variables.
Incentives

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.

Developer

Quick Start

Bash
pnpm install @signal-network/sdk @solana/web3.js
Integration

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.

Capabilities
Price Discovery
Visual Consensus
Inventory Proofs
agent-integration.ts
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}`);
Security

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.

# Slashing Condition: Media Collision
1. Image Buffer Hashing (Blake3)
2. Global Hash Ledger Comparison
3. IF Match: Discard Submission & Burn Stake
4. IF Unique: Admission to Consensus Layer