SalehFlow vs L1s -Number of unique wallets
    Updated 2022-05-31
    (select 'Flow' as "Blockchain", count(distinct PROPOSER) as "Unique Wallets"
    from flow.core.fact_transactions
    where BLOCK_TIMESTAMP >= '2022-05-09'
    group by 1
    order by 1)

    union all

    (select 'Ethereum' as "Blockchain", count(distinct FROM_ADDRESS) as "Unique Wallets"
    from flipside_prod_db.ethereum_core.fact_transactions
    where BLOCK_TIMESTAMP >= '2022-05-09'
    group by 1
    order by 1)

    union all

    (select 'Solana' as "Blockchain", count(distinct SIGNERS[0]) as "Unique Wallets"
    from flipside_prod_db.solana.fact_transactions
    where BLOCK_TIMESTAMP >= '2022-05-09'
    group by 1
    order by 1)

    union all

    (select 'Algorand' as "Blockchain", count(distinct SENDER) as "Unique Wallets"
    from flipside_prod_db.algorand.transactions
    where BLOCK_TIMESTAMP >= '2022-05-09'
    group by 1
    order by 1)
    Run a query to Download Data