theericstoneChain overview copy
    Updated 2025-01-08
    -- forked from andreafiandro / Chain overview @ https://flipsidecrypto.xyz/andreafiandro/q/K8zg8g-yZt5n/chain-overview

    -- Aggregated stats for different destination chain
    SELECT
    destination_chain,
    COUNT(DISTINCT TX_HASH) as total_txs,
    COUNT(DISTINCT platform) as tot_bridge_platform,
    COUNT(DISTINCT token_symbol) as tot_asset
    FROM
    ethereum.defi.ez_bridge_activity
    WHERE
    block_timestamp > '{{starting_date}}'
    AND Destination_chain in (
    'near',
    'solana',
    'sui',
    'osmosis',
    'aptos',
    'telos',
    'sei',
    'injective'
    )
    GROUP BY
    destination_chain


    QueryRunArchived: QueryRun has been archived