Skip to main content
The Data Hub is Dune’s web-based workspace where you query blockchain data with SQL, build visualizations, assemble dashboards, and share insights with your team or the public. It is one of several ways to work with Dune’s data — alongside the Data API, dbt integration, BI tool connectors, and Datashare. Data transformations on Dune

Prerequisites

  • Dune Account: Sign up here if you do not already have one.
  • Basic SQL Knowledge: Dune uses DuneSQL, a SQL dialect compatible with TrinoSQL. If you are new to SQL, start here.

What You Can Do

Quick Start

Get from zero to a published dashboard in five minutes:
  1. Create a query — Open the Query Editor and write SQL. For example, daily Ethereum active addresses:
SELECT
  date_trunc('day', block_time) AS time,
  COUNT(DISTINCT "from") AS active_senders
FROM ethereum.transactions
WHERE block_time > DATE '2024-01-01'
GROUP BY 1
ORDER BY 1
  1. Run and save — Click Run to execute, then Save to persist your query.
  2. Add a visualization — Click New Visualization, choose a chart type, and configure your axes.
  3. Build a dashboard — Go to Create > New Dashboard, name it, then add your visualization as a widget.
  4. Share it — Copy the dashboard URL or use the Share button to embed it externally.
For a detailed walkthrough, see Create Your First Query and Create Your First Visualization.

Next Steps