EZ_DEPOSITS | beacon.deposits | Contains beacon chain deposit data. The mapping is straightforward. Both tables serve the same purpose of tracking deposits into the consensus layer. |
EZ_WITHDRAWALS | beacon.withdrawals | Contains beacon chain withdrawal data. This is a direct one-to-one mapping. |
FACT_ATTESTATIONS | beacon.attestations | Holds details on validator attestations. This is a direct one-to-one mapping. |
FACT_BLOB_SIDECARS | beacon.blobs | Contains data on blob sidecars from the beacon chain RPC. This is a direct one-to-one mapping. |
FACT_BLOCKS | beacon.blocks | Contains consensus layer block data. This is a direct one-to-one mapping for raw block information. |
FACT_DEPOSITS | beacon.deposits | Contains beacon chain deposit data. This is a direct mapping. |
FACT_VALIDATORS | beacon.validators | Holds information about consensus layer validators. This is a direct one-to-one mapping. |
FACT_VALIDATOR_BALANCES | beacon.validator_day_summaries | Provides validator balance information. Note the difference in granularity: Flipside’s table offered raw balance data, whereas Dune’s validator_day_summaries provides balances aggregated by day, which is more efficient for daily trend analysis. |
FACT_WITHDRAWALS | beacon.withdrawals | Details withdrawals from the beacon chain. This is a direct one-to-one mapping. |
DIM_ORACLE_FEEDS | chainlink_ethereum.oracle_addresses | Provides metadata for Chainlink oracles. Note: Replace ethereum with your target chain (e.g., chainlink_optimism.oracle_addresses for Optimism). |
EZ_ORACLE_FEEDS | chainlink.price_feeds | Contains Chainlink price feed data. Dune’s chainlink.price_feeds is a curated Spell that provides similar data, often with a more standardized schema across different chains. |
FACT_ORACLE_FEEDS | chainlink.price_feeds | Contains Chainlink price feed data. This maps directly to Dune’s curated chainlink.price_feeds Spell. |
DIM_CONTRACTS | ethereum.contracts | Contains metadata for deployed contracts. Note: Replace ethereum with your target chain. Dune also has a cross-chain evms.contracts table for multi-chain analysis. |
DIM_CONTRACT_ABIS | ethereum.contracts | Holds contract ABI data. Flipside had a separate table, but Dune integrates ABI information directly into the contracts table. |
DIM_EVENT_SIGNATURES | abi.signatures ; decoding.evm_signatures | Contains event signatures for decoding. Dune provides abi.signatures for general signatures and decoding.evm_signatures for those actively used in decoding EVM data. |
DIM_FUNCTION_SIGNATURES | abi.signatures ; decoding.evm_signatures | Contains function signatures for decoding. Similar to event signatures, Dune separates these into general and EVM-specific tables. |
DIM_LABELS | labels.addresses ; labels.owner_addresses ; labels.owner_details | Contains address labels. Note the structural difference: Flipside used a single table, whereas Dune employs a more granular, multi-table structure that separates labels for addresses from labels for entities/owners. You may need to JOIN these tables. |
EZ_BALANCE_DELTAS | balances_ethereum.erc20_day ; ethereum.traces | Provides token and native asset balance changes. On Dune, you can calculate balance deltas from daily balance tables or derive them from transfer tables like erc20_ethereum.evt_Transfer and ethereum.traces (value > 0 ). |
EZ_CURRENT_BALANCES | balances_ethereum.erc20_latest | Provides current wallet balances. Dune’s balances_ethereum.erc20_latest table provides the most recent balance for tokens, similar to Flipside’s convenience table. |
EZ_NATIVE_TRANSFERS | tokens.transfers | This is a direct mapping to the tokens.transfers table. |
EZ_SNAPSHOT | dune.shot.dataset_follows
dune.shot.dataset_proposals_view
dune.shot.dataset_spaces_view
dune.shot.dataset_users
dune.shot.dataset_votes_view | Contains off-chain Snapshot voting data. Note the structural difference: Flipside aggregated this into a single table. Dune ingests Snapshot’s data into multiple, more granular tables that you will need to JOIN using proposal or space IDs. |
EZ_TOKEN_TRANSFERS | erc20_ethereum.evt_Transfer | Contains ERC-20 token transfer events. Dune’s decoded event tables provide the raw transfer data. For aggregated, cleaned data across all chains, use the curated tokens.transfers table. |
FACT_BLOCKS | ethereum.blocks | Provides execution-layer block data. For raw block data, ethereum.blocks is a direct match. For aggregated metrics like daily gas fees, Dune offers pre-computed tables in the dune schema. |
FACT_CONTRACT_READS | Decoded call tables (e.g., aave_v3_ethereum.AToken_call_balanceOf ) | Contains data from contract reads. On Dune, this corresponds to decoded call tables for specific protocols. Use the data explorer to find the specific contract and function you need. |
FACT_DECODED_EVENT_LOGS | Decoded event tables (e.g., erc20_ethereum.evt_Transfer ) | Contains decoded event logs. This is a core feature of Dune. Instead of one large table, Dune has individual decoded event tables for popular contracts, which are much more efficient to query. |
FACT_DECODED_TRACES | Decoded call tables (e.g., uniswap_v3_ethereum.Factory_call_createPool ) | Contains decoded trace/call data. Similar to events, Dune provides decoded call tables for specific function calls on popular contracts. |
FACT_ETH_BALANCES | balances_ethereum.native_day | Contains historical ETH balances. Dune’s daily balance tables offer daily snapshots of balances, which is often more performant than querying raw transfer data to reconstruct balances. |
FACT_EVENT_LOGS | ethereum.logs | Contains raw, undecoded event logs. This is a direct one-to-one mapping. |
FACT_TOKEN_BALANCES | balances_ethereum.erc20_day | Contains historical token balances. Dune’s daily balance tables offer daily snapshots, providing a more efficient way to query historical balances than reconstructing from transfers. |
FACT_TOKEN_TRANSFERS | erc20_ethereum.evt_Transfer | Contains raw ERC-20 token transfer events. This maps to the raw decoded event table on Dune for the Transfer event on ERC-20 contracts. |
FACT_TRANSACTIONS | ethereum.transactions | Contains execution-layer transaction data. This is a direct one-to-one mapping. |
DIM_DEX_LIQUIDITY_POOLS | dex.pools | Contains information on DEX liquidity pools. Dune’s dex.pools Spell aims to provide standardized pool data across a wide variety of DEXs. |
EZ_BRIDGE_ACTIVITY | bridge.flows | Aggregates bridge deposit and withdrawal activity. Dune’s bridge.flows is a comprehensive curated Spell that covers a wide array of bridging protocols with a standardized schema. |
EZ_DEX_SWAPS | dex.trades | Contains DEX swap events. This is a major improvement on Dune. The dex.trades Spell is a powerful curated table that aggregates and standardizes swap data from a much wider range of protocols than Flipside’s table. |
EZ_LENDING_BORROWS | lending.borrows | Contains asset borrowing events from lending protocols. Dune’s lending.borrows Spell aggregates this data across many protocols into a standardized format. |
EZ_LENDING_DEPOSITS | lending.supplies | Contains asset deposit events into lending protocols. Dune’s lending.supplies Spell aggregates this data across many protocols into a standardized format. |
EZ_LENDING_FLASHLOANS | lending.flashloans | Contains flash loan transactions. Dune’s lending.flashloans Spell aggregates this data across protocols that support flash loans. |
EZ_LENDING_LIQUIDATIONS | lending.liquidations | Contains collateral liquidation events. Dune’s lending.liquidations Spell aggregates liquidation data across multiple lending protocols. |
EZ_LENDING_REPAYMENTS | lending.repayments | Contains loan repayment events. Dune’s lending.repayments Spell aggregates this data across multiple lending protocols. |
EZ_LENDING_WITHDRAWS | lending.withdraws | Contains asset withdrawal events from lending protocols. Dune’s lending.withdraws Spell aggregates this data across many protocols. |
EZ_LIQUID_STAKING_DEPOSITS | staking_ethereum.deposits | Contains liquid staking deposit events. Dune’s liquid staking tables aggregate data from a wide range of liquid staking providers. |
EZ_LIQUID_STAKING_WITHDRAWALS | staking_ethereum.withdrawals | Contains liquid staking withdrawal events. Dune’s liquid staking tables aggregate data from various liquid staking providers. |
EZ_ENS_DOMAINS | labels.ens | Contains data on ENS domain registrations. This maps well to Dune’s labels.ens table. |
FACT_DAO_VOTES | dao.votes | Contains DAO voting records. Dune’s dao.votes Spell aims to standardize voting data across different DAO frameworks. |
FACT_REGISTRATIONS | ens.view_registrations | Contains ENS registration records. This is a direct mapping. |
FACT_RENEWALS | ens.view_renewals | Contains ENS domain renewal records. This is a direct mapping. |
FACT_TRANSFERS | tokens.transfers | Contains token transfer events. Dune’s tokens.transfers is a curated Spell that provides a standardized format for all token transfers. |
EZ_GOVERNANCE_VOTES | governance.votes | Contains records of governance votes. Dune’s governance.votes spell covers multiple protocols, including Maker. |
FACT_CAT_BITE | maker_ethereum.cat_evt_bite | Contains MakerDAO liquidation events. This is a direct mapping to the raw event table in Dune. |
DIM_NFT_COLLECTION_METADATA | nft.collections | Contains metadata for NFT collections. Dune’s nft.collections Spell provides curated metadata for a vast number of NFT collections. |
EZ_NFT_MINTS | nft.mints | Contains NFT mint events. Dune’s nft.mints is a curated Spell that identifies and standardizes minting events across various standards. |
EZ_NFT_SALES | nft.trades | Contains NFT sale events. This is another major improvement on Dune. The nft.trades Spell is a powerful abstraction that aggregates sales across dozens of marketplaces into a single, clean table. |
EZ_NFT_TRANSFERS | nft.transfers | Contains NFT transfer events. Dune’s nft.transfers curated table is the standard place to find all ERC721 and ERC1155 transfers. |
EZ_ASSET_METADATA | tokens.erc20 , tokens.nft | Contains asset metadata. Dune separates metadata for fungible (tokens.erc20 ) and non-fungible (tokens.nft ) tokens into dedicated, curated tables. |
EZ_PRICES_HOURLY | prices.hour | Provides hourly token prices. This is a direct mapping to Dune’s hourly prices table. Dune also offers prices.usd_daily and prices.usd_latest . |
EZ_SWAPS | dex.trades | Contains DEX swap events. This maps to Dune’s comprehensive dex.trades Spell, which covers a much wider array of DEXs. |
DIM_DATES | utils.days , utils.hours , utils.minutes | Provides a table of dates for time-series analysis. Dune offers several utility tables for different time granularities to simplify JOIN operations. |
FACT_TRACES | ethereum.traces | Contains raw trace data for internal contract calls. This is a direct one-to-one mapping. |