zakkisyedThorchain Active Wallets
    Updated 2024-01-14


    select date_trunc(day,block_timestamp) as date, count(distinct from_address) as count1, count (distinct to_address) as count2, count1+count2 as total_count
    from flipside_prod_db.thorchain.transfers

    where from_address != to_address

    and block_timestamp >= CURRENT_DATE - 90


    group by 1
    order by 1 desc
    QueryRunArchived: QueryRun has been archived