Elysium is currently testnet-only (chain ID
99801). Mainnet endpoints will be added under /elysium/mainnet when it launches.What is Elysium?
Elysium is an Arbitrum Orbit (Nitro/ArbOS) L2 built by Kinetiq that settles to HyperEVM and runs co-located with HyperCore. It targets 100–200 ms blocks and ~100× HyperEVM’s throughput, with HYPE as the native gas token, bridged 1:1 from HyperEVM. HypeDexer indexes Elysium testnet end to end: its blocks, transactions, logs and tokens, the batches it posts on HyperEVM testnet, and the bridge between the two chains.Base URL
X-API-Key header, response envelope (success, message, data, has_more) and pagination (limit up to 1000, offset) as the EVM endpoints. Time filters start_time / end_time take ISO 8601 UTC timestamps.
What you can query
Key concepts
User transactions and spam
Elysium testnet carries a lot of automated traffic.user_transactions and active_addresses exclude:
- ArbOS system transactions (
tx_type = 0x6a) - Bridge-delivered transactions (
0x64deposits,0x69retryable tickets,0x68redeems) - Known spam: empty transfers to
0x…deadandpulse(bytes32)heartbeats, flaggedis_spam = 1
/transactions includes everything unless you pass include_spam=false or include_system=false.
Bridge transfers
A transfer is identified on both chains:route tells how the asset moves:
Retryable messages that move no asset (such as token registrations) are hidden by default; pass
include_messages=true to include them.
Proof of reserves
/bridge/reserves is refreshed every 15 minutes and checks the bridge invariants:
- native: HYPE held by the Bridge contract on HyperEVM ≥ net HYPE bridged into Elysium
- canonical: token balance of the HyperEVM gateway ≥
totalSupplyof its Elysium representation - mirror: Elysium token locked in its bridge wallet ≥
totalSupplyof the mirror on HyperEVM
only_unbacked=true to list only the tokens that break their invariant.