Blockchain | Circulating Supply | Market Cap | Minted Volume | Burned Volume | Mints | Burns | Minters | Burners | |
---|---|---|---|---|---|---|---|---|---|
1 | Arbitrum | 13.41962638 | 1153752.37802054 | 4603.85424349 | 4590.43461711 | 473380 | 584112 | 337170 | 403132 |
2 | Avalanche | 5150.95392357 | 442853263.578931 | 76309.94711451 | 71158.99319094 | 24793 | 10133 | 11008 | 4628 |
3 | BSC | 2.75691034 | 237025.366481509 | 4417.34055495 | 4414.58364461 | 614193 | 542392 | 428672 | 370388 |
4 | Ethereum | 0.17361439 | 14926.497180249 | 64.51285225 | 64.33923786 | 1479 | 1111 | 1249 | 906 |
5 | Optimism | 1.38036391 | 118676.787162262 | 2181.2959985 | 2179.91563459 | 248198 | 199810 | 174055 | 140760 |
6 | Polygon | 4.71133889 | 405057.361067729 | 3494.58197598 | 3489.87063709 | 827266 | 591739 | 526831 | 377511 |
alitaslimiSupply Blockchains
Updated 2025-03-03
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
------------------------------ Prices ------------------------------
prices as (
select
response as price
from
(
select
live.udf_api(
'https://api.coingecko.com/api/v3/simple/price?ids=bitcoin-avalanche-bridged-btc-b&vs_currencies=usd'
):data:"bitcoin-avalanche-bridged-btc-b":usd as response
)
-- select
-- avg(price) as price
-- from
-- avalanche.price.ez_prices_hourly
-- where
-- hour::date >= current_date - 1
-- and symbol = 'BTC.b'
),
-------------------- Arbitrum --------------------
arbitrum_mints as (
select
count(distinct tx_hash) as transactions,
count(distinct to_address) as addresses,
sum(amount) as volume
from
arbitrum.core.ez_token_transfers
where
contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
and from_address = '0x0000000000000000000000000000000000000000'
and to_address != '0x0000000000000000000000000000000000000000'
),
arbitrum_burns as (
select
count(distinct tx_hash) as transactions,
Last run: 11 days agoAuto-refreshes every 12 hours
6
564B
591s