ramishoowUntitled Query
    Updated 2022-09-18
    select date_trunc('day',block_timestamp)as time,sum(tx_fee) as fee_eth from arbitrum.core.fact_transactions where to_address = '0xabbc5f99639c9b6bcb58544ddf04efa6802f4064'
    and block_timestamp >= current_date-90 and STATUS = 'SUCCESS' group by 1 ORDER BY 1
    Run a query to Download Data