Skip to main content

Astar Dashboards

Overview

Astar Network, previously known as Plasm, is a blockchain platform designed for Web3. It is compatible with both EVM (Ethereum Virtual Machine) and WebAssembly, enabling seamless interaction between the two environments. Developers can participate in the Build2Earn program to earn rewards by creating decentralized applications.

Here you will find a variety of dashboards that help visualize data from the Astar parachain:

Key Tables

Data from the Astar parachain is organized into several key tables:

  • astar.balances
  • astar.blocks
  • astar.calls
  • astar.events
  • astar.extrinsics
  • astar.transfers
  • astar.traces

Start building your own queries using granular data on Dune here.

Useful Queries

Some useful queries for Astar are provided:

TitleQueryDescription
Astar dApp Info by Eraquery_3727264This query provides comprehensive information on decentralized applications (dApps) within the Astar ecosystem, including details about the dApp name, staking statistics, tier levels, and developer profiles, facilitating deeper insights into dApp performance and engagement across different eras.
Astar Reward Info by Eraquery_3727888Explore comprehensive data on rewards distribution within the Astar network, broken down by era to identify trends and patterns.
Astar Staker info by Eraquery_3728048Access a detailed breakdown of staker activities and statistics on the Astar network, categorized by era for historical comparison.

Getting Started with Queries

To get started with querying data from Astar, you are welcome to use the mentioned materialized queries. You can use the following DuneSQL queries as examples:

Astar EVM Executed
SELECT
block_number, extrinsic_id, event_id, extrinsic_hash, section, method,
json_extract_scalar(data, '$[0]') as tx_from,
json_extract_scalar(data, '$[1]') as tx_to,
json_extract_scalar(data, '$[2]') as tx_hash,
json_extract(data, '$[3]') as tx_success
FROM
astar.events
WHERE
block_time >= TIMESTAMP '2024-02-13 00:00:00' and (section = 'ethereum' and method = 'Executed')
limit 10000;

Query result:

DuneSQL Referece

For more information on DuneSQL, please refer to the DuneSQL Cheatsheet and DuneSQL Official Documentation.