CoolFace
Datasetpublic

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.

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes11downloads
Dataset Card

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

MetricValue
Total wallets196,477
Sybil wallets14,195 (7.22%)
Normal wallets182,282 (92.78%)
Features60
Columns62 (walletaddress + issybil_attacker + 60 features)
Blockchain networksEthereum, Polygon, Arbitrum, Optimism, xDai

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:

Feature GroupCountDescription
Bridge Transaction10Cross-chain bridge usage counts and amounts per network
Aggregate4Total transaction counts, amounts, and airdrop received
Behavioral / Enhanced6Risk score, activity span, hour entropy, activity bursts, cluster info
Derived4Computed ratios: avgtransactionamount, networkdiversity, transactionratio, amount_ratio
Co-Temporal Graph (60s)7Burst coordination metrics within 60-second windows
Co-Temporal Graph (300s)7Burst coordination metrics within 300-second windows
Funding Graph9Funding source topology: in/out degree, sibling wallets, WCC size
Entity-Funding Cluster (EFC)13Cluster-level aggregates: size, risk, funding volume, diversity

Non-Feature Columns

ColumnDescription
wallet_addressUnique wallet identifier
is_sybil_attackerBinary label: 1 = Sybil, 0 = Normal

Usage

python
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:

ModelAUC-ROCF1-ScoreType
LightGBM0.9350 ± 0.00210.6164 ± 0.0087Supervised (Boosting)
CatBoost0.9327 ± 0.00130.5937 ± 0.0066Supervised (Boosting)
RandomForest0.9300 ± 0.00240.5756 ± 0.0040Supervised (Bagging)
TabNet0.8739 ± 0.01400.3978 ± 0.0324Supervised (Deep Tabular)
IsolationForest0.6940 ± 0.00430.1712 ± 0.0116Unsupervised
OneClassSVM0.5471 ± 0.01220.2185 ± 0.0060Unsupervised

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)
bibtex
@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