
Supported Networks & Protocols
Acceso supports networks and protocols through domain services. Each domain owns parsing, normalization, caching, and upstream failover.
What “support” means (practically)
You should expect these guarantees when a network or protocol is supported:
Normalized schemas (same field names and types across venues).
App-ready primitives (transfers, balances, market data, derived views).
Consistent delivery (REST + SDKs, plus WebSockets/webhooks where relevant).
Operational safety (timeouts, retries, caching, and consistent errors).
Related design docs
Supported today
Acceso provides native Solana primitives and decoded, app-friendly views.
Coverage you can rely on
Accounts and account state reads.
Token standards and balances (SPL-focused normalization).
Transactions parsed into higher-level events (transfers, fees, instructions).
Program-level interactions surfaced as structured data (where applicable).
Why this matters
You write fewer “if provider A vs provider B” branches.
You can swap RPC vendors without rewriting client logic.
Acceso integrates DEX and liquidity venues behind one normalized surface.
Typical outputs
Aggregated pricing and cross-venue trade feeds.
OHLCV candles and derived aggregates.
Liquidity pool stats and protocol-level volume views (when supported).
Venue categories
AMM-based DEXs.
Aggregator routing systems.
Launch and early-stage venues (when supported).
Acceso integrates prediction market infrastructure to expose structured market data.
Typical outputs
Market metadata (active + resolved).
Pricing and probability views.
Orderbook depth and trade history.
Positions and related account-level views (when supported).
If you specifically need Polymarket coverage, use the same integration surface. The domain service handles vendor specifics.
How you consume coverage
Pick the delivery surface based on update frequency and latency needs.
REST + SDKs for snapshots, historical queries, and analytics reads.
WebSockets for low-latency streaming.
Webhooks for event-driven workflows and async processing.
Avoid high-frequency polling for real-time needs. Use streams or webhooks. This reduces cost and rate-limit pressure.
How we add a new network, protocol, or venue (without breaking clients)
Acceso expands coverage behind stable contracts. This is the usual rollout shape:
For how we evolve the platform over time: Platform Evolution Strategy
Last updated