RBudzynski's picture
Update README.md
8897d6c verified
metadata
license: cc-by-nc-4.0
tags:
  - ethereum
  - evm
  - blockchain
  - cryptocurrency
  - crypto
  - onchain-data
  - tabular
  - timeseries
  - datasets
  - pandas
  - polars
  - duckdb
pretty_name: BlockDB ERC-20 Tokens - Sample
size_categories:
  - 10M<n<100M

BlockDB Banner

Sample Notice

This dataset contains a small sample of the full BlockDB ERC-20 Tokens dataset.
It is provided for evaluation, research, and interoperability testing only.

If you need full historical coverage, real-time streaming, or end-of-day (EOD) exports please contact us directly:

πŸ“§ support@blockdb.io
🌐 https://www.blockdb.io

Dataset Overview

Catalog of ERC-20 token contracts discovered on-chain. Each row represents a unique ERC-20 token with its metadata (name, symbol, decimals) and provenance information indicating where the token was first recognized or derived from on-chain activity.

Every token record includes deterministic tracing IDs that link the record to its genesis event and upstream sources, enabling full provenance tracking for downstream analytics.

Chains and Coverage

ETH, BSC, Base, Arbitrum, Unichain, Avalanche, Polygon, Celo, Linea, Optimism (others on request). Full history from chain genesis; reorg-aware real-time ingestion and updates.

Schema

List of columns exactly as delivered:

β€’	contract_address BYTEA – 20-byte address of the ERC-20 token contract (primary key)
β€’	block_number BIGINT – Block of the log attributed as the genesis/recognition point
β€’	block_time TIMESTAMPTZ – UTC timestamp when the block was mined
β€’	tx_index INTEGER – Transaction index within the block
β€’	log_index INTEGER – Log index within the block
β€’	name TEXT – Name of the ERC-20 token
β€’	symbol TEXT – Symbol/ticker of the ERC-20 token
β€’	decimals SMALLINT – Number of decimal places used by the ERC-20 token
β€’	_tracing_id BYTEA – Tracing ID of this ERC-20 token record
β€’	_genesis_tracing_ids BYTEA[] – Tracing IDs of the genesis records leading to this token record
β€’	_parent_tracing_ids BYTEA[] – Tracing IDs of the parent records leading to this token record
β€’	_created_at TIMESTAMPTZ – Record creation timestamp
β€’	_updated_at TIMESTAMPTZ – Record last update timestamp

Notes

β€’	Primary key: contract_address guarantees uniqueness per token.
β€’	Indexes on (block_number, tx_index, log_index), block_number, and block_time support fast lookups.
β€’	Binary values can be rendered as hex via encode(column, 'hex') in SQL for display or downstream joins.

Lineage

Each token record includes deterministic _tracing_id, _genesis_tracing_ids, and _parent_tracing_ids, providing:

β€’	Provenance tracking from raw logs to decoded token metadata
β€’	Reproducible analytics and signal extraction
β€’	Cross-system consistency checks (RPC vs. indexers vs. internal warehouses)

Common Use Cases

β€’	Building token registries and metadata catalogs
β€’	Enriching swap, liquidity, and DeFi analytics with token information
β€’	Token discovery and new listing detection
β€’	Portfolio tracking and wallet analytics

Quality

β€’	Verifiable lineage: deterministic cryptographic hashes per row
β€’	Reorg-aware ingestion: continuity and consistency across forks
β€’	Complete historical coverage: from chain genesis to present