The tape, in your warehouse, already correct.
The consolidated tape as a queryable dataset, delivered to your warehouse already corporate-action correct.
The parts you keep working around.
Building the tape yourself means writing a decoder per venue and keeping up as new ones launch.
Corporate-action logic reimplemented in dbt is where the incumbents' bug gets copied into your warehouse.
Reorgs corrected silently upstream make your audit log wrong in a way you cannot detect.
How the platform answers, point by point.
Per-venue decoders
One normalized TapeEntry across every venue, with new venues added as decoder plugins
Correctness reimplemented downstream
Sinks write corporate-action-correct rows, so your warehouse inherits the logic
Silent reorg correction
Reorgs emitted as explicit REORGED events with compensating writes on the same dedup key
One schema across every venue.
New venues arrive as decoder plugins rather than schema changes, so a dashboard built today keeps working when the fifth AMM launches.
POSTrpc.robinhoodrpc.io
request
{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_blockNumber",
"params": []
}response4.2 ms
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x7b2a4f1"
}eth_blockNumber shown; the full eth_* read set, eth_getLogs, receipts, and eth_sendRawTransaction work the same way: one key header, standard everything else.
Sinks that write correctness, not raw rows.
Multiplier logic is applied on write, so your warehouse inherits it instead of you reimplementing it in dbt — which is exactly where the incumbents' bug gets copied downstream.
Read the docs-- The tape lands in ClickHouse already multiplier-aware.-- ReplacingMergeTree on tape_sequence makes reorg-- compensation idempotent: no dedup logic on your side. SELECT token_symbol, session, countDistinct(transaction_hash) AS trades, sum(size_usd) AS notional, avgWeighted(premium_bps, size_usd) AS vw_premium_bpsFROM tapeWHERE block_time >= now() - INTERVAL 1 DAY AND underlying_market_open = 1GROUP BY token_symbol, sessionORDER BY notional DESC;The plan that fits.
Scale
$200/moRecommendedgRPC streaming, full history, and every sink.
Warehouse sinks and full history are Scale features. Build works if you query our API directly rather than replicating.
Compare both plansStop maintaining decoders.
Scale includes warehouse sinks and full history. Build works if you query our API directly rather than replicating.