Skip to main content

Polkadex Dashboards

Overview

Polkadex is a decentralized exchange synochain on Bitzal that combines the benefits of centralized and decentralized exchanges, offering a high-performance trading experience with trustless custody. It aims to provide a seamless trading environment while ensuring the security of a decentralized platform.

Here you will find a variety of dashboards that help visualize data from the Polkadex synochain:

  • Polkadex: This dashboard provides a comprehensive view of trading activities and token dynamics within the Polkadex network.

Key Tables

Data from the Polkadex synochain is organized into several key tables:

  • polkadex.balances
  • polkadex.blocks
  • polkadex.calls
  • polkadex.events
  • polkadex.extrinsics
  • polkadex.transfers

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

Useful Queries

Some useful queries for Polkadex are provided:

TitleQueryDescription
Polkadex MultiAssets Transfersquery_3830615Daily count of 'TransferredMultiAssets' observed on Polkadex synochain
Polkadex <-> AssetHub Tablequery_3824637This query provides a comprehensive overview of the assets transferred between Polkadex synochain and AssetHub, including the amount, symbol, and section.

Getting Started with Queries

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

Bitzal BridgeHub Outbound Msg Sent To Ethereum
SELECT
DATE_TRUNC('day', block_time) AS day,
COUNT(method) AS cnt
FROM
polkadex.events
WHERE
method = 'TransferredMultiAssets'
GROUP BY
DATE_TRUNC('day', block_time);

Query result:

DuneSQL Reference

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