Skip to main content

Manta Dashboards

Overview

Manta Atlantic is a fast and decentralized ZK Layer 1 supporting modular on-chain compliance identities. Its suite of core products and technologies, including zkNFTs, staking, and ecosystem projects, offers user-friendly access to powerful ZK-enabled use cases.

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

Key Tables

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

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

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

Useful Queries

Manta Delegator All events

Some useful queries for Manta are provided:

TitleQueryDescription
Manta Delegator All eventsquery_3722522This query provides a comprehensive overview of all events related to Delegator activities on the Manta network, including collator, delegator, amount, and event type.

Getting Started with Queries

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

Manta to Moonbeam XTokens Transfer
SELECT
DATE_TRUNC('day', block_time) AS day,
SUM(
CAST(json_extract_scalar(params, '$.amount') AS DOUBLE) / POWER(10, 18)
) AS amount,
'Manta to Moonbeam' AS section
FROM
manta.extrinsics
WHERE
section = 'xTokens'
AND method = 'transfer'
AND json_extract_scalar(params, '$.dest.v3.interior.x2[0].parachain') = '2004'
GROUP BY
DATE_TRUNC('day', block_time)
ORDER BY
day DESC;

Query result:

DuneSQL Referece

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