HOLDER_DISTRIBUTION | HOLDERS | BALANCE | TOTAL_VALUE | |
---|---|---|---|---|
1 | > 100 | 11 | 8011894.19339559 | 2127.398265172 |
2 | Less than 1 | 1776 | 661669.310351111 | 175.693051978 |
3 | 1-10 | 332 | 3959699.70291574 | 1051.419062115 |
4 | > 10 | 60 | 5768333.37875198 | 1531.66556206 |
LittlerDataLCD holders distribution
Updated 2025-02-28
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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
4
186B
25s