maybeyonasharm_transactions
    Updated 2022-03-02
    select
    date(block_timestamp) as date,
    status,
    count(distinct tx_hash) as txs,
    sum(gas*gas_price/pow(10,18)) as fees
    from mdao_harmony.txs
    where block_timestamp > current_date - interval '90 days'
    group by 1,2

    Run a query to Download Data