enes0o0/cross-chain-sybil-detection
Cross-Chain Sybil Attack Detection Dataset A large-scale, labeled dataset for detecting Sybil attacks in blockchain networks using cross-chain behavioral modeling. Dataset Description This dataset contains 196,477 wallet addresses collected from five blockchain networks (Ethereum, Polygon, Arbitrum, Optimism, and xDai) with 60 engineered features and binary Sybil labels. It was constructed to support research on automated Sybil wallet detection in decentralized… See the full description on the dataset page: https://huggingface.co/datasets/enes0o0/cross-chain-sybil-detection.
Cross-Chain Sybil Attack Detection Dataset
A large-scale, labeled dataset for detecting Sybil attacks in blockchain networks using cross-chain behavioral modeling.
Dataset Description
This dataset contains 196,477 wallet addresses collected from five blockchain networks (Ethereum, Polygon, Arbitrum, Optimism, and xDai) with 60 engineered features and binary Sybil labels. It was constructed to support research on automated Sybil wallet detection in decentralized finance (DeFi) ecosystems.
Ground-truth Sybil labels were obtained from the Hop Protocol airdrop campaign, verified through clustering analysis, temporal pattern inspection, and funding source tracking.
Key Statistics
Class Distribution
The dataset exhibits significant class imbalance (~7.22% Sybil), which is representative of real-world fraud detection scenarios.
Features
The 60 features are organized into the following groups:
Non-Feature Columns
Usage
from datasets import load_dataset
dataset = load_dataset("enes0o0/cross-chain-sybil-detection")
df = dataset["train"].to_pandas()
X = df.drop(columns=["wallet_address", "is_sybil_attacker"])
y = df["is_sybil_attacker"]Benchmark Results
Models evaluated using 10x random train/test splits (80/20) with hyperparameter optimization:
Associated Paper
An Interpretable and Robust Machine Learning Framework for Sybil Attack Detection Based on Cross-Chain Behavioral Modeling Berke Gunes (BIS Cozum Bilgisayar ve Entegrasyon Hizmetleri ve Tic. A.S, Istanbul), Enes Ozgozler (Bahcesehir University, Dept. of Computer Engineering, Istanbul), C. Okan Sakar (Bahcesehir University, Dept. of Computer Engineering, Istanbul)
This dataset is an extended version of the data used in the conference paper presented at MedPRAI 2026, expanded with co-temporal burst, funding graph, and entity-funding cluster features.
Citation
If you use this dataset, please cite the associated conference paper:
Gunes, B., Sakar, C.O.: Cross-chain behavioral modeling for sybil attack detection in blockchain networks. In: 7th Mediterranean Conference on Pattern Recognition and Artificial Intelligence (MedPRAI) (2026)
@inproceedings{gunes2026medprai,
title={Cross-Chain Behavioral Modeling for Sybil Attack Detection in Blockchain Networks},
author={Gunes, B. and Sakar, C.O.},
booktitle={7th Mediterranean Conference on Pattern Recognition and Artificial Intelligence (MedPRAI)},
year={2026}
}License
MIT
