andurileth mau
    Updated 2023-04-24
    -- forked from dsaber / New/retained/reactivated accounts — Ethereum @ https://flipsidecrypto.xyz/dsaber/q/new-retained-reactivated-accounts-solana-_mHu07

    SELECT DATE_TRUNC('month', block_timestamp) AS month,
    count (distinct from_address) AS wallets
    FROM ethereum.core.fact_transactions
    WHERE status = 'SUCCESS'
    AND block_timestamp::DATE >= '2022-12-01'
    GROUP BY 1


    Run a query to Download Data