Skip to main content

Unique Dashboards

Overviewโ€‹

Unique is a leading parachain on Polkadot dedicated to enabling NFTs and their collections. It provides a robust framework for users and developers to engage with non-fungible tokens across different applications.

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

Please also visit our dashboards for Unique on Dune Analytics.

Key Tablesโ€‹

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

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

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

Useful Queriesโ€‹

Some useful queries for Unique are provided:

TitleQueryDescription
Unique ss58 and pubkey Maping Tablequery_3632470Find all Unique ss58 and pubkey mappings
Unique NFT Infoquery_3630265Find all Unique NFT information
Unique Collection Infoquery_3628043Find all Unique collection information
Unique NFT Transaction Infoquery_3631785Find all Unique NFT transaction information

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:

Unique Top Collections by Total Sales Amount
SELECT
collection_id_with_dashboard_url,
token_prefix,
SUM(for_price) AS total_amount
FROM
dune.substrate.result_unique_nft_transaction_info
GROUP BY
collection_id_with_dashboard_url,
token_prefix
ORDER BY
SUM(for_price) DESC;

Query result:

DuneSQL Referece

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