0xHaM-dMarinade Swap in Total
    Updated 2025-02-19
    -- forked from Marinade Swap Over Time copy @ https://flipsidecrypto.xyz/studio/queries/9110e3ce-66c4-4064-ae66-d24b2e2a9d81

    -- forked from Marinade Swap Over Time @ https://flipsidecrypto.xyz/studio/queries/306002c9-201d-4ddc-b9c7-2c313a4212bf

    -- 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
    )
    select
    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,
    from solana.marinade.ez_swaps
    where (
    SWAP_FROM_MINT = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'
    or SWAP_TO_MINT = 'mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'
    )
    and SWAPPER in (select distinct owner from balanceTb)
    and BLOCK_TIMESTAMP::date >= '2025-01-01'






    Last run: about 1 month ago
    SWAPS
    SWAPPERS
    SWAP_FROM_AMOUNT_USD
    SWAP_TO_AMOUNT_USD
    SWAP_AMOUNT_USD
    1
    68165230763423230259.67562373085.49984971215.97
    1
    55B
    158s