yolo_gamesETH Volume per Day YOLO Limited
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
27
28
›
⌄
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('0x28EF3eaE1AbB6D6e22e9bFc7a0944f707E4726b3')
AND a.tx_status = 'SUCCESS'
AND a.topics[0] = '0x73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca' -- yololimited 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('0x28EF3eaE1AbB6D6e22e9bFc7a0944f707E4726b3')
AND tx_status = 'SUCCESS'
AND topics[0] = '0xa315167fc4200676e8597c5df065fafa8cecfeac15a8e2aded299a649e4a5175' -- yololimited multientry
)
GROUP BY 1
ORDER BY 1 ASC
QueryRunArchived: QueryRun has been archived