Flipside TeamTotal activity
    Updated 9 days ago
    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
    CHAIN
    Transactions
    Cumulative transactions
    1
    2022-06-01 00:00:00.000Polygon15931593
    2
    2022-07-01 00:00:00.000Polygon77849377
    3
    2022-08-01 00:00:00.000Polygon696616343
    4
    2022-09-01 00:00:00.000Polygon723523578
    5
    2022-10-01 00:00:00.000Polygon612529703
    6
    2022-11-01 00:00:00.000Polygon72230425
    7
    2022-12-01 00:00:00.000Polygon78831213
    8
    2023-01-01 00:00:00.000Polygon90132114
    9
    2023-02-01 00:00:00.000Polygon67532789
    10
    2023-03-01 00:00:00.000Polygon86033649
    11
    2023-04-01 00:00:00.000Polygon86734516
    12
    2023-05-01 00:00:00.000Polygon74835264
    13
    2023-06-01 00:00:00.000Polygon14135405
    14
    2023-07-01 00:00:00.000Polygon115836563
    15
    2023-08-01 00:00:00.000Polygon134637909
    16
    2023-09-01 00:00:00.000Polygon71138620
    17
    2023-10-01 00:00:00.000Polygon70239322
    18
    2023-11-01 00:00:00.000Polygon36839690
    19
    2023-12-01 00:00:00.000Polygon23439924
    20
    2024-01-01 00:00:00.000Polygon1439938
    100
    5KB
    153s