Price Change | SYMBOL | |
---|---|---|
1 | -1.050929669 | APT |
2 | -45.401302801 | ARB |
3 | -43.929821638 | AVAX |
4 | -24.095507181 | AURORA |
5 | -13.407484493 | BTC |
6 | -24.200675851 | NEAR |
7 | -14.346202305 | KLAY |
8 | -23.797946469 | GNO |
9 | -14.321372069 | FLOW |
10 | -18.914198641 | ETH |
11 | -4.052251869 | BNB |
12 | -9.224624948 | OP |
13 | -45.169664225 | MATIC |
14 | -6.450539361 | OSMO |
15 | -31.344315144 | SOL |
16 | 7.239348805 | RUNE |
17 | -28.420494952 | GLMR |
18 | -1.27555553 | ADA |
19 | 5.475251862 | TIA |
20 | -43.936610201 | DYM |
Eman-RazMonthly Percentage Changes in the Prices of Native Coins of Different Blockchains
Updated 2025-03-10
999
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 apt as (with tab1 as (select price
from aptos.price.ez_prices_hourly
where token_address='0x1::aptos_coin::AptosCoin'
and name='Aptos Coin' and symbol='APT'
order by hour desc
limit 1),
tab2 as (select avg(price) as avg_price
from aptos.price.ez_prices_hourly
where token_address='0x1::aptos_coin::AptosCoin'
and name='Aptos Coin' and symbol='APT'
and hour::date=current_date-30)
select ((price-avg_price)/avg_price)*100 as "Price Change", 'APT' as symbol
from tab1 , tab2),
------------------------------------------------------
------------------------------------------------------
arb as (with tab1 as (select price
from arbitrum.price.ez_prices_hourly
where token_address='0x912ce59144191c1204e64559fe8253a0e49e6548'
order by hour desc
limit 1),
tab2 as (select avg(price) as avg_price
from arbitrum.price.ez_prices_hourly
where token_address='0x912ce59144191c1204e64559fe8253a0e49e6548'
and hour::date=current_date-30)
select ((price-avg_price)/avg_price)*100 as "Price Change", 'ARB' as symbol
from tab1 , tab2),
-------------------------------------------------------
-------------------------------------------------------
Last run: 27 days agoAuto-refreshes every 24 hours
26
573B
27s