TOKEN_PAIR | SWAPS | SWAPPERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|
1 | KAIA -> stKAIA | 2496 | 467 | 32164975.0287014 | 12886.608585217 |
2 | stKAIA -> KAIA | 3544 | 1361 | 18792617.2658538 | 5302.657242058 |
3 | KAIA -> BORA | 6112 | 771 | 11264070.5322429 | 1842.943477134 |
4 | KAIA -> GCKLAY | 2756 | 832 | 8781086.50902918 | 3186.170721709 |
5 | USDT -> KAIA | 7282 | 1199 | 7420681.51557256 | 1019.044426747 |
6 | BORA -> KAIA | 6302 | 774 | 7176723.22071407 | 1138.800891894 |
7 | oXRP -> KAIA | 6206 | 903 | 6977478.87009029 | 1124.311774104 |
8 | KAIA -> USDT | 8200 | 1301 | 5290077.83173866 | 645.131442895 |
9 | KAIA -> oXRP | 7883 | 245 | 5053807.11361399 | 641.10200604 |
10 | GCKLAY -> KAIA | 2473 | 546 | 3930155.54261498 | 1589.225856294 |
Afonso_DiazTop Token Pairs
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
pricet as (
select
hour::date as date,
token_address,
decimals,
symbol,
avg(price) as token_price_usd
from
kaia.price.ez_prices_hourly
group by 1, 2, 3, 4
),
swaps as (
select
tx_hash,
block_timestamp,
origin_from_address as swapper,
replace(topics[2], '0x000000000000000000000000', '0x') as token_in_contract,
replace(topics[3], '0x000000000000000000000000', '0x') as token_out_contract,
utils.udf_hex_to_int('0x' || substring(data, 67, 64)) as amount_in_unadj,
utils.udf_hex_to_int('0x' || right(data, 64)) as amount_out_unadj
from
kaia.core.fact_event_logs
where
tx_succeeded
and topics[0] = '0x20efd6d5195b7b50273f01cd79a27989255356f9f13293edc53ee142accfdb75'
and origin_to_address = '0xf50782a24afcb26acb85d086cf892bfffb5731b5'
),
main as (
select
swaps.*,
nvl(a.symbol, c.symbol) as symbol_in,
nvl(b.symbol, d.symbol) as symbol_out,
Last run: 10 days ago
10
590B
66s