SpecterUser Activenes
Updated 2024-09-08
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
29
30
31
32
33
34
35
36
›
⌄
WITH RelayBlast AS (
SELECT
block_timestamp,
tx_hash,
'Deposit' AS Type,
from_address AS Sender,
amount_usd
FROM
blast.core.ez_native_transfers
WHERE
to_address = '0xf70da97812cb96acdf810712aa562db8dfa3dbef'
AND block_timestamp >= '2024-01-01'
UNION ALL
SELECT
block_timestamp,
tx_hash,
'Withdraw' AS Type,
to_address AS Sender,
amount_usd
FROM
blast.core.ez_native_transfers
WHERE
from_address = '0xf70da97812cb96acdf810712aa562db8dfa3dbef'
AND block_timestamp >= '2024-01-01'
),
UserActivity AS (
SELECT
Sender,
COUNT(DISTINCT tx_hash) AS TransactionCount,
SUM(amount_usd) AS TotalVolume
FROM
RelayBlast
GROUP BY Sender
)
QueryRunArchived: QueryRun has been archived