Eman-RazNumber of Contracts Deployed on the Different Chains
    Updated 2024-11-26
    with arbitrum as (select count(distinct address) as "Number of Contract", 'Arbitrum' as "Chain"
    from arbitrum.core.dim_contracts
    where created_block_timestamp::date>='2024-01-01'),

    avalanche as (select count(distinct address) as "Number of Contract", 'Avalanche' as "Chain"
    from avalanche.core.dim_contracts
    where created_block_timestamp::date>='2024-01-01'),

    base as (select count(distinct address) as "Number of Contract", 'Base' as "Chain"
    from base.core.dim_contracts
    where created_block_timestamp::date>='2024-01-01'),

    blast as (select count(distinct address) as "Number of Contract", 'Blast' as "Chain"
    from blast.core.dim_contracts
    where created_block_timestamp::date>='2024-01-01'),

    bsc as (select count(distinct address) as "Number of Contract", 'BSC' as "Chain"
    from bsc.core.dim_contracts
    where created_block_timestamp::date>='2024-01-01'),

    core as (select count(distinct address) as "Number of Contract", 'Core' as "Chain"
    from core.core.dim_contracts
    where created_block_timestamp::date>='2024-01-01'),

    ethereum as (select count(distinct address) as "Number of Contract", 'Ethereum' as "Chain"
    from ethereum.core.dim_contracts
    where created_block_timestamp::date>='2024-01-01'),

    gnosis as (select count(distinct address) as "Number of Contract", 'Gnosis' as "Chain"
    from gnosis.core.dim_contracts
    where created_block_timestamp::date>='2024-01-01'),

    kaia as (select count(distinct address) as "Number of Contract", 'Kaia' as "Chain"
    from kaia.core.dim_contracts
    where created_block_timestamp::date>='2024-01-01'),

    QueryRunArchived: QueryRun has been archived