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

    select
    count(distinct(liquidated_wallet)) as count_new_liquidated_wallet
    from base

    Run a query to Download Data