mlh1stETH swap to ETH
    Updated 2022-06-15
    select
    date_trunc('day', block_timestamp) as day,
    sum(amount) as swap
    from ethereum.udm_events
    where from_address_name = 'stETH'
    and origin_function_name = 'swap'
    and symbol = 'ETH'
    group by 1
    Run a query to Download Data