elsina___NOT_FOR_USE_ Number of unique user
    Updated 2022-12-19
    select
    'Flow' as "Blockchain",
    count(distinct PROPOSER) as "number of unique user"
    from
    Flow.core.fact_transactions
    UNION
    select
    'Optimism' as "Blockchain",
    count(distinct FROM_ADDRESS) as "number of unique user"
    from
    Optimism.core.fact_transactions
    UNION
    select
    'Algorand' as "Blockchain",
    count(
    distinct algorand.core.fact_transaction.ASSET_SENDER
    ) as "number of unique user"
    from
    algorand.core.fact_transaction
    UNION
    select
    'Ethereum' as "Blockchain",
    count(distinct FROM_ADDRESS) as "number of unique user"
    from
    Ethereum.core.fact_transactions
    UNION
    select
    'Polygon' as "Blockchain",
    count(distinct FROM_ADDRESS) as "number of unique user"
    from
    Polygon.core.fact_transactions
    UNION
    select
    'Avalanche' as "Blockchain",
    count(distinct FROM_ADDRESS) as "number of unique user"
    from
    Run a query to Download Data