Flipside TeamTotal activity 2
    Updated 2025-03-31
    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
    MONTH
    Transactions
    Cumulative transactions
    1
    2025-04-01 00:00:00.0006860126082269
    2
    2025-03-01 00:00:00.0009926295396257
    3
    2025-02-01 00:00:00.0007717344403628
    4
    2025-01-01 00:00:00.0008683443631894
    5
    2024-12-01 00:00:00.0007807772763550
    6
    2024-11-01 00:00:00.0004348371982773
    7
    2024-10-01 00:00:00.0002151681547936
    8
    2024-09-01 00:00:00.0001589531332768
    9
    2024-08-01 00:00:00.0001497361173815
    10
    2024-07-01 00:00:00.0001269871024079
    11
    2024-06-01 00:00:00.000106906897092
    12
    2024-05-01 00:00:00.000154955790186
    13
    2024-04-01 00:00:00.000134719635231
    14
    2024-03-01 00:00:00.000112378500512
    15
    2024-02-01 00:00:00.00068852388134
    16
    2024-01-01 00:00:00.00061590319282
    17
    2023-12-01 00:00:00.00049674257692
    18
    2023-11-01 00:00:00.00037785208018
    19
    2023-10-01 00:00:00.00056493170233
    20
    2023-09-01 00:00:00.00059113113740
    35
    1KB
    394s