ML6Number of unique wallets to make a transaction
    Updated 2022-08-09
    select count(distinct PROPOSER ), block_timestamp::date,'Flow' as lbl from flow.core.fact_transactions
    where block_timestamp::date>='2022-06-15'
    group by 2

    union

    select count(distinct SENDER), block_timestamp::date, 'Algorand' as lbl from flipside_prod_db.algorand.transactions
    where block_timestamp::date>='2022-06-15'
    group by 2

    union

    select count(distinct FROM_ADDRESS), block_timestamp::date, 'Ethereum' as lbl from flipside_prod_db.ethereum_core.fact_transactions
    where block_timestamp::date>='2022-06-15'
    group by 2

    union

    select count(distinct FROM_ADDRESS), block_timestamp::date, 'Optimism' as lbl from optimism.core.fact_transactions
    where block_timestamp::date>='2022-06-15'
    group by 2
    Run a query to Download Data