boomer77$UST inflow ETH > Terra (wormhole)
    Updated 2022-04-25
    select date_trunc('day', block_timestamp) as dt, sum(event_inputs:value/1e6) as UST_volume, count(distinct tx_hash) as inflowtx_count, count (distinct event_inputs:from::string) as users_count
    from ethereum_core.fact_event_logs
    where event_inputs:to::string = '0x3ee18b2214aff97000d974cf647e7c347e8fa585' and contract_address = '0xa693b19d2931d498c5b318df961919bb4aee87a5' --ust
    and event_name = 'Transfer'
    group by 1
    Run a query to Download Data