Skip to main content
Flipside offers core data shares for all supported blockchains, giving you access to Core schemas with essential blockchain data.

What’s included in core shares?

Core listings include the Core schema for each blockchain:

Raw transaction data

Blocks, Transactions, Event logs, Traces (for EVM chains)

Decoded data

Decoded event logs, Decoded traces, Contract ABIs

Token data

Token transfers (native & ERC-20/SPL), Token balances, Balance deltas

Labels & metadata

Contract labels, Address labels, Contract metadata

What’s NOT included in core shares?

  • DeFi schema: DEX swaps, lending, liquidity, bridge activity
  • NFT schema: NFT sales, transfers, collection metadata
  • Price schema: OHLC data, asset metadata, pricing
  • Stats schema: Chain metrics, aggregates
  • Protocol-specific schemas: Maker, Marinade, etc.
For access to all schemas, see Premium Listings.

Available core shares

Core shares are available for 30+ blockchains, including:
  • Ethereum - Arbitrum - Optimism - Base - Polygon - Binance Smart Chain (BSC) - Avalanche C-Chain - Blast - Gnosis - Aurora - Kaia - Mantle - And more…

How to access core shares

Core listings require access to be granted before you can mount them. You can request access through Flipside’s website or through the Snowflake Marketplace.
1

Verify requirements

Ensure your Snowflake account meets all requirements:
  • Enterprise Edition
  • AWS US-EAST-1 region
3

Wait for the share to be granted

Once your request is submitted, Flipside will review and share the core listing with your account. You’ll receive a notification when access has been granted.
4

Mount the share

After the core listing has been shared with your account, follow the Mounting Shares guide to:
  • Create a database from the share
  • Start querying the data
Request multiple shares at once: You can request access to core shares for multiple blockchains. Each share becomes its own database in your account (e.g., ETHEREUM_CORE, SOLANA_CORE).

Example: Accessing Ethereum Core data

Once you’ve mounted the Ethereum core share:
-- Use the database
USE DATABASE ETHEREUM_ONCHAIN_CORE_DATA;

-- Explore schemas
SHOW SCHEMAS;

-- Query recent blocks
SELECT
    block_number,
    block_timestamp,
    tx_count,
    gas_used
FROM ethereum_onchain_core_data.core.fact_blocks
ORDER BY block_number DESC
LIMIT 10;

-- Query recent token transfers
SELECT
    block_timestamp,
    from_address,
    to_address,
    contract_address,
    amount,
    symbol
FROM ethereum_onchain_core_data.core.ez_token_transfers
WHERE block_timestamp >= CURRENT_DATE - 1
LIMIT 100;

Core vs Premium comparison

FeatureCorePremium
Core schema
DeFi schema
NFT schema
Price schema
Stats schema
Protocol schemas
Access methodRequest accessRequest access
CostCompute onlyPriced per blockchain + compute (additional) Contact us for pricing.

Use cases for core shares

Core shares are perfect for:
  • Transaction forensics - Address behavior tracking - Custom event decoding - Block production analysis
  • Token transfer patterns - Holder analysis - Balance tracking - Custom token metrics
  • Understanding blockchain data structures - Building custom analytics - Prototyping before upgrading to premium
  • Building data pipelines - Creating custom dashboards - Integrating with internal tools

Next steps