sunshine-julia125 - New users
    Updated 2021-12-30
    WITH bond_user as (SELECT DISTINCT sender FROM anchor.bonds where block_timestamp<CURRENT_DATE-interval'3 months'),
    borrows_user as (SELECT DISTINCT sender FROM anchor.borrows),
    deposits_user as (SELECT DISTINCT sender FROM anchor.deposits)
    select distinct * from(select * from bond_user union all select * from borrows_user union all select * from anchor.deposits) limit 10


    Run a query to Download Data