alitaslimiSupply Over Time
    Updated 2025-02-19
    with
    -------------------- Arbitrum --------------------
    arbitrum_mints as (
    select
    date_trunc('month', block_timestamp) 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
    contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
    and from_address = '0x0000000000000000000000000000000000000000'
    and to_address != '0x0000000000000000000000000000000000000000'
    group by
    date
    ),
    arbitrum_burns as (
    select
    date_trunc('month', block_timestamp) 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
    contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
    and from_address != '0x0000000000000000000000000000000000000000'
    and to_address = '0x0000000000000000000000000000000000000000'
    group by
    date
    ),
    -------------------- Avalanche --------------------
    avalanche_mints as (
    select
    date_trunc('month', block_timestamp) as date,
    Last run: 24 days ago
    Date
    Blockchain
    Minted Volume
    Burned Volume
    Net Volume
    Circulating Supply
    Mints
    Burns
    Minters
    Burners
    1
    2025-02-01 00:00:00.000Arbitrum4.014294014.23929066-0.2249966513.49547511280208229116
    2
    2025-02-01 00:00:00.000Avalanche545.14691847655.48809685-110.341178385022.77493454578195320120
    3
    2025-02-01 00:00:00.000BSC0.017818220.0605561-0.042737882.78399235881268098
    4
    2025-02-01 00:00:00.000Ethereum0.004271460.002740270.001531190.181807295555
    5
    2025-02-01 00:00:00.000Optimism0.072701930.10074957-0.028047641.4482404147208122183
    6
    2025-02-01 00:00:00.000Polygon0.020108250.20715688-0.187048634.733769947326069243
    7
    2025-01-01 00:00:00.000Arbitrum4.636828364.93946148-0.3026331213.720471761066342883247
    8
    2025-01-01 00:00:00.000Avalanche662.26915217933.18303846-270.913886295133.11611292821353433173
    9
    2025-01-01 00:00:00.000BSC0.336148740.41648967-0.080340932.82673023450434396399
    10
    2025-01-01 00:00:00.000Optimism0.323040370.3550483-0.032007931.47628804239624180578
    11
    2025-01-01 00:00:00.000Polygon0.035665030.17115085-0.135485824.92081857871575821440
    12
    2024-12-01 00:00:00.000Arbitrum2.905670793.58991096-0.6842401714.02310488640213538151
    13
    2024-12-01 00:00:00.000Avalanche956.886336021031.5056784-74.619342385404.029999211256637775416
    14
    2024-12-01 00:00:00.000BSC1.625228771.97803901-0.352810242.90707116105316101278
    15
    2024-12-01 00:00:00.000Ethereum0.037942590.035436530.002506060.18027616666
    16
    2024-12-01 00:00:00.000Optimism0.154490150.25405819-0.099568041.50829597226186189141
    17
    2024-12-01 00:00:00.000Polygon0.044014830.29351549-0.249500665.05630439358623348579
    18
    2024-11-01 00:00:00.000Arbitrum22.0612781525.47203972-3.4107615714.70734505467297329111
    19
    2024-11-01 00:00:00.000Avalanche1352.842331961514.72057801-161.878246055478.64934159850580482232
    20
    2024-11-01 00:00:00.000BSC1.181761942.27165381-1.089891873.2598814119325109302
    ...
    172
    17KB
    165s