Retracer watches Arxium and indexes everything that happens, so your app can ask “what did this account do” without replaying chain logic itself.
✓ block 184211 · 7 actions indexed
✓ block 184212 · 12 actions indexed
✓ block 184213 · 9 actions indexed
▸ block 184214 · ingesting…
cursor corechain-devnet @ 184213
lag 0 blocks behind tipInterface
REST + gRPC
Data model
6 core tables
Coverage
Hub + every Spoke
Payloads
Any action shape
Watch
Retracer sits behind the chain and sees every block and action the moment it lands.
Index
Blocks, actions, and every address they touch — written down once, queryable forever.
Serve
Account history, block ranges, free-text search — over plain REST or gRPC, no SDK required.
Reading history straight from a node means replaying blocks yourself just to answer “what did this account do.” Retracer ingests every block and action as it lands and keeps a queryable record, so your app doesn’t have to.
It’s the same data model that already backs the Explorer and Wallet inside Arxium, extended to run against any chain in the network — the Hub and every Spoke — from one deployment. A Spoke brings its own action types; Retracer indexes them without knowing their shape in advance.
Schema
Plain REST over the same data the Explorer and Wallet already query internally — no SDK, no schema to generate. The chain you’re asking about is always in the path, so one endpoint serves the Hub and every Spoke behind it.
GET /v1/chains/corechain-devnet/accounts/arx1q9f...2mk3/actions?role=to
[
{
"action_hash": "0x9f2a1c...e04b",
"block_height": 184213,
"kind": "Transfer",
"from_address": "arx1p5k...9td2",
"payload": { "to": "arx1q9f...2mk3", "amount": 500 }
}, ...
]Fetch any block by height or hash, with every action inside it.
Every action a given address sent or received, newest first, paginated.
One query for a block height, an address, or a hash — no guessing input types.
Total blocks, block height, average block time, live tip.
Who has produced blocks, and how many, without touching validator state.
Follow a Hub and its Spoke chains from one process, one query surface.
Retracer is in active development and rolls out to builders on Arxium once it’s ready. Access will be announced here first.