0xaimanLiquidity Removed from stETH - pairs pool
    Updated 2022-06-04
    select date_trunc('hour',block_timestamp) as hour , sum(amount) as stETH_removed_from_liquidity_pool --origin_function_name, sum(amount) as sum_stETH --event_name, count(tx_id) as n_txn
    from ethereum.udm_events
    where contract_address=lower('0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84') and block_timestamp>='2022-05-01' and block_timestamp<'2022-05-31' and event_name='transfer'
    and origin_function_name='remove_liquidity'


    group by 1 order by 2 desc


    Run a query to Download Data