omer93thorchain users
    Updated 2024-02-02
    SELECT
    date_trunc('day',_INSERTED_TIMESTAMP) as day,
    count(distinct from_address) as senders,
    count(distinct to_address) as receivers
    from thorchain.core.fact_transfer_events
    where _INSERTED_TIMESTAMP>=current_date-INTERVAL '1 MONTH'
    and _INSERTED_TIMESTAMP<current_date
    group by 1 order by 1 asc
    Last run: about 1 year ago
    DAY
    SENDERS
    RECEIVERS
    1
    2024-01-02 00:00:00.000396440
    2
    2024-01-03 00:00:00.000386456
    3
    2024-01-04 00:00:00.000347423
    4
    2024-01-05 00:00:00.000311353
    5
    2024-01-06 00:00:00.000259339
    6
    2024-01-07 00:00:00.000254318
    7
    2024-01-08 00:00:00.000354468
    8
    2024-01-09 00:00:00.000288323
    9
    2024-01-10 00:00:00.000316463
    10
    2024-01-11 00:00:00.000369405
    11
    2024-01-12 00:00:00.000339488
    12
    2024-01-13 00:00:00.000268414
    13
    2024-01-14 00:00:00.000268351
    14
    2024-01-15 00:00:00.000310369
    15
    2024-01-16 00:00:00.000260359
    16
    2024-01-17 00:00:00.000324328
    17
    2024-01-18 00:00:00.000513521
    18
    2024-01-19 00:00:00.000328429
    19
    2024-01-20 00:00:00.000305346
    20
    2024-01-21 00:00:00.000267317
    31
    1KB
    2s