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

What’s included in free shares?

Free 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 free 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 free shares

Access all free shares via the Snowflake Marketplace:

Browse Free Listings

View all available free blockchain data shares (marked “Free”)

Supported blockchains

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

How to access free shares

1

Verify requirements

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

Browse the marketplace

  1. Go to the Flipside Marketplace page 2. Filter by listings marked “Free” 3. Select the blockchain(s) you want to access
3

Get the share

  1. Click on a free listing 2. Click Get (no approval needed for free shares) 3. The share will be added to your account immediately
4

Mount the share

Follow the Mounting Shares guide to:
  • Create a database from the share
  • Start querying the data
Get multiple shares at once: You can mount 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 free 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;

Free vs Premium comparison

FeatureFreePremium
Core schema
DeFi schema
NFT schema
Price schema
Stats schema
Protocol schemas
Access methodInstant via MarketplaceRequest access
CostFree (compute only)Priced per blockchain + compute (additional) Contact us for pricing.

Use cases for free shares

Free 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