Sandeshrabby gas payouts
    Updated 2024-05-01
    (
    select
    'ethereum' as chain,
    count(distinct tx_hash) as transactions,
    count(distinct to_address) as users,
    sum(amount_usd) as volume
    from ethereum.core.ez_native_transfers
    where origin_from_address=lower('0x76dd65529Dc6c073C1E0af2a5ecC78434bdBF7D9')
    and block_timestamp >= '2024-04-01'
    )

    union all

    (
    select
    'polygon' as chain,
    count(distinct tx_hash) as transactions,
    count(distinct to_address) as users,
    sum(amount_usd) as volume
    from polygon.core.ez_native_transfers
    where origin_from_address=lower('0x76dd65529Dc6c073C1E0af2a5ecC78434bdBF7D9')
    and block_timestamp >= '2024-04-01'
    )

    union all

    (
    select
    'base' as chain,
    count(distinct tx_hash) as transactions,
    count(distinct to_address) as users,
    sum(amount_usd) as volume
    from base.core.ez_native_transfers
    where origin_from_address=lower('0x76dd65529Dc6c073C1E0af2a5ecC78434bdBF7D9')
    and block_timestamp >= '2024-04-01'
    )
    QueryRunArchived: QueryRun has been archived