select date_trunc(day,BLOCK_TIMESTAMP) as date, count(*) as txs, count(distinct FROM_ADDRESS) as users, sum(TX_FEE) as fees, count(distinct BLOCK_NUMBER) as blocks
from gnosis.core.fact_transactions
where BLOCK_TIMESTAMP>= CURRENT_DATE-60
group by date
limit 123