SYMBOL | TX_COUNT | TX_COUNT_PERCENTAGE | |
---|---|---|---|
1 | WRON | 614517 | 23.567558 |
2 | WETH | 328340 | 12.592283 |
3 | USDC | 281784 | 10.806797 |
4 | AXS | 260593 | 9.994094 |
5 | SLP | 151776 | 5.820815 |
6 | PIXEL | 120214 | 4.610369 |
7 | ANIMA | 47621 | 1.82633 |
8 | Ronke | 47433 | 1.81912 |
9 | CAG | 44119 | 1.692023 |
10 | YGG | 32329 | 1.239861 |
11 | WF | 30546 | 1.17148 |
12 | JAIHOZ | 28512 | 1.093474 |
13 | COCK | 26387 | 1.011977 |
14 | KOKU | 22834 | 0.875715 |
15 | JIN | 22483 | 0.862253 |
elsinaTransactions Count Breakdown by Symbol
Updated 10 days ago
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 katana_swaps_tx AS (
SELECT tx_hash
FROM
ronin.core.ez_decoded_event_logs
WHERE
origin_to_address in ('0x5f0acdd3ec767514ff1bf7e79949640bf94576bd', '0x7d0556d55ca1a92708681e2e231733ebd922597d') and
TX_SUCCEEDED = TRUE and
(
EVENT_NAME = 'Swap'
OR ORIGIN_FUNCTION_SIGNATURE LIKE '%swap%'
OR TOPIC_0 = '0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822'
)
),
katana_swaps as (
select
t.tx_hash,
block_timestamp,
origin_from_address as user,
symbol,
amount_usd,
ROW_NUMBER() OVER (PARTITION BY t.TX_HASH ORDER BY CASE WHEN AMOUNT_USD = 0 OR AMOUNT_USD IS NULL THEN AMOUNT ELSE AMOUNT_USD END DESC) as row_num
from katana_swaps_tx k left join ronin.core.ez_token_transfers t
where k.tx_hash = t.tx_hash
),
base as (
SELECT *
FROM katana_swaps
WHERE row_num = 1;
)
select
symbol,
count(distinct tx_hash) as tx_count,
100.0 * COUNT(DISTINCT tx_hash) / SUM(COUNT(DISTINCT tx_hash)) OVER () AS tx_count_percentage
Last run: 10 days ago
15
365B
14s