| name | fdp |
| description | Open data products from the Filecoin Data Portal. Use when users ask to query, analyze, explain, chart, or understand datasets, metrics, or models around the Filecoin ecosystem, including how metrics are derived. |
Scope
The Filecoin Data Portal publishes:
- Datasets: public Parquet tables for direct querying.
- Metrics: documented columns with definitions, units, and caveats.
- Models: asset dependencies and source code showing how datasets and metrics are derived.
For metric definitions or derivation questions, read the docs and also the relevant models code on GitHub and follow links as upstream as reasonable.
Dataset Catalog
{{ dataset_catalog }}
Answering Questions with Data
- Read the relevant dataset docs and columns.
- Inspect asset code when definitions or derivations are unclear. Clone
https://github.com/davidgasquez/filecoin-data-portal into a temporary directory if useful.
- Choose the smallest dataset set that can answer the question.
- Query canonical parquet URLs directly:
{{ public_datasets_base_url }}/<dataset>.parquet
- Inspect schema, types, and sample rows before final SQL.
- Answer concisely with datasets used, assumptions, caveats, and source links.
Querying Datasets
Use the simplest available local tool. Prefer duckdb, but do not assume it exists or is installed. Check the environment first, then use DuckDB, Python, Node.js, or another installed parquet-capable tool. You might need to use inline node or Python scripts or even download a temporary DuckDB binary and run from that.
Ask a clarification question only if the relevant dataset or metric remains ambiguous.
Charts and Dashboards
- Create a self-contained
index.html with vanilla HTML, CSS, and JS.
- Mention and link the relevant datasets used and display
filecoindataportal.xyz as the source.
- Serve it locally and share the URL.
Feedback
If you find datasets, docs, metrics, or model derivations are wrong, confusing, stale, missing, or useful, offer to open a GitHub issue:
https://github.com/davidgasquez/filecoin-data-portal/issues/new
Draft the issue first, scrub secrets/PII, show it to the user, and submit only after approval.