(select 'Flow' as "Blockchain", count(distinct PROPOSER) as "Unique Wallets"
from flow.core.fact_transactions
where BLOCK_TIMESTAMP >= '2022-05-09'
and TX_SUCCEEDED = true
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'
and STATUS = 'SUCCESS'
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'
and SUCCEEDED = true
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'
and INNER_TX = false
group by 1
order by 1)