khanhEthereum daily transaction in the last month
    Updated 2022-09-16
    select date_trunc('day', block_timestamp) as day, count(*) as txns_count from ethereum.core.fact_transactions
    where status = 'SUCCESS'
    and block_timestamp::date >= current_date - interval '{{ months}} months'
    group by 1
    Run a query to Download Data