kingnedudaily swap stats
    Updated 2025-01-15

    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 days ago
    DATE
    NUM_SWAPPERS
    TOTAL_SWAP_FROM_AMOUNT_USD
    1
    2024-08-28 00:00:00.000107911066737.88
    2
    2024-04-19 00:00:00.000251825152497.89
    3
    2024-07-11 00:00:00.00011187902624.38
    4
    2024-12-23 00:00:00.000271333926231.83
    5
    2024-08-14 00:00:00.00012736021623.37
    6
    2024-09-10 00:00:00.000132511156280.33
    7
    2024-02-15 00:00:00.000219815953866.44
    8
    2024-10-12 00:00:00.000132012094288.22
    9
    2024-08-05 00:00:00.000159634589316.67
    10
    2024-09-27 00:00:00.000140210630846.17
    11
    2024-10-02 00:00:00.000130614122512.47
    12
    2024-04-08 00:00:00.00014367711819.04
    13
    2024-07-02 00:00:00.00014186842801.45
    14
    2024-06-16 00:00:00.0007393518601.12
    15
    2024-03-05 00:00:00.000276611975205.92
    16
    2024-02-05 00:00:00.00033296869448.81
    17
    2024-09-14 00:00:00.0009147231436.72
    18
    2024-08-17 00:00:00.0008369361048.49
    19
    2024-10-09 00:00:00.000165615885634.41
    20
    2024-10-30 00:00:00.000169019682512.91
    ...
    367
    16KB
    2s