DIS | USER_COUNT | USER_COUNT_PERCENTAGE | |
---|---|---|---|
1 | H. more than 128 | 9628 | 2.74898 |
2 | B. 2-3 | 58622 | 16.737713 |
3 | E. 16-31 | 38836 | 11.088428 |
4 | C. 4-7 | 18750 | 5.353487 |
5 | G. 64-127 | 21600 | 6.167217 |
6 | A. 1 | 42664 | 12.181396 |
7 | D. 8-15 | 67157 | 19.174621 |
8 | F. 32-63 | 92982 | 26.548157 |
elsinaDistribution of User Transactions
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,
count(distinct tx_hash) as tx_count
from base
group by user
)
select
case
Last run: about 1 month ago
8
228B
19s