permaryTotal Active users for october
    Updated 2024-10-15
    with aptos as (
    select count(distinct sender) as "Total Active Users",
    'Aptos' as blockchain
    from aptos.core.fact_transactions
    where block_timestamp between '2024-10-01' and '2024-10-31'
    ),

    solana as (
    select count(distinct signers[0]) as "Total Active Users",
    'Solana' as blockchain
    from solana.core.fact_transactions
    where block_timestamp between '2024-10-01' and '2024-10-31'
    ),

    polygon as (
    select count(distinct address) as "Total Active Users",
    'Polygon' as blockchain
    from (
    select to_address AS address, block_timestamp
    from polygon.core.fact_transactions

    UNION all

    select from_address AS address, block_timestamp
    from polygon.core.fact_transactions
    ) as all_addresses
    where block_timestamp between '2024-10-01' and '2024-10-31'
    ),

    avalanche as
    (select count(distinct address) as "Total Active Users",
    'Avalanche' as blockchain
    from (
    select to_address AS address, block_timestamp
    from avalanche.core.fact_transactions

    QueryRunArchived: QueryRun has been archived