CHAIN | Transactions | |
---|---|---|
1 | Gnosis | 6023736 |
2 | Polygon | 45741 |
3 | Solana | 372 |
4 | Arbitrum | 2 |
5 | Optimism | 464 |
6 | Base | 10554 |
7 | Ethereum | 1400 |
Flipside TeamTotal activity 3
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,
Last run: 9 days ago
7
118B
324s