Eman-RazNumber of $MOON Holders Over Time
    Updated 20 hours ago
    -- forked from Number of $AXL Holders Across Different Chains Over Time @ https://flipsidecrypto.xyz/studio/queries/0a4a7813-2011-4aa4-894b-0b1ee584ee2e

    with transactions as (
    select
    block_timestamp :: date as date,
    tx_from as address,
    - amount/pow(10,5) as amount
    from
    eclipse.core.fact_transfers
    where
    mint = 'HgD4Dc6qYCj3UanMDiuC4qANheeTsAvk6DY91B3F8gnL'
    union
    all
    select
    block_timestamp :: date as date,
    tx_to as address,
    amount/pow(10,5) as amount
    from
    eclipse.core.fact_transfers
    where
    mint = 'HgD4Dc6qYCj3UanMDiuC4qANheeTsAvk6DY91B3F8gnL'
    ),
    date_list as (
    select
    block_timestamp :: date as date
    from
    eclipse.core.fact_transfers
    where
    block_timestamp :: date >= '2024-11-07'
    ),
    all_dates AS (
    SELECT
    DISTINCT date
    FROM
    date_list
    ),
    Last run: about 20 hours agoAuto-refreshes every 24 hours
    Date
    Number of Holders
    1
    2024-11-07 00:00:00.0000
    2
    2024-11-08 00:00:00.0002128
    3
    2024-11-09 00:00:00.0002824
    4
    2024-11-10 00:00:00.0003486
    5
    2024-11-11 00:00:00.0004133
    6
    2024-11-12 00:00:00.0004461
    7
    2024-11-13 00:00:00.0004699
    8
    2024-11-14 00:00:00.0004802
    9
    2024-11-15 00:00:00.0004998
    10
    2024-11-16 00:00:00.0005057
    11
    2024-11-17 00:00:00.0005207
    12
    2024-11-18 00:00:00.0005271
    13
    2024-11-19 00:00:00.0005289
    14
    2024-11-20 00:00:00.0005291
    15
    2024-11-21 00:00:00.0005293
    16
    2024-11-22 00:00:00.0005290
    17
    2024-11-23 00:00:00.0005288
    18
    2024-11-24 00:00:00.0005290
    19
    2024-11-25 00:00:00.0005295
    20
    2024-11-26 00:00:00.0005296
    ...
    170
    6KB
    36s