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

    select
    count(distinct(borrower)) as count_new_borrower
    from base

    Run a query to Download Data