alitaslimiSupply Blockchains Daily (30D)
    Updated 2025-02-19
    with
    -------------------- Arbitrum --------------------
    arbitrum_mints as (
    select
    block_timestamp::date as date,
    count(distinct tx_hash) as transactions,
    count(distinct to_address) as addresses,
    sum(amount) as volume
    from
    arbitrum.core.ez_token_transfers
    where
    block_timestamp::date between (current_date - 31) and (current_date - 1)
    and contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
    and from_address = '0x0000000000000000000000000000000000000000'
    and to_address != '0x0000000000000000000000000000000000000000'
    group by
    date
    ),
    arbitrum_burns as (
    select
    block_timestamp::date as date,
    count(distinct tx_hash) as transactions,
    count(distinct from_address) as addresses,
    sum(amount) as volume
    from
    arbitrum.core.ez_token_transfers
    where
    block_timestamp::date between (current_date - 31) and (current_date - 1)
    and contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
    and from_address != '0x0000000000000000000000000000000000000000'
    and to_address = '0x0000000000000000000000000000000000000000'
    group by
    date
    ),
    -------------------- Avalanche --------------------
    avalanche_mints as (
    Last run: 25 days ago
    Date
    Blockchain
    Minted Volume
    Burned Volume
    Net Volume
    Circulating Supply
    Mints
    Burns
    Minters
    Burners
    1
    2025-02-18 00:00:00.000Arbitrum0.00024910.00286846-0.00261936-0.08670564545
    2
    2025-02-18 00:00:00.000Avalanche69.7122587718.9772075450.73505123-412.7187061233122910
    3
    2025-02-18 00:00:00.000BSC0.006621320.00706664-0.00044532-0.063696042525
    4
    2025-02-18 00:00:00.000Optimism0.001072610.000113630.00095898-0.043070313333
    5
    2025-02-18 00:00:00.000Polygon0.0000940.0014565-0.0013625-0.211686082919
    6
    2025-02-17 00:00:00.000Arbitrum0.049288460.004926250.04436221-0.084086241610138
    7
    2025-02-17 00:00:00.000Avalanche37.346152337.695496729.65065563-463.45375735337296
    8
    2025-02-17 00:00:00.000BSC0.000177140.00089685-0.00071971-0.063250722525
    9
    2025-02-17 00:00:00.000Optimism0.004409270.0065809-0.00217163-0.044029299775
    10
    2025-02-17 00:00:00.000Polygon0.000585070.00310988-0.00252481-0.210323583636
    11
    2025-02-16 00:00:00.000Arbitrum0.011972250.006479190.00549306-0.1284484591078
    12
    2025-02-16 00:00:00.000Avalanche11.0645625160.50381398-49.43925147-493.1044129817151611
    13
    2025-02-16 00:00:00.000BSC0.0002870.00150613-0.00121913-0.062531012726
    14
    2025-02-16 00:00:00.000Optimism0.005935670.005117950.00081772-0.0418576610775
    15
    2025-02-16 00:00:00.000Polygon0.001135680.001121680.000014-0.207798773222
    16
    2025-02-15 00:00:00.000Arbitrum0.144525240.20559101-0.06106577-0.133941519574
    17
    2025-02-15 00:00:00.000Avalanche2.1633073733.01821754-30.85491017-443.665161512010189
    18
    2025-02-15 00:00:00.000BSC0.0009980.000679450.00031855-0.061311882828
    19
    2025-02-15 00:00:00.000Optimism0.001484880.00153149-0.00004661-0.04267538128127
    20
    2025-02-14 00:00:00.000Arbitrum0.001193450.001076780.00011667-0.072875743636
    ...
    151
    14KB
    66s