The Bridge Oracle Network is now live in development testing, delivering real-time aggregated price feeds across crypto, FX, and commodity markets.
What's Live
The oracle aggregates prices from three institutional-grade sources running in parallel:
- Binance — 19 trading pairs, 0.90 confidence score, real-time spot prices
- HTX — 18 trading pairs, 0.88 confidence score, with 24h high/low/volume data
- Chainlink — 6 on-chain price feeds, 0.95 confidence score, cryptographic attestation via Arbitrum
All prices are aggregated using median filtering, outlier rejection (50% deviation threshold), and confidence-weighted averaging — delivering settlement-grade accuracy for RTGS, custody, and cross-border operations.
How It Works
The oracle runs a continuous price feed scheduler that queries all providers every 5 seconds. Each price update goes through:
- Multi-source fetch — all providers queried in parallel
- Outlier rejection — prices deviating more than 50% from median are rejected
- Confidence weighting — higher-confidence sources (Chainlink > Binance > HTX) carry more weight
- Stale detection — prices older than 5 minutes are flagged
- Redis distribution — aggregated prices published via Redis pub/sub for real-time consumption
Current Coverage
| Pair | Sources | Status | |------|---------|--------| | BTC/USD | Binance, HTX, Chainlink | Live | | ETH/USD | Binance, HTX, Chainlink | Live | | SOL/USD | Binance, HTX | Live | | USDT/USD | Binance, HTX | Live | | USDC/USD | Binance, HTX, Chainlink | Live | | LINK/USD | Binance, HTX, Chainlink | Live | | XRP/USD | Binance, HTX | Live | | AVAX/USD | Binance, HTX | Live | | DOT/USD | Binance, HTX | Live |
Public API
The oracle price API is publicly accessible — no API key required for price data:
GET /api/v1/oracle/prices
GET /api/v1/oracle/prices/{pair}
GET /api/v1/oracle/health
GET /api/v1/oracle/sources
View live prices on our Market Data page.
What's Next
- Additional FX pairs (EUR/USD, GBP/USD, PKR/USD, AED/USD)
- Commodity feeds (XAU/USD, XAG/USD)
- Solana on-chain oracle integration via Pyth Network
- WebSocket streaming for real-time consumers
- NAV calculation for tokenized assets
Status
This is a development testing deployment. The oracle is running on production infrastructure but price data should not be used for trading decisions until the system exits testing phase.