rakhisanjayaUntitled Query
    with transfers as (select count(distinct tx_hash) as transfer_count ,count(distinct tx_signer) as users_count , sum(deposit/1e18) as trasnfer_amount
    , block_timestamp::date as dt
    from near.core.fact_transfers
    group by dt)
    Run a query to Download Data