fanta Number of transactions of Lido
    Updated 2022-04-25
    select count(distinct tx_hash),date(block_timestamp) from ethereum_core.fact_event_logs
    where contract_address='0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
    and date(block_timestamp) > DATEADD(month, -3, CURRENT_DATE)
    group by date(block_timestamp)
    Run a query to Download Data