LTirrell[Easy] Anchor Users -- monthly unique addresses
    Updated 2021-12-30
    -- How many new users has Anchor attracted in the last 3 months?
    -- How many remain active participants?
    -- Bonus points for additional metrics that categorize user behavior
    -- (ie -- Earn vs Borrow vs Supply vs ANC Staking, etc)
    with all_last_90d as (
    select
    sender,
    block_timestamp
    from
    anchor.borrows
    union
    select
    sender,
    block_timestamp
    from
    anchor.repay
    union
    select
    sender,
    block_timestamp
    from
    anchor.bonds
    union
    select
    sender,
    block_timestamp
    from
    anchor.collateral
    union
    select
    sender,
    block_timestamp
    from
    anchor.deposits
    union
    select
    Run a query to Download Data