yolo_gamesETH Volume per Day PTB
Updated 2024-08-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
SELECT day, sum(Value) as "ETH Volume" FROM (
SELECT date_trunc('day', a.block_timestamp) as day, b.Value as Value FROM blast.core.fact_event_logs a
INNER JOIN blast.core.fact_transactions b ON a.TX_HASH = b.TX_HASH
WHERE contract_address = LOWER('0x0000000000acc01064aa5280da3f1c41a35827bc')
AND tx_status = 'SUCCESS'
AND topics[0] = '0x9a711314e8e01b50116aefb9d50edc1a6b06e39986010af70d18671666586d0e' -- ptb rounds entered
)
GROUP BY 1
ORDER BY 1 ASC
QueryRunArchived: QueryRun has been archived