LittlerDataLCD holders distribution
    Updated 2025-02-28

    with lcd_price as (
    select
    hour
    ,price
    from polygon.price.ez_prices_hourly
    where token_address = '0xc2a45fe7d40bcac8369371b08419ddafd3131b4a'
    and hour > current_date - 1
    order by hour desc
    limit 1
    ),

    senders as (
    select
    from_address as user
    ,sum(raw_amount)/ 1e18 lcd_Sent
    from polygon.core.ez_token_transfers
    where contract_address = '0xc2a45fe7d40bcac8369371b08419ddafd3131b4a'
    group by 1
    ),

    receivers as (
    select
    to_address as user
    ,sum(raw_amount)/ 1e18 lcd_received
    from polygon.core.ez_token_transfers
    where contract_address = '0xc2a45fe7d40bcac8369371b08419ddafd3131b4a'
    group by 1
    ),

    balance as (
    select
    user
    ,coalesce(lcd_received, 0) lcd_receivedd
    ,coalesce(lcd_Sent, 0) lcd_Sentt
    Last run: 14 days ago
    HOLDER_DISTRIBUTION
    HOLDERS
    BALANCE
    TOTAL_VALUE
    1
    > 100118011894.193395592127.398265172
    2
    Less than 11776661669.310351111175.693051978
    3
    1-103323959699.702915741051.419062115
    4
    > 10605768333.378751981531.66556206
    4
    186B
    25s