hessShare of Users
    Updated 2022-12-19
    select 'Flow' as chain, count(DISTINCT(PROPOSER)) as total_user
    from flow.core.fact_transactions
    where BLOCK_TIMESTAMP::date >= '2022-01-01'
    group by 1
    UNION
    select 'Ethereum' as chain, count(DISTINCT(FROM_ADDRESS)) as total_user
    from ethereum.core.fact_transactions
    where BLOCK_TIMESTAMP::date >= '2022-01-01'
    group by 1
    UNION
    select 'Algorand' as chain, count(DISTINCT(TX_SENDER)) as total_user
    from algorand.core.fact_transaction
    where BLOCK_TIMESTAMP::date >= '2022-01-01'
    group by 1
    UNION
    select 'Solana' as chain, count(DISTINCT(SIGNERS[0])) as total_user
    from solana.core.fact_transactions
    where BLOCK_TIMESTAMP::date >= '2022-01-01'
    group by 1
    UNION
    select 'Near' as chain, count(DISTINCT(TX_SIGNER)) as total_user
    from near.core.fact_transactions
    where BLOCK_TIMESTAMP::date >= '2022-01-01'
    group by 1
    Run a query to Download Data