Deebs-DeFi-j9fRbzRUNE Trader Count and Trades
    Updated 2025-03-19
    select
    date_trunc('day', block_timestamp) as date,
    count(distinct(from_address)) as number_of_traders,
    count(distinct(tx_id)) as number_of_swaps
    from thorchain.defi.fact_swaps
    where date BETWEEN {{start_date}} and {{end_date}}
    and date != date_trunc('day', current_date)
    group by 1
    ORDER BY 2 DESC


    Last run: 26 days ago
    DATE
    NUMBER_OF_TRADERS
    NUMBER_OF_SWAPS
    1
    2023-12-04 00:00:00.000278851538
    2
    2023-12-06 00:00:00.000250953108
    3
    2023-11-12 00:00:00.000247270549
    4
    2023-10-24 00:00:00.000245345019
    5
    2023-11-16 00:00:00.000243962341
    6
    2023-12-02 00:00:00.000224043969
    7
    2023-11-11 00:00:00.000223463681
    8
    2023-11-15 00:00:00.000222061011
    9
    2023-12-05 00:00:00.000219941670
    10
    2023-11-29 00:00:00.000217643558
    11
    2023-11-21 00:00:00.000216963486
    12
    2023-11-22 00:00:00.000215747503
    13
    2023-11-17 00:00:00.000210859289
    14
    2023-11-10 00:00:00.000210542867
    15
    2023-11-09 00:00:00.000206858693
    16
    2023-12-03 00:00:00.000205429985
    17
    2023-12-01 00:00:00.000205034926
    18
    2023-10-23 00:00:00.000201539757
    19
    2023-11-30 00:00:00.000199742997
    20
    2023-11-13 00:00:00.000197847494
    ...
    194
    7KB
    4s