adriaparcerisasflow contracts vs l2
    Updated 2025-04-28
    WITH flow_activity AS (
    WITH news AS (
    SELECT DISTINCT event_contract AS new_contract,
    MIN(trunc(block_timestamp, 'day')) AS debut
    FROM flow.core.fact_events
    GROUP BY 1
    ),
    evm_news AS (
    SELECT DISTINCT contract_address AS new_contract,
    MIN(trunc(block_timestamp, 'day')) AS debut
    FROM flow.core_evm.fact_event_logs
    GROUP BY 1
    ),
    combined_news AS (
    SELECT new_contract, debut FROM news
    UNION ALL
    SELECT new_contract, debut FROM evm_news
    ),
    final as (
    SELECT
    trunc(x.block_timestamp, 'day') AS date,
    COUNT(DISTINCT x.event_contract) AS active_contracts,
    'Flow' as chain
    FROM flow.core.fact_events x
    WHERE x.tx_succeeded = 'true' and date >= '2025-01-01'
    AND date < trunc(current_date,'day')
    GROUP BY 1

    UNION ALL

    SELECT
    trunc(y.block_timestamp, 'day') AS date,
    COUNT(DISTINCT y.contract_address) AS active_contracts,
    'Flow EVM' as chain
    FROM flow.core_evm.fact_event_logs y
    WHERE date >= '2025-01-01'
    Last run: 14 days ago
    DATE
    ACTIVE_CONTRACTS
    CHAIN
    1
    2025-04-27 00:00:00.00019152Arbitrum
    2
    2025-04-27 00:00:00.000153313Base
    3
    2025-04-27 00:00:00.000610Flow
    4
    2025-04-27 00:00:00.0001065Mantle
    5
    2025-04-27 00:00:00.00038188Optimism
    6
    2025-04-26 00:00:00.00016931Arbitrum
    7
    2025-04-26 00:00:00.000210740Base
    8
    2025-04-26 00:00:00.000673Flow
    9
    2025-04-26 00:00:00.0001111Mantle
    10
    2025-04-26 00:00:00.00034700Optimism
    11
    2025-04-25 00:00:00.00021921Arbitrum
    12
    2025-04-25 00:00:00.000190981Base
    13
    2025-04-25 00:00:00.000633Flow
    14
    2025-04-25 00:00:00.0001273Mantle
    15
    2025-04-25 00:00:00.00030768Optimism
    16
    2025-04-24 00:00:00.00021431Arbitrum
    17
    2025-04-24 00:00:00.000216383Base
    18
    2025-04-24 00:00:00.000614Flow
    19
    2025-04-24 00:00:00.0001309Mantle
    20
    2025-04-24 00:00:00.00034582Optimism
    ...
    585
    24KB
    102s