MONTH | Transactions | Cumulative transactions | |
---|---|---|---|
1 | 2025-04-01 00:00:00.000 | 686012 | 6082269 |
2 | 2025-03-01 00:00:00.000 | 992629 | 5396257 |
3 | 2025-02-01 00:00:00.000 | 771734 | 4403628 |
4 | 2025-01-01 00:00:00.000 | 868344 | 3631894 |
5 | 2024-12-01 00:00:00.000 | 780777 | 2763550 |
6 | 2024-11-01 00:00:00.000 | 434837 | 1982773 |
7 | 2024-10-01 00:00:00.000 | 215168 | 1547936 |
8 | 2024-09-01 00:00:00.000 | 158953 | 1332768 |
9 | 2024-08-01 00:00:00.000 | 149736 | 1173815 |
10 | 2024-07-01 00:00:00.000 | 126987 | 1024079 |
11 | 2024-06-01 00:00:00.000 | 106906 | 897092 |
12 | 2024-05-01 00:00:00.000 | 154955 | 790186 |
13 | 2024-04-01 00:00:00.000 | 134719 | 635231 |
14 | 2024-03-01 00:00:00.000 | 112378 | 500512 |
15 | 2024-02-01 00:00:00.000 | 68852 | 388134 |
16 | 2024-01-01 00:00:00.000 | 61590 | 319282 |
17 | 2023-12-01 00:00:00.000 | 49674 | 257692 |
18 | 2023-11-01 00:00:00.000 | 37785 | 208018 |
19 | 2023-10-01 00:00:00.000 | 56493 | 170233 |
20 | 2023-09-01 00:00:00.000 | 59113 | 113740 |
Flipside TeamTotal activity 2
Updated 2025-03-31
999
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 ethereum as (SELECT
date_trunc('month', BLOCK_TIMESTAMP) as month,
'Ethereum' as chain,
count(*) as no_txn
from ethereum.core.fact_transactions
where TO_ADDRESS in (
SELECT
DECODED_LOG:multisig as multisig
from ethereum.core.ez_decoded_event_logs
where CONTRACT_ADDRESS = '0x48b6af7b12c71f09e2fc8af4855de4ff54e775ca'
and CONTRACT_NAME = 'Service Registry'
and EVENT_NAME = 'CreateMultisigWithAgents'
)
group by 1
),
polygon as (SELECT
date_trunc('month', BLOCK_TIMESTAMP) as month,
'Polygon' as chain,
count(*) as no_txn
from Polygon.core.fact_transactions
where TO_ADDRESS in (
SELECT
DECODED_LOG:multisig as multisig
from Polygon.core.ez_decoded_event_logs
where CONTRACT_ADDRESS = '0xe3607b00e75f6405248323a9417ff6b39b244b50'
and CONTRACT_NAME = 'Service Registry L2'
and EVENT_NAME = 'CreateMultisigWithAgents'
)
group by 1),
gnosis as (SELECT
date_trunc('month', BLOCK_TIMESTAMP) as month,
'Gnosis' as chain,
Last run: 9 days ago
35
1KB
394s