Pine Analytics copy copy copy
    Updated 2025-05-08
    SELECT
    to_address,
    count(distinct from_address) as wallets,
    count(distinct tx_hash) as transactions,
    sum(TX_FEE) as fee_volume_eth


    FROM ethereum.core.fact_transactions
    WHERE TX_TYPE = 4
    --LIMIT 100;
    group by 1
    order by 2 desc



    QueryRunArchived: QueryRun has been archived