par_rnTOTAL
Updated 2023-02-06
9
1
2
3
4
5
6
›
⌄
SELECT COUNT(DISTINCT tr.TX_HASH) as number_transactions, COUNT(DISTINCT tr.TX_SIGNER) as users,
SUM(TRANSACTION_FEE)/POW(10,24) as transaction_fees
FROM near.core.fact_transactions tr
WHERE block_timestamp >= CURRENT_DATE-14
and tx_status = 'Success'
Run a query to Download Data