rackhaelNEAR 2
    Updated 2023-05-08
    SELECT date_trunc('day', block_timestamp) date,
    count(tx_hash) as txns,
    count(tx_signer) as wllts
    from near.core.fact_transactions
    where block_timestamp::date >= current_date - 30
    group by 1
    order by 2;
    Run a query to Download Data