WEEK | CHAIN | TRANSACTION | USERS | |
---|---|---|---|---|
1 | 2024-02-05 00:00:00.000 | Arbitrum | 1 | 1 |
2 | 2024-11-25 00:00:00.000 | Blast | 15974 | 2 |
3 | 2024-02-05 00:00:00.000 | Optimism | 1 | 1 |
4 | 2024-11-25 00:00:00.000 | Base | 446 | 2 |
5 | 2024-07-22 00:00:00.000 | Arbitrum | 11 | 1 |
6 | 2024-07-22 00:00:00.000 | Blast | 26 | 3 |
7 | 2024-07-22 00:00:00.000 | Base | 25670 | 5 |
8 | 2025-02-17 00:00:00.000 | Blast | 88921 | 2 |
9 | 2025-02-17 00:00:00.000 | Base | 215 | 2 |
10 | 2025-01-27 00:00:00.000 | Blast | 46824 | 2 |
11 | 2025-01-27 00:00:00.000 | Base | 183 | 1 |
12 | 2024-07-01 00:00:00.000 | Blast | 102 | 1 |
13 | 2024-07-01 00:00:00.000 | Base | 23453 | 1 |
14 | 2024-08-26 00:00:00.000 | Blast | 131 | 2 |
15 | 2024-08-26 00:00:00.000 | Base | 657 | 1 |
16 | 2024-06-17 00:00:00.000 | Blast | 31122 | 2 |
17 | 2024-06-17 00:00:00.000 | Base | 1 | 1 |
18 | 2024-11-11 00:00:00.000 | Blast | 16837 | 2 |
19 | 2024-11-11 00:00:00.000 | Base | 313 | 1 |
20 | 2024-10-21 00:00:00.000 | Blast | 15126 | 2 |
Pine AnalyticsPyth en
Updated 2025-03-14
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
›
⌄
SELECT
date_trunc('week', block_timestamp) as week,
'Arbitrum' as chain,
count(DISTINCT tx_hash) as transaction,
count(DISTINCT from_address) as users
FROM arbitrum.core.fact_transactions
WHERE TO_ADDRESS LIKE lower('0x7698E925FfC29655576D0b361D75Af579e20AdAc')
GROUP BY 1,2
UNION all
SELECT
date_trunc('week', block_timestamp) as week,
'Blast' as chain,
count(DISTINCT tx_hash) as transaction,
count(DISTINCT from_address) as users
FROM blast.core.fact_transactions
WHERE to_address LIKE lower('0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb')
GROUP BY 1,2
UNION all
SELECT
date_trunc('week', block_timestamp) as week,
'Optimism' as chain,
count(DISTINCT tx_hash) as transaction,
count(DISTINCT from_address) as users
FROM optimism.core.fact_transactions
WHERE to_address LIKE lower('0xdF21D137Aadc95588205586636710ca2890538d5')
GROUP BY 1,2
UNION all
Last run: 25 days ago
...
114
5KB
49s