0xtollexBLAST
Updated 2024-07-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
date_trunc(day, block_TIMESTAMP) as date,
COUNT(DISTINCT TX_HASH) as txn,
count(DISTINCT FROM_ADDRESS) as user,
SUM(txn) over (order by date) as cumulative_txn,
sum(tx_fee) as Gas_fee,
SUM(Value) as Eth_trading_volume,
SUM(user) over (order by date) as cumulative_users
FROM blast.core.fact_transactions
WHERE
STATUS = 'SUCCESS' AND
block_timestamp::date >= '2024-02-29'
GROUP BY 1
QueryRunArchived: QueryRun has been archived