yolo_gamesETH Volume per Day YOLO + YOLO Play
Updated 2024-08-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
›
⌄
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 a.contract_address = LOWER('0x0000000000E14E87e5c80A8A90817308fFF715d3')
AND a.tx_status = 'SUCCESS'
AND a.topics[0] = '0x73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca' -- yolo deposited
UNION ALL
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('0x0000000000E14E87e5c80A8A90817308fFF715d3')
AND tx_status = 'SUCCESS'
AND topics[0] = '0xa315167fc4200676e8597c5df065fafa8cecfeac15a8e2aded299a649e4a5175' -- yolo multientry
)
GROUP BY 1
ORDER BY 1 ASC
QueryRunArchived: QueryRun has been archived