Skip to main content
Data Explorer in Flipspace
The Data Explorer lets you browse Flipside’s complete data catalog—schemas, tables, and columns across 20+ blockchain networks.

Accessing the Data Explorer

In Flipspace, browse available datasets in the Data Explorer or use Chat to ask about specific tables.

What’s Available

Blockchain Networks

Flipside maintains curated data for 20+ blockchain networks including:
  • EVM chains: Ethereum, Arbitrum, Optimism, Base, Polygon, Avalanche, BSC
  • Non-EVM chains: Solana, Aptos, Sui, Near, Cosmos, Osmosis
  • Specialized: Bitcoin, Flow, Stellar, THORChain

Data Categories

Each network includes standardized schemas:
SchemaDescription
CoreBlocks, transactions, event logs, traces
DeFiDEX swaps, lending, liquidity pools, bridges
NFTMints, sales, transfers, collections
PriceToken prices, market data, OHLC
StatsAggregated metrics, daily/hourly summaries
GovGovernance votes, proposals, validators
BalancesToken balances, historical snapshots

Table Naming Conventions

  • fact_* tables: Raw, granular event data
  • ez_* tables: Curated, analysis-ready views (recommended)
  • dim_* tables: Dimension/reference data (labels, metadata)
Start with ez_* tables. These are optimized for common queries and include human-readable columns. Use fact_* tables when you need granular detail.

Using the Data Explorer

Browse by network

Each network has a structured hierarchy:
ethereum/
├── core/
│   ├── fact_blocks
│   ├── fact_transactions
│   └── ez_native_transfers
├── defi/
│   ├── ez_dex_swaps
│   ├── ez_lending_borrows
│   └── fact_liquidity_pool_actions
├── nft/
│   ├── ez_nft_sales
│   └── ez_nft_mints
└── price/
    ├── ez_prices_hourly
    └── fact_prices_ohlc_hourly

Preview table structure

Ask Chat about any table:
"What columns are in ethereum.defi.ez_dex_swaps?"
"Show me the schema for solana.core.fact_transactions"

Common Tables

DeFi Analysis

TableUse Case
{chain}.defi.ez_dex_swapsDEX trading activity
{chain}.defi.ez_lending_borrowsLending protocol borrows
{chain}.defi.ez_bridge_activityCross-chain bridge flows

Token Analysis

TableUse Case
{chain}.core.ez_token_transfersToken transfer history
{chain}.core.dim_labelsAddress labels and tags
{chain}.price.ez_prices_hourlyHistorical token prices

User Behavior

TableUse Case
{chain}.core.fact_transactionsAll on-chain transactions
{chain}.core.ez_native_transfersNative token transfers
crosschain.address_labelsCross-chain address metadata

Data Freshness

Tables are updated on different schedules:
  • Hourly tables: Updated every hour
  • Daily tables: Updated daily
  • Real-time: Use Live Query Mode for current state
Check freshness:
"When was ethereum.defi.ez_dex_swaps last updated?"

Next Steps