CoolFace
Datasetpublic

BlockDB/ETH-and-ERC20-Transfers-Ethereum-Cryptocurrency-Data

ETH and ERC-20 Transfers — Ethereum Cryptocurrency Data Native ETH (transaction and internal), plus all ERC-20 transfers on Ethereum mainnet. Chain Ethereum mainnet (chain_id 1) Coverage 2015-08 → 2025-10 (UTC, by block_timestamp) Transfer types 0 native tx, 1 native internal, 2 ERC-20 Format Parquet, Hive partitions data/year=YYYY/month=MM/ Source BlockDB blockdb0304_token_transfers_v1 Schema Token Transfers — data catalog Files data/… See the full description on the dataset page: https://huggingface.co/datasets/BlockDB/ETH-and-ERC20-Transfers-Ethereum-Cryptocurrency-Data.

sourceHugging Facecc-by-4.0updated 4mo agoView on Hugging Face
0likes91downloads
Dataset Card

BlockDB Banner

ETH and ERC-20 Transfers — Ethereum Cryptocurrency Data

Native ETH (transaction and internal), plus all ERC-20 transfers on Ethereum mainnet.

ChainEthereum mainnet (chain_id 1)
Coverage2015-082025-10 (UTC, by block_timestamp)
Transfer types0 native tx, 1 native internal, 2 ERC-20
FormatParquet, Hive partitions data/year=YYYY/month=MM/
SourceBlockDB blockdb0304_token_transfers_v1
SchemaToken Transfers — data catalog

Files

data/
  year=YYYY/month=MM/part-NNNN.parquet

Load

python
import duckdb

duckdb.sql("""
  SELECT block_timestamp, transfer_type, from_address, to_address, token_address, amount_adj
  FROM read_parquet('hf://datasets/BlockDB/ETH-And-ERC20-Transfers-Ethereum-Cryptocurrency-Data/data/year=2024/month=01/*.parquet')
  WHERE transfer_type = 2
  LIMIT 10
""")

Full mirror of this dataset

bash
huggingface-cli download BlockDB/ETH-And-ERC20-Transfers-Ethereum-Cryptocurrency-Data \
  --repo-type dataset --local-dir ./blockdb-eth-erc20-transfers

Need more than this snapshot?