developer_violaactive user on evm
    Updated 5 days ago
    WITH chain_counts AS (
    -- Ethereum
    SELECT
    'ethereum' AS chain,
    COUNT(DISTINCT from_address) AS unique_active_addresses
    FROM ethereum.core.fact_transactions
    WHERE block_timestamp::date >= current_date - 30
    UNION ALL
    -- Polygon
    SELECT
    'polygon' AS chain,
    COUNT(DISTINCT from_address) AS unique_active_addresses
    FROM polygon.core.fact_transactions
    WHERE block_timestamp::date >= current_date - 30
    UNION ALL
    -- Avalanche
    SELECT
    'avalanche' AS chain,
    COUNT(DISTINCT from_address) AS unique_active_addresses
    FROM avalanche.core.fact_transactions
    WHERE block_timestamp::date >= current_date - 30
    UNION ALL
    -- Base
    SELECT
    'base' AS chain,
    COUNT(DISTINCT from_address) AS unique_active_addresses
    FROM base.core.fact_transactions
    WHERE block_timestamp::date >= current_date - 30
    UNION ALL
    -- BSC
    SELECT
    'bsc' AS chain,
    COUNT(DISTINCT from_address) AS unique_active_addresses
    FROM bsc.core.fact_transactions
    WHERE block_timestamp::date >= current_date - 30
    UNION ALL
    Last run: 5 days ago
    CHAIN
    UNIQUE_ACTIVE_ADDRESSES
    1
    base18626437
    2
    bsc17829099
    3
    kaia13009567
    4
    ethereum6613330
    5
    polygon5913461
    6
    arbitrum5320656
    7
    optimism1188920
    8
    avalanche924611
    9
    blast135969
    10
    gnosis86812
    10
    192B
    105s