granadohoAddresses that made at least 1 Anchor Borrow in the last 3 months
    Updated 2022-02-23
    with sender_list as (
    select
    sender,
    count(sender) as count_num
    from anchor.borrows
    where date(block_timestamp) > DATEADD(month, -3, current_date)
    group by 1
    )

    select
    distinct sender
    from sender_list
    where count_num >= 1
    Run a query to Download Data