kasadeghThe total number of addresses that have made a transfer
    Updated 2022-06-28
    with day_FROM_ADDRESS as (
    select distinct date(BLOCK_TIMESTAMP) as Date , FROM_ADDRESS as ADDRESS from flipside_prod_db.thorchain.transfers
    )

    select Date , count(ADDRESS) as "The total number of addresses that have made a transfer" from day_FROM_ADDRESS
    group by Date
    order by Date
    Run a query to Download Data