πΈ Ethereum Transaction Graph Dataset (GNN)
This dataset represents Ethereum transactions as edges between addresses.
It is designed for Graph Neural Networks (GNN), both static embeddings and temporal graph learning.
The dataset contains 2-hop graphs, i.e., it includes neighbors of neighbors for each address.
π Contents
edges_all/edges.parquetβ all transactions (full edge list).edges_by_week/week=YYYY-Www/edges.parquetβ weekly slices.edges_by_month/month=YYYY-MM/edges.parquetβ monthly slices.meta/{week,month}_window_meta.parquetβ time window ranges and statistics.labels/targets_global.parquetβ labeled addresses(node_id, is_scam, is_contract, address).mapping/address_id_map_labels.parquetβ(address, node_id)mapping.targets/{week,month}_targets.parquetβ labeled nodes active in each window.
π Edge Schema
| Field | Type | Units | Description |
|---|---|---|---|
| src_id | UInt64 | β | Source node ID (hash of lowercase Ethereum address). |
| dst_id | UInt64 | β | Destination node ID (hash of lowercase Ethereum address). |
| ts | Int64 | seconds | Unix timestamp of the transaction (UTC). |
| value_wei | STRING | wei | Transaction value in wei (exact decimal stored as string). |
| tx_fee_wei | STRING | wei | Transaction fee in wei (exact decimal stored as string). |
| block_number | Int64 | block | Ethereum block number of the transaction. |
| contract_creation | Bool | β | True if transaction created a smart contract. |
| tx_hash | STRING | hex | Unique transaction hash. |
Notes
- Transactions are not filtered: all edges included.
- Supervision: loss computed only on labeled addresses.
- Dynamic GNN: use
edges_by_week/oredges_by_month/. - Static embeddings: use
edges_all/edges.parquet.