Flipside TeamBurn Over Time
    Updated 2025-02-24
    -- forked from Reward over time @ https://flipsidecrypto.xyz/edit/queries/5616e52b-6449-4307-820b-cd19eefd1392

    with burn_tx as (
    select block_timestamp,
    'Burn' as type,
    burn_amount/1e9 as amount,
    tx_id,
    owner as wallet
    from solana.defi.fact_token_burn_actions
    join solana.core.fact_token_account_owners b on (token_account = account_address)
    where mint = '4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy'
    and block_timestamp::date >= '2023-01-01'
    )

    select date_trunc('week', block_timestamp) as date,
    count(distinct wallet) as wallets,
    sum(amount) as "Burn Amount",
    sum("Burn Amount") over (order by date) as "Total Burn"
    from burn_tx
    group by 1




    Last run: about 2 months ago
    DATE
    WALLETS
    Burn Amount
    Total Burn
    1
    2023-01-16 00:00:00.00013026.83304.8
    2
    2024-01-15 00:00:00.0001117402.9834191741352.343622
    3
    2023-10-09 00:00:00.00011602.564103622621.639998
    4
    2024-03-25 00:00:00.000163750.4488771758211.642403
    5
    2025-02-17 00:00:00.000211182.12447311309192.611196
    6
    2024-09-30 00:00:00.000463394.2679145250791.141809
    7
    2024-02-05 00:00:00.0007471.4770921745985.739628
    8
    2024-11-25 00:00:00.00022671940.8494668450070.533902
    9
    2024-07-22 00:00:00.0004124609.8902383969784.459684
    10
    2023-10-16 00:00:00.00013123.134328625744.774326
    11
    2023-11-20 00:00:00.0001109537.2950821146052.219048
    12
    2024-08-12 00:00:00.0006295904.5644234385856.536181
    13
    2024-12-23 00:00:00.00013435114.47541210294615.120126
    14
    2023-05-01 00:00:00.000113373.300371236117.453107
    15
    2023-08-28 00:00:00.000152067.046335418474.047284
    16
    2023-05-29 00:00:00.000197125.694873366407.000949
    17
    2023-10-30 00:00:00.0001118078.554185817427.762868
    18
    2023-02-13 00:00:00.00016317.83450925598.234509
    19
    2024-08-26 00:00:00.0001217068.8572624919333.803251
    20
    2023-09-04 00:00:00.000166990.762763485464.810047
    100
    6KB
    136s