TheLaughingManNear Transactions
Updated 2023-10-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
-- forked from Aurora Base @ https://flipsidecrypto.xyz/edit/queries/430db199-f894-42e3-96c0-950babe16171
with base as (
SELECT
COUNT(tx_hash) as t_txns
, COUNT(DISTINCT TX_SIGNER) as t_users
, SUM(TRANSACTION_FEE/1e24) as t_fee
, date_trunc(day, BLOCK_TIMESTAMP) as ddate
FROM near.core.fact_transactions
WHERE tx_status='Success'
AND block_timestamp >= '2023-01-01'
GROUP BY ddate
)
SELECT * from base
Run a query to Download Data