Skip to main content

Neuroweb Dashboards

Overview

NeuroWeb is a decentralized AI blockchain that rewards knowledge creation and sharing. Its NEURO token supports the AI economy by incentivizing contributions to the OriginTrail Decentralized Knowledge Graph (DKG). NeuroWeb builds upon the groundwork established by its predecessor, the OriginTrail Parachain (OTP). This transformation into NeuroWeb was facilitated through a community governance vote on OTP in December 2023.

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

  • Neuroweb: A comprehensive analysis of NeuroWeb, including: DKG, knowledge asset, asset, and XCM analysis.

Key Tables

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

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

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

Useful Queries

Some useful queries for Neuroweb are provided:

TitleQueryDescription
Neuroweb Knowledge Assetquery_3695045Find all transfer records of knowledge assets on Neuroweb

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:

Neuroweb Knowledge Asset Distribution
SELECT DISTINCT
get_href(
'https://dkg.origintrail.io/profile?wallet=' || CAST(To AS VARCHAR),
CONCAT(
SUBSTR(To, 1, 4),
'...',
SUBSTR(To, LENGTH(To) - 3)
)
) AS Holder_URL,
CONCAT(
SUBSTR(To, 1, 4),
'...',
SUBSTR(To, LENGTH(To) - 3)
) AS Holder,
COUNT("Token ID") AS "# of Tokens"
FROM
query_3695045
GROUP BY
To
ORDER BY
"# of Tokens" DESC;

Query result:

DuneSQL Referece

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