USER_TYPE | USERS | |
---|---|---|
1 | a. 1 Transaction | 20288 |
2 | b. 2 - 5 Transactions | 5413 |
3 | c. 6 - 10 Transactions | 653 |
4 | d. 11 - 25 Transactions | 237 |
5 | e. 26 - 50 Transactions | 77 |
6 | f. > 50 Transactions | 47 |
Afonso_DiazGrouping users
Updated 2025-04-01
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
pricet as (
select
hour::date as date,
token_address,
avg(price) as price_usd
from
sei.price.ez_prices_hourly
group by 1, 2
),
main as (
select
tx_hash,
block_timestamp,
to_address as user,
contract_address as token_address,
symbol,
amount,
amount * price_usd as amount_usd
from
sei.core_evm.ez_token_transfers a
left join
pricet on block_timestamp::date = date and pricet.token_address = a.contract_address
where
origin_to_address = '0xc097ab8cd7b053326dfe9fb3e3a31a0cce3b526f'
),
users as (
select
user,
count(distinct tx_hash) as transactions
from
main
group by 1
Last run: about 2 months ago
6
181B
3s