winnie-fsTransaction count score copy
    Updated 2023-10-19
    -- personal query
    -- forked from Mrfti / Transaction count score @ https://staging.flipsidecrypto.xyz/Mrfti/q/mD4nh_faYo40/transaction-count-score

    SELECT
    'Having more than 4 transaction' as condition,
    '1' as point,
    case
    when count (DISTINCT tx_hash) > 3 then '🟢'
    else '🔴'
    end as true_false
    from base.core.fact_transactions
    where from_address =lower('{{ADDRESS}}')

    union all

    SELECT
    'Having more than 10 transaction' as condition,
    '1' as point,
    case
    when count (DISTINCT tx_hash) > 9 then '🟢'
    else '🔴'
    end as true_false
    from base.core.fact_transactions
    where from_address =lower('{{ADDRESS}}')

    union all

    SELECT
    'Having more than 25 transaction' as condition,
    '1' as point,
    case
    when count (DISTINCT tx_hash) > 24 then '🟢'
    else '🔴'
    end as true_false
    from base.core.fact_transactions
    Run a query to Download Data