hessWeekly Bots Vs. Non-Bots
    Updated 2024-12-29
    with liquidity as (select block_timestamp,
    lp_action,
    pool_name,
    ifnull(from_address,ASSET_ADDRESS) as user,
    rune_amount_usd,
    asset_amount_usd,
    rune_amount_usd+asset_amount_usd as amount_usd
    from thorchain.defi.fact_liquidity_actions
    where block_timestamp::date >= '2024-01-01')
    ,
    bots as ( select ifnull(from_address,ASSET_ADDRESS) as user,
    trunc(block_timestamp,'minute') as minutes,
    count(*) as total_tx
    from thorchain.defi.fact_liquidity_actions
    where lp_action = 'add_liquidity'
    group by 1,2
    having total_tx >= 10)
    ,
    bot as ( select DISTINCT user
    from bots)


    select trunc(block_timestamp,'week') as weekly,
    case when user in (select user from bot) then 'Bots' else 'Normal Users' end as type,
    sum(amount_usd) as volume,
    count(*) as total_tx
    from liquidity
    where lp_action = 'add_liquidity'
    group by 1,2



    Last run: 3 months ago
    WEEKLY
    TYPE
    VOLUME
    TOTAL_TX
    1
    2024-10-21 00:00:00.000Normal Users1900327.50999691243
    2
    2024-09-09 00:00:00.000Normal Users494479.459811048414
    3
    2024-02-19 00:00:00.000Normal Users1579173.51846598662
    4
    2024-07-08 00:00:00.000Normal Users330031.727798655249
    5
    2025-01-20 00:00:00.000Normal Users1762601.8771904332
    6
    2024-08-05 00:00:00.000Bots3235105.206250338130
    7
    2024-12-23 00:00:00.000Normal Users476528.500720835336
    8
    2024-04-22 00:00:00.000Normal Users318555.356583739263
    9
    2024-12-16 00:00:00.000Normal Users712060.35700137489
    10
    2024-07-15 00:00:00.000Normal Users482472.16347779263
    11
    2024-01-29 00:00:00.000Normal Users1953678.34378259521
    12
    2024-07-01 00:00:00.000Normal Users961562.685388294334
    13
    2024-07-29 00:00:00.000Normal Users711342.087483364259
    14
    2024-01-08 00:00:00.000Bots3854186.9816811175768
    15
    2024-02-26 00:00:00.000Bots2097927.0474407927156
    16
    2024-04-01 00:00:00.000Bots626757.2869478595453
    17
    2024-08-12 00:00:00.000Normal Users631872.587042324304
    18
    2024-03-25 00:00:00.000Normal Users5561554.30799136963
    19
    2024-12-09 00:00:00.000Normal Users948451.178159155439
    20
    2024-05-27 00:00:00.000Normal Users1764905.70355168410
    78
    5KB
    155s