Sandeshterra max block
    Updated 2023-03-14
    select
    count(distinct tx_sender) as number_of_wallets,
    count(distinct block_id) as number_of_blocks,
    count(distinct tx_id) as number_of_transactions,
    sum(fee) as total_fees
    from terra.core.fact_transactions
    where block_timestamp > CURRENT_DATE - 1
    Run a query to Download Data