Skip to main content
Premium data shares give you full access to Flipside’s curated blockchain data, including DeFi, NFT, Price, Stats, and protocol-specific schemas.

What’s included in premium shares?

Premium listings include everything in Free plus:

DeFi Schema

  • DEX swaps - Lending (deposits, borrows, liquidations) - Liquidity pool actions - Bridge activity - Staking events

NFT Schema

  • NFT sales - NFT transfers - Collection metadata - NFT mints and burns - Marketplace activity

Price Schema

  • OHLC price data (hourly) - Asset metadata - Cross-chain pricing - Historical price feeds

Stats Schema

  • Chain metrics - Protocol aggregates - Daily/hourly rollups - User analytics

Protocol-specific schemas

Some chains include specialized schemas for major protocols:
  • Ethereum: Maker DAO, ENS, Beacon Chain, Layer 2 data
  • Solana: Marinade, governance data
  • And more…

Free vs Premium

FeatureFreePremium
Core schema✅ Included✅ Included
Raw transaction data✅ Included✅ Included
DeFi schema❌ Not included✅ Included
NFT schema❌ Not included✅ Included
Price schema❌ Not included✅ Included
Stats schema❌ Not included✅ Included
Protocol schemas❌ Not included✅ Included
Convenience tables❌ Limited✅ Full access
Access methodInstant (Marketplace)Request required
CostFree (compute only)Priced per blockchain + compute (additional)
Free shares are free to access—you only pay for the compute (queries) you run in Snowflake. Premium shares are priced per blockchain + compute (additional). Contact us for pricing.

Available premium shares

Browse all premium listings (marked “By Request”) in the Snowflake Marketplace:

Browse Premium Listings

View all available premium blockchain data shares
Premium shares are available for the same 30+ blockchains as free shares, with full schema access.

How to request access

1

Find your data sharing identifier

You’ll need your Snowflake data sharing account identifier.Option 1: Via UI
  1. Log in to your Snowflake account
  2. Click your user profile (bottom-left)
  3. Select AccountView account details
  4. Copy Data sharing account identifier
Option 2: Via SQL
SELECT CURRENT_ORGANIZATION_NAME() || '.' || CURRENT_ACCOUNT_NAME();
Visual guide →
2

Browse premium listings

  1. Go to the Flipside Marketplace page 2. Filter for listings marked “By Request” 3. Select the blockchain(s) you want
3

Request access

  1. Click on a premium listing 2. Click Request button 3. Fill out the request form with: - Your data sharing account identifier - The chains you need access to - Specific schemas or use cases (optional) 4. Submit the request
4

Wait for approval

  • Flipside will review your request - Approval typically takes 1-2 business days - You’ll receive an email notification when approved
5

Mount the share

Once approved, follow the Mounting Shares guide to add the share to your account

What to include in your request

When requesting premium access, provide:
Your Snowflake data sharing account identifier (e.g., MYORG.MYACCOUNT)
SELECT CURRENT_ORGANIZATION_NAME() || '.' || CURRENT_ACCOUNT_NAME();
Describe what you’re building:
  • Analytics dashboards
  • Risk monitoring
  • Research project
  • Trading signals
  • Etc.
This helps us understand your needs and potentially suggest optimizations.

After approval

Once your request is approved:
  1. You’ll receive an email confirming access
  2. The share will appear in your Snowflake account’s private sharing section
  3. Mount the share following the Mounting guide
  4. Start querying all premium schemas

Example: Premium DeFi data

Once you’ve mounted a premium share (e.g., Ethereum):
-- Use the premium database
USE DATABASE ETHEREUM;

-- Query DEX swaps
SELECT
    block_timestamp,
    platform,
    trader,
    token_in,
    token_out,
    amount_in_usd,
    amount_out_usd
FROM ethereum.defi.ez_dex_swaps
WHERE block_timestamp >= CURRENT_DATE - 7
ORDER BY amount_in_usd DESC
LIMIT 100;

-- Query NFT sales
SELECT
    block_timestamp,
    marketplace,
    nft_address,
    token_id,
    buyer,
    seller,
    price_usd
FROM ethereum.nft.ez_nft_sales
WHERE block_timestamp >= CURRENT_DATE - 1
ORDER BY price_usd DESC
LIMIT 50;

-- Query price data
SELECT
    hour,
    symbol,
    price,
    volume_24h
FROM ethereum.price.ez_prices_hourly
WHERE symbol IN ('ETH', 'USDC', 'WBTC')
  AND hour >= CURRENT_DATE - 30
ORDER BY hour DESC;

Use cases for premium shares

Premium shares unlock advanced analytics:
  • DEX volume tracking - Liquidity pool analysis - Lending protocol metrics - Bridge flow analysis - Yield farming analytics
  • Sales tracking and trends - Collection performance - Marketplace comparison - Whale activity monitoring - Rarity and pricing analysis
  • Historical OHLC data - Cross-chain price comparison - Arbitrage opportunity detection - Asset correlation analysis
  • TVL tracking - User growth metrics - Revenue analytics - Risk monitoring - Competitive benchmarking

Custom share requests

Need a custom configuration or have specific requirements? Email us: [email protected] Include:
  • Your data sharing account identifier
  • Specific chains, schemas, or tables needed
  • Your use case and requirements
  • Any latency or performance needs

Next steps