> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flipsidecrypto.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Premium Listings

> Access all curated blockchain schemas through premium data shares

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 Core** plus:

<CardGroup cols={2}>
  <Card title="DeFi Schema" icon="hand-holding-dollar">
    DEX swaps, Lending (deposits, borrows, liquidations), Liquidity pool actions, Bridge activity,
    Staking events
  </Card>

  <Card title="NFT Schema" icon="image">
    NFT sales, NFT transfers, Collection metadata, NFT mints and burns, Marketplace activity
  </Card>

  <Card title="Price Schema" icon="chart-line">
    OHLC price data (hourly), Asset metadata, Cross-chain pricing, Historical price feeds
  </Card>

  <Card title="Stats Schema" icon="chart-bar">
    Chain metrics, Protocol aggregates, Daily/hourly rollups, User analytics
  </Card>
</CardGroup>

### 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...

## Core vs Premium

| Feature                  | Core             | Premium                                      |
| ------------------------ | ---------------- | -------------------------------------------- |
| **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 method**        | Request required | Request required                             |
| **Cost**                 | Compute only     | Priced per blockchain + compute (additional) |

<Note>
  Core shares provide access to essential blockchain data—you only pay for the compute (queries) you
  run in Snowflake. Premium shares are priced per blockchain + compute (additional). Contact us for
  pricing.
</Note>

## Available premium shares

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

<Card title="Browse Premium Listings" icon="star" href="https://app.snowflake.com/marketplace/providers/GZT0ZJKG5N9/Flipside%20Crypto?available=byRequest">
  View all available premium blockchain data shares
</Card>

Premium shares are available for the same **30+ blockchains** as core shares, with full schema
access.

## How to request access

<Steps>
  <Step title="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 **Account** → **View account details**
    4. Copy **Data sharing account identifier**

    **Option 2: Via SQL**

    ```sql theme={null}
    SELECT CURRENT_ORGANIZATION_NAME() || '.' || CURRENT_ACCOUNT_NAME();
    ```

    [Visual guide →](https://docs.snowflake.com/en/alias/client/account-identifier-listing)
  </Step>

  <Step title="Browse premium listings">
    1. Go to the [Flipside Marketplace
       page](https://app.snowflake.com/marketplace/providers/GZT0ZJKG5N9/Flipside%20Crypto) 2. Filter for listings marked **"By Request"** 3. Select the blockchain(s) you want
  </Step>

  <Step title="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
  </Step>

  <Step title="Wait for approval">
    * Flipside will review your request - Approval typically takes **1-2 business days** - You'll receive an email notification when approved
  </Step>

  <Step title="Mount the share">
    Once approved, follow the [Mounting Shares guide](/snowflake-data-shares/mounting-shares) to add the share to your account
  </Step>
</Steps>

## What to include in your request

When requesting premium access, provide:

<AccordionGroup>
  <Accordion title="Required: Data sharing identifier" icon="fingerprint">
    Your Snowflake data sharing account identifier (e.g., `MYORG.MYACCOUNT`)

    ```sql theme={null}
    SELECT CURRENT_ORGANIZATION_NAME() || '.' || CURRENT_ACCOUNT_NAME();
    ```
  </Accordion>

  <Accordion title="Recommended: Chains needed" icon="link">
    Specify which blockchains you need:

    * Ethereum
    * Solana
    * Arbitrum
    * All chains
    * Etc.

    This helps us prioritize your request.
  </Accordion>

  <Accordion title="Optional: Use case details" icon="note-sticky">
    Describe what you're building:

    * Analytics dashboards
    * Risk monitoring
    * Research project
    * Trading signals
    * Etc.

    This helps us understand your needs and potentially suggest optimizations.
  </Accordion>
</AccordionGroup>

## 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](/snowflake-data-shares/mounting-shares)
4. **Start querying** all premium schemas

## Example: Premium DeFi data

Once you've mounted a premium share (e.g., Ethereum):

```sql theme={null}
-- 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:

<AccordionGroup>
  <Accordion title="DeFi analytics" icon="arrow-right-arrow-left">
    * DEX volume tracking - Liquidity pool analysis - Lending protocol metrics - Bridge flow
      analysis - Yield farming analytics
  </Accordion>

  <Accordion title="NFT market intelligence" icon="image">
    * Sales tracking and trends - Collection performance - Marketplace comparison - Whale activity
      monitoring - Rarity and pricing analysis
  </Accordion>

  <Accordion title="Price and market data" icon="chart-candlestick">
    * Historical OHLC data - Cross-chain price comparison - Arbitrage opportunity detection - Asset
      correlation analysis
  </Accordion>

  <Accordion title="Protocol monitoring" icon="gauge">
    * TVL tracking - User growth metrics - Revenue analytics - Risk monitoring - Competitive
      benchmarking
  </Accordion>
</AccordionGroup>

## Custom share requests

Need a custom configuration or have specific requirements?

**Email us:** [data-shares@flipsidecrypto.com](mailto:data-shares@flipsidecrypto.com)

Include:

* Your data sharing account identifier
* Specific chains, schemas, or tables needed
* Your use case and requirements
* Any latency or performance needs

## Next steps

<CardGroup cols={2}>
  <Card title="Requirements" icon="list-check" href="/snowflake-data-shares/requirements">
    Ensure your account is ready for data shares
  </Card>

  <Card title="Mounting shares" icon="link" href="/snowflake-data-shares/mounting-shares">
    Learn how to add shares once approved
  </Card>

  <Card title="Query optimization" icon="gauge-high" href="/snowflake-data-shares/query-optimization">
    Write efficient queries for premium data
  </Card>

  <Card title="Schema reference" icon="book" href="/blockchain-data/schema-overview">
    Explore table structures and schemas
  </Card>
</CardGroup>
