Updated 2025-04-06
    select
    date(block_timestamp) as date,
    sum(
    case when tx_type like 'burn' then -amount else amount end
    ) as net_supply,
    sum(net_supply) over (order by date) as total_supply

    from (
    select
    block_timestamp,
    tx_hash,
    'burn' as tx_type,
    amount

    from ink.core.ez_token_transfers
    where contract_address like lower('0xF1815bd50389c46847f0Bda824eC8da914045D14')
    and to_address like '0x0000000000000000000000000000000000000000'

    union all

    select
    block_timestamp,
    tx_hash,
    'mint' as tx_type,
    amount

    from ink.core.ez_token_transfers
    where contract_address like lower('0xF1815bd50389c46847f0Bda824eC8da914045D14')
    and from_address like '0x0000000000000000000000000000000000000000'
    )
    group by 1
    order by 1 desc




    Last run: 19 days ago
    DATE
    NET_SUPPLY
    TOTAL_SUPPLY
    1
    2025-04-06 00:00:00.000-14703.0706291166813.554224
    2
    2025-04-05 00:00:00.000-1717.386261181516.624853
    3
    2025-04-04 00:00:00.000266930.5909231183234.011113
    4
    2025-04-03 00:00:00.000-9720.883353916303.42019
    5
    2025-04-02 00:00:00.000-69805.9744926024.303543
    6
    2025-04-01 00:00:00.000175247.859327995830.277943
    7
    2025-03-31 00:00:00.00064556.078288820582.418616
    8
    2025-03-30 00:00:00.00012011.429306756026.340328
    9
    2025-03-29 00:00:00.00011699.189906744014.911022
    10
    2025-03-28 00:00:00.000-158174.520957732315.721116
    11
    2025-03-27 00:00:00.0006895.825272890490.242073
    12
    2025-03-26 00:00:00.00032613.660467883594.416801
    13
    2025-03-25 00:00:00.0002188.633779850980.756334
    14
    2025-03-24 00:00:00.00094453.304319848792.122555
    15
    2025-03-23 00:00:00.00015083.878725754338.818236
    16
    2025-03-22 00:00:00.000-55310.723214739254.939511
    17
    2025-03-21 00:00:00.000-129436.784206794565.662725
    18
    2025-03-20 00:00:00.00031071.335606924002.446931
    19
    2025-03-19 00:00:00.00061589.165226892931.111325
    20
    2025-03-18 00:00:00.0006174.106629831341.946099
    ...
    109
    6KB
    7s