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

    select
    count(distinct(vault)) as count_new_vault
    from base

    Run a query to Download Data