bachiflow vs l1 chains
    Updated 2022-06-21
    with algorand as
    (
    select
    day ,
    count(DISTINCT wallet) as users
    from
    (
    select date(block_timestamp) as day, sender as wallet from flipside_prod_db.algorand.transactions
    where block_timestamp >= '2022-05-09'
    )
    where (select count(Sender) from flipside_prod_db.algorand.transactions where sender = wallet
    ) > 1
    group by day
    ),

    ethereum as (
    select day,
    count(DISTINCT wallet) as users
    from (
    select date(block_timestamp) as day, FROM_ADDRESS as wallet from flipside_prod_db.ethereum_core.fact_transactions
    where block_timestamp >= '2022-05-09'
    )
    where (select count(from_address) from flipside_prod_db.ethereum_core.fact_transactions where from_address = wallet
    ) > 1
    group by day
    ),
    solana as (
    select day,
    count(DISTINCT wallet) as users
    from (
    select date(block_timestamp) as day, SIGNERS as wallet from flipside_prod_db.solana.fact_transactions
    where block_timestamp >= '2022-05-09'
    )
    where (select count(SIGNERS) from flipside_prod_db.solana.fact_transactions where SIGNERS = wallet
    ) > 1
    Run a query to Download Data