Abolfazl_771025Total count of active user at each chain
    Updated 2022-12-20
    select
    'Flow' as "chain",
    count (distinct proposer) as "users count"
    from flow.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    'Ethereum' as "chain",
    count (distinct from_address) as "users count"
    from ethereum.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    'Terra' as "chain",
    count (distinct TX_SENDER) as "users count"
    from terra.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    'BSC' as "chain",
    count (distinct from_address) as "users count"
    from bsc.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    'Avalanch' as "chain",
    count (distinct from_address) as "users count"
    from avalanche.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    group by 1
    union
    select
    Run a query to Download Data