DIS | USER_COUNT | USER_COUNT_PERCENTAGE | |
---|---|---|---|
1 | D. $100 - $1,000 | 23562 | 6.727406 |
2 | C. $10 - $100 | 49785 | 14.214579 |
3 | E. More than $1,000 | 11106 | 3.170978 |
4 | A. less than $1 | 222180 | 63.436682 |
5 | B. $1 - $10 | 43606 | 12.450355 |
elsinaDistribution of User Volume
Updated 2025-04-11
99
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 price as (
select
date_trunc('day', hour) as date,
avg(price) as price_usd
from crosschain.price.ez_prices_hourly
where
blockchain = 'ethereum' and
token_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'
group by 1
),
base as (
SELECT
block_timestamp,
from_address,
tx_hash,
value as amount,
amount * price_usd as amount_usd,
tx_fee
from ink.core.fact_transactions left join price on block_timestamp::date = date
where
tx_succeeded = 'TRUE' and
block_timestamp::date >= '2024-12-18'
),
per_user as (
SELECT
from_address as user,
sum(amount_usd) as volume
from base
group by user
)
select
case
Last run: 2 months ago
5
179B
14s