Sandeshrabby gas payouts copy
    Updated 2024-12-26
    -- forked from rabby gas payouts @ https://flipsidecrypto.xyz/edit/queries/dabcb1dd-4989-4b4b-9a84-bf3208eb0bd7

    (
    select
    'ethereum' as chain,
    count(distinct tx_hash) as transactions
    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
    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
    from base.core.ez_native_transfers
    where origin_from_address=lower('0x76dd65529Dc6c073C1E0af2a5ecC78434bdBF7D9')
    and block_timestamp >= '2024-04-01'
    )

    union all

    (
    QueryRunArchived: QueryRun has been archived