N_TXS | N_WALLET | |
---|---|---|
1 | 12443484 | 291065 |
0xHaM-dTransaction & Users in Total[2025]
Updated 2025-03-20
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
›
⌄
-- forked from Transaction & Users in Total copy @ https://flipsidecrypto.xyz/studio/queries/beb4e669-f793-480b-8a6f-eb1b0aac03b7
-- forked from Transaction & Users in Total @ https://flipsidecrypto.xyz/studio/queries/63f95d94-73e5-43f3-b5c5-eec28e76abbc
WITH eventTb AS (
SELECT
BLOCK_TIMESTAMP,
TX_HASH,
FROM_ADDRESS,
FROM ronin.core.fact_transactions
WHERE TO_ADDRESS in (
'0x9d3936dbd9a794ee31ef9f13814233d435bd806c'
,'0x32950db2a7164ae833121501c797d79e7b79d74c'
,'0x05b0bb3c1c320b280501b86706c3551995bc8571'
,'0x3e0674b1ddc84b0cfd9d773bb2ce23fe8f445de3'
)
)
SELECT
count(DISTINCT TX_HASH) as n_txs,
count(DISTINCT FROM_ADDRESS) as n_wallet,
FROM eventTb
where BLOCK_TIMESTAMP::date >= '2025-01-01'
Last run: 30 days ago
1
19B
6s