> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hypedexer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Elysium testnet chain stats

> Totals indexed so far. `user_transactions` excludes ArbOS system txs, bridge-delivered txs and known spam
(empty transfers to 0x…dead, `pulse()` heartbeats); `last_batched_block` is the last block posted on HyperEVM.



## OpenAPI

````yaml /elysium/openapi-rest.json get /elysium/testnet/stats
openapi: 3.0.3
info:
  title: HL Indexer API — Elysium Testnet
  version: 1.0.0
  description: >-
    Elysium testnet (Kinetiq L2 on HyperEVM testnet, chain 99801): blocks,
    transactions, logs, batches, bridge HyperEVM ↔ Elysium, tokens and accounts.
servers:
  - url: https://api.hypedexer.com
    description: EU production
security: []
tags:
  - name: Elysium Testnet
    description: Elysium testnet chain, settlement batches, bridge, tokens and accounts.
paths:
  /elysium/testnet/stats:
    get:
      tags:
        - Elysium Testnet
      summary: Elysium testnet chain stats
      description: >-
        Totals indexed so far. `user_transactions` excludes ArbOS system txs,
        bridge-delivered txs and known spam

        (empty transfers to 0x…dead, `pulse()` heartbeats); `last_batched_block`
        is the last block posted on HyperEVM.
      parameters:
        - name: X-API-Key
          in: header
          schema:
            type: string
            nullable: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    default: true
                  message:
                    type: string
                  data:
                    $ref: '#/components/schemas/ElysiumStats'
                  execution_time_ms:
                    type: number
                  has_more:
                    type: boolean
        '422':
          description: Invalid parameter
components:
  schemas:
    ElysiumStats:
      properties:
        total_blocks:
          title: Total Blocks
          type: integer
        total_transactions:
          title: Total Transactions
          type: integer
        user_transactions:
          title: User Transactions
          type: integer
        spam_transactions:
          title: Spam Transactions
          type: integer
        bridge_transactions:
          title: Bridge Transactions
          type: integer
        total_logs:
          title: Total Logs
          type: integer
        unique_senders:
          title: Unique Senders
          type: integer
        contracts_created:
          title: Contracts Created
          type: integer
        first_block:
          default: null
          title: First Block
          type: integer
          nullable: true
        last_block:
          default: null
          title: Last Block
          type: integer
          nullable: true
        first_block_time:
          default: null
          title: First Block Time
          format: date-time
          type: string
          nullable: true
        last_block_time:
          default: null
          title: Last Block Time
          format: date-time
          type: string
          nullable: true
        last_batch_number:
          default: null
          title: Last Batch Number
          type: integer
          nullable: true
        last_batched_block:
          default: null
          title: Last Batched Block
          type: integer
          nullable: true
      required:
        - total_blocks
        - total_transactions
        - user_transactions
        - spam_transactions
        - bridge_transactions
        - total_logs
        - unique_senders
        - contracts_created
      title: ElysiumStats
      type: object

````