SalehAXL_tx_date
    Updated 2024-07-20
    select
    date_trunc(day,block_timestamp)::date as Date
    ,count(DISTINCT tx_hash) as Transactions
    ,count(DISTINCT sender) as "Active Users"
    from axelar.defi.ez_bridge_satellite
    where block_timestamp::date>=current_date-30
    group by 1
    order by 1


    QueryRunArchived: QueryRun has been archived