Sbhn_NPTotal Number of Unique Depositors on MakerDAO
    Updated 2022-11-25
    with base as (select
    depositor,
    min(block_timestamp) as first_tx
    from ethereum.maker.ez_deposits
    where tx_status = 'SUCCESS'
    group by 1)

    select
    count(distinct(depositor)) as count_new_depositor
    from base

    Run a query to Download Data