adriaparcerisasflow contracts vs l2
    Updated 6 days ago
    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: 6 days ago
    DATE
    ACTIVE_CONTRACTS
    CHAIN
    1
    2025-04-13 00:00:00.00016822Arbitrum
    2
    2025-04-13 00:00:00.00091182Base
    3
    2025-04-13 00:00:00.000432Flow
    4
    2025-04-13 00:00:00.0001130Mantle
    5
    2025-04-13 00:00:00.00024490Optimism
    6
    2025-04-12 00:00:00.00020575Arbitrum
    7
    2025-04-12 00:00:00.00094397Base
    8
    2025-04-12 00:00:00.000442Flow
    9
    2025-04-12 00:00:00.0001107Mantle
    10
    2025-04-12 00:00:00.00026412Optimism
    11
    2025-04-11 00:00:00.00038165Arbitrum
    12
    2025-04-11 00:00:00.00098350Base
    13
    2025-04-11 00:00:00.000407Flow
    14
    2025-04-11 00:00:00.0001070Mantle
    15
    2025-04-11 00:00:00.00024671Optimism
    16
    2025-04-10 00:00:00.00059441Arbitrum
    17
    2025-04-10 00:00:00.00099211Base
    18
    2025-04-10 00:00:00.000386Flow
    19
    2025-04-10 00:00:00.0001355Mantle
    20
    2025-04-10 00:00:00.00028653Optimism
    ...
    515
    21KB
    105s