larrypenguinTransactions Arb Total
Updated 2023-04-26
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
trunc(BLOCK_TIMESTAMP, 'month') as time,
COUNT(DISTINCT TX_HASH) as transactions
FROM
arbitrum.core.fact_transactions
GROUP BY
time
ORDER BY
time DESC
/*With event_logs AS (SELECT
trunc(BLOCK_TIMESTAMP, 'month') as time,
COUNT(DISTINCT TX_HASH) as transactions
FROM
arbitrum.core.fact_event_logs
GROUP BY
time
ORDER BY
time DESC),
fact_trans AS (SELECT
trunc(BLOCK_TIMESTAMP, 'month') as time,
COUNT(DISTINCT TX_HASH) as transactions
FROM
arbitrum.core.fact_transactions
GROUP BY
time
ORDER BY
time DESC),
fact_blocks AS (SELECT
trunc(BLOCK_TIMESTAMP, 'month') as time,
SUM(TX_COUNT) as transactions
FROM
arbitrum.core.fact_blocks
GROUP BY
Run a query to Download Data