DIS | USER_COUNT | USER_COUNT_PERCENTAGE | |
---|---|---|---|
1 | H. more than 128 | 4722 | 1.396818 |
2 | B. 2-3 | 107358 | 31.757648 |
3 | E. 16-31 | 24954 | 7.381661 |
4 | C. 4-7 | 21193 | 6.269117 |
5 | A. 1 | 40816 | 12.073811 |
6 | D. 8-15 | 38622 | 11.424802 |
7 | G. 64-127 | 15965 | 4.722618 |
8 | F. 32-63 | 84424 | 24.973525 |
elsinaDistribution of User Transactions
Updated 2025-03-21
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: 14 days ago
8
229B
19s