zora-creator-coins / README.md
jc4p's picture
Upload Zora Creator Coins dataset - 1.8M tokens from Base chain
bc4748b verified
metadata
license: mit
pretty_name: Zora Creator Coins

Zora Creator Coins Dataset

Dataset Description

This dataset contains comprehensive data on all Zora Creator Coins deployed on Base chain from the protocol's launch through August 25, 2024. Zora Creator Coins are ERC-20 tokens created through Zora's creator economy platform, traded on Uniswap V4 pools.

Collection Period

  • Start: Block 31,178,873 (June 5, 2024)
  • End: Block 34,682,698 (August 25, 2024 08:45:43 PM UTC)
  • Total Duration: ~82 days
  • Chain: Base

Dataset Files

1. zora_creator_coins.parquet

Complete registry of all Zora Creator Coins deployed during the collection period.

Size: 1,837,581 tokens

Columns:

  • coin_address: Token contract address
  • name: Token name
  • symbol: Token symbol
  • uri: Metadata URI
  • caller: Address that created the token
  • payout_recipient: Address receiving payouts
  • platform_referrer: Platform referrer address
  • currency: Currency used for the pool
  • pool_currency0: First currency in the pool pair
  • pool_currency1: Second currency in the pool pair
  • pool_fee: Pool fee tier
  • pool_tick_spacing: Tick spacing for the pool
  • pool_hooks: Hook contract address
  • pool_key_hash: Unique identifier for the pool
  • version: Creator coin version
  • block_number: Block when token was created
  • transaction_hash: Creation transaction hash

2. zora_active_tokens.parquet

Filtered subset containing only tokens with meaningful trading activity.

Size: 94,503 tokens

Activity Criteria:

  • Minimum 5 swaps in the last 60 days (as of block 34,682,698)
  • Represents tokens with actual trading activity vs. abandoned projects

Columns:

  • coin_address: Token contract address
  • creation_block: Block when token was created
  • pool_key_hash: Unique identifier for the pool
  • swap_count: Total number of swaps observed
  • first_swap_block: Block number of first swap
  • last_swap_block: Block number of most recent swap
  • avg_swaps_per_active_block: Average swap frequency

3. zora_active_tokens_below_filter.parquet

Tokens with some trading activity but below the "active" threshold.

Size: 217,813 tokens

Columns:

  • Same as zora_active_tokens.parquet
  • Contains tokens with 1-4 swaps in the scanning period

Data Collection Methodology

1. Token Discovery

  • Monitored Zora Creator Coin Factory contracts for deployment events
  • Captured both CreatorCoinCreated and CoinCreatedV4 events
  • Collected all metadata at deployment time

2. Activity Scanning

  • Time window: Last 60 days of activity (blocks 32,082,698 to 34,682,698)
  • Important: Activity metrics ONLY reflect this 60-day period, not all-time activity
  • Tokens may have had activity before this window that is not captured in the activity counts

Usage Examples

Loading the Data

import pandas as pd

# Load all tokens
all_tokens = pd.read_parquet('zora_creator_coins.parquet')
print(f"Total tokens: {len(all_tokens):,}")

# Load only active tokens
active_tokens = pd.read_parquet('zora_active_tokens.parquet')
print(f"Active tokens (5+ swaps): {len(active_tokens):,}")

# Load tokens with low activity
below_filter = pd.read_parquet('zora_active_tokens_below_filter.parquet')
print(f"Tokens with 1-4 swaps: {len(below_filter):,}")

Analysis Examples

# Find most active tokens
top_tokens = active_tokens.nlargest(10, 'swap_count')[['coin_symbol', 'swap_count']]

# Calculate survival rate
survival_rate = len(active_tokens) / len(all_tokens) * 100
print(f"Token survival rate: {survival_rate:.2f}%")

# Activity distribution
activity_summary['swap_count'].describe()

Dataset Statistics

  • Total Zora Creator Coins: 1,837,581
  • Tokens with ANY trading activity (in last 60 days): 312,316 (17.00%)
  • Tokens with 1-4 swaps (in last 60 days): 217,813
  • Active tokens (5+ swaps in last 60 days): 94,503
  • 60-day survival rate (5+ swaps): 5.14%
  • Average swaps per active token (60-day period): 48.89
  • Most active token swap count (60-day period): 57,938

Technical Details

Pool Structure

All Zora Creator Coins are paired with ZORA token in Uniswap V4 pools with the following characteristics:

  • Fixed fee tiers
  • Concentrated liquidity
  • Single-sided initial liquidity provision

Limitations

This dataset does not include the swap events themselves or any information necessary to calculate price dynamics or for time series prediction.

Use Cases

This dataset is valuable for:

  • DeFi Research: Analyzing memecoin/creator token dynamics
  • Market Analysis: Understanding token launch success factors
  • Creator Analysis: Comparing a creator's influence on other platforms to their creator coin

License

This dataset is released under the MIT License. The data is derived from public blockchain information.

Citation

If you use this dataset in your research, please cite:

@dataset{zora_creator_coins_2024,
  title={Zora Creator Coins on Base Chain Dataset},
  author={[Kasra Rahjerdi]},
  year={2025},
  month={8},
  publisher={Hugging Face},
  url={https://huggingface.co/datasets/jc4p/zora-creator-coins}
}