adambalaanchor borrower
    Updated 2022-02-24


    with anc as (

    select distinct sender, date_trunc('day',block_timestamp) as date ,amount_usd
    from anchor.borrows
    where block_timestamp::date > current_date-90
    group by 1,2,3)

    select
    *
    from anc



















    Run a query to Download Data