0xHaM-dMarinade Swap Over Time
    Updated 2025-02-19
    -- forked from Swap Over Time @ https://flipsidecrypto.xyz/studio/queries/f9a33527-ef4d-4fc4-bd4d-4102bae75457

    with balanceTb as (
    select
    owner ,
    balance
    from solana.core.fact_token_balances
    where mint = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'
    qualify row_number() over (partition by owner order by block_timestamp desc) = 1
    )
    , mnde_price as (
    select
    hour,
    price as price
    from solana.price.ez_prices_hourly
    where symbol = 'MSOL'
    )
    select
    trunc(BLOCK_TIMESTAMP,'week') as date,
    avg(price) as price,
    count(distinct TX_ID) as swaps,
    count(distinct SWAPPER) as swappers,
    sum(case when SWAP_FROM_MINT = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So' then SWAP_FROM_AMOUNT_USD else 0 end) as swap_from_amount_usd,
    sum(case when SWAP_TO_MINT = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So' then SWAP_TO_AMOUNT_USD else 0 end) as swap_TO_amount_usd,
    sum(coalesce(SWAP_FROM_AMOUNT_USD,SWAP_TO_AMOUNT_USD)) as swap_amount_usd,
    sum(swaps) over (order by date) as total_swaps,
    sum(swap_amount_usd) over (order by date) as total_swap_amount_usd
    from solana.marinade.ez_swaps
    join mnde_price on trunc(BLOCK_TIMESTAMP,'d') = trunc(hour,'d')
    where (
    SWAP_FROM_MINT = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'
    or SWAP_TO_MINT = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'
    )
    and SWAPPER in (select distinct owner from balanceTb)
    group by 1
    order by 1 desc
    Last run: about 1 month ago
    DATE
    PRICE
    SWAPS
    SWAPPERS
    SWAP_FROM_AMOUNT_USD
    SWAP_TO_AMOUNT_USD
    SWAP_AMOUNT_USD
    TOTAL_SWAPS
    TOTAL_SWAP_AMOUNT_USD
    1
    2025-02-17 00:00:00.000221.902417656154192379709830995.24539135287.971248522471.230510847169372429093.04
    2
    2025-02-10 00:00:00.000250.326414278333357613656241237.61108989404.881765628841.3630495428168123906621.84
    3
    2025-02-03 00:00:00.000254.624984851487115748805646393.281562905355.762368633207.6830462093166358277780.48
    4
    2025-01-27 00:00:00.000288.4879627745690249721073561365.441700672002.082773433718.4830413382163989644572.8
    5
    2025-01-20 00:00:00.000314.39558476218480852852303867120.163054734775.125366463889.9230356480161216210854.32
    6
    2025-01-13 00:00:00.000296.760537618187950972537135062.082502809606.45013283355.7630171672155849746964.4
    7
    2025-01-06 00:00:00.000241.36474576613706836731609846987.442292272970.963905801050.3229989793150836463608.64
    8
    2024-12-30 00:00:00.000254.107118966363403314479707160.16857158321.921337448825.1229852725146930662558.32
    9
    2024-12-23 00:00:00.000238.3154016453901733911239393760.561606956847.442848324932.4829816385145593213733.2
    10
    2024-12-16 00:00:00.000251.584018021499454350826215409.681567575136.322392048758.2429777368142744888800.72
    11
    2024-12-09 00:00:00.000277.388593223398784567711051367.44936659662.81648493317.6829727423140352840042.48
    12
    2024-12-02 00:00:00.000289.4817669635451150351566800348.882236970240.43806597971.6829687545138704346724.8
    13
    2024-11-25 00:00:00.000295.97033411474774340525259270.08724291629.841249933100.6429633034134897748753.12
    14
    2024-11-18 00:00:00.000305.563591586438985512914898148.561186389109.442101468475.0429585557133647815652.48
    15
    2024-11-11 00:00:00.000265.438112812619705695958373031.841429146823.442386995177.629541659131546347177.44
    16
    2024-11-04 00:00:00.000232.629363209697165518637102557.61044953249.041684121586.7229479689129159351999.84
    17
    2024-10-28 00:00:00.000212.114927017569196808715602428.161462864061.042179561611.1229409973127475230413.12
    18
    2024-10-21 00:00:00.000208.7335834714616363471139033477.043170786763.124309894810.5629353054125295668802
    19
    2024-10-14 00:00:00.000189.461594883470885418734133835.21189400097.361921525583.2829306891120985773991.44
    20
    2024-10-07 00:00:00.000175.904222117532066256743073095.521340578162.322081630148.4829259803119064248408.16
    ...
    135
    15KB
    182s