KaskoazulTop 2 contracts per protocol
    Updated 2022-03-09
    WITH NEW_USER_ALLTIME AS(
    SELECT
    tx_id, tx_from as new_user,
    min(block_timestamp) as creation_date
    FROM
    terra.transactions
    WHERE TX_STATUS = 'SUCCEEDED'
    GROUP BY tx_id, tx_from
    ),

    NEW_USER_90DAYS AS(
    SELECT
    tx_id, new_user[0] as users
    FROM
    NEW_USER_ALLTIME
    WHERE
    creation_date >= CURRENT_DATE - 90
    AND array_size (new_user) = 1
    ),

    TX_WITH_LABEL AS (
    SELECT
    t.tx_id,
    t.tx_to[0] as smart_contract,
    l.label,
    l.label_type,
    l.label_subtype,
    l.address_name
    FROM
    terra.transactions t
    LEFT JOIN terra.labels l
    ON t.tx_to[0] = l.address
    WHERE t.tx_id IN (SELECT tx_id FROM NEW_USER_90DAYS)
    AND smart_contract IS NOT NULL
    ),

    Run a query to Download Data