MLDZMNholders
    Updated 2023-05-06

    select
    date_trunc('week', first_transaction_stamp) as date,
    count (distinct sender) as new_receivers,
    sum(new_receivers) over (order by date) as total_receivers
    from (
    select
    tx_to as sender,
    min(block_timestamp) as first_transaction_stamp
    FROM solana.core.fact_transfers
    WHERE mint = '4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy'
    group by 1
    )
    where date>='2023-01-01'
    group by 1


    Run a query to Download Data