solomixdaily swap stats
    Updated 2025-01-17

    with swaps as (
    select
    date_trunc('day',block_timestamp::date) as date,
    swapper,
    swap_from_symbol,
    swap_from_amount_usd,
    swap_to_amount_usd,
    platform
    from solana.marinade.ez_swaps
    where block_timestamp::date between '2024-01-01' and '2025-01-01')

    select
    date,
    count(distinct swapper) as num_swappers,
    sum(swap_from_amount_usd) as total_swap_from_amount_usd
    from swaps
    group by date


    Last run: 3 months ago
    DATE
    NUM_SWAPPERS
    TOTAL_SWAP_FROM_AMOUNT_USD
    1
    2024-10-30 00:00:00.000169019682512.91
    2
    2024-02-04 00:00:00.00034594717394.53
    3
    2024-12-26 00:00:00.00016845921265.46
    4
    2024-09-14 00:00:00.0009147231436.72
    5
    2024-10-09 00:00:00.000165615885634.41
    6
    2024-08-17 00:00:00.0008369361048.49
    7
    2024-06-25 00:00:00.00010549167439.46
    8
    2024-10-14 00:00:00.00013699375510.04
    9
    2024-10-23 00:00:00.000137322298865.2
    10
    2024-03-11 00:00:00.000362616512742.12
    11
    2024-12-07 00:00:00.000175910582630.59
    12
    2024-01-01 00:00:00.000329210385769.99
    13
    2024-04-20 00:00:00.00019485962616.42
    14
    2024-04-26 00:00:00.00011805095944.71
    15
    2024-02-21 00:00:00.00024136491424.67
    16
    2024-06-18 00:00:00.000125918397774.26
    17
    2024-06-02 00:00:00.0007915302752.87
    18
    2024-09-21 00:00:00.00011469038400.11
    19
    2024-07-07 00:00:00.000119611166029.72
    20
    2024-02-10 00:00:00.00029359879602.71
    ...
    367
    16KB
    2s