bachiflow vs other chains
    Updated 2022-07-19
    WITH ethereum
    AS (SELECT day,
    Count(DISTINCT wallet) AS users,
    'Ethereum' as Chain
    FROM (SELECT Date(block_timestamp) AS day,
    from_address AS wallet
    FROM flipside_prod_db.ethereum_core.fact_transactions
    where block_timestamp >= '2022-01-01'
    )
    WHERE (SELECT Count(from_address)
    FROM flipside_prod_db.ethereum_core.fact_transactions
    WHERE from_address = wallet and block_timestamp >= '2022-01-01') > 1
    GROUP BY day),
    solana
    AS (SELECT day,
    Count(DISTINCT wallet) AS users,
    'Solana' as Chain
    FROM (SELECT Date(block_timestamp) AS day,
    signers AS wallet
    FROM flipside_prod_db.solana.fact_transactions
    where block_timestamp >= '2022-01-01'
    )
    WHERE (SELECT Count(signers)
    FROM flipside_prod_db.solana.fact_transactions
    WHERE signers = wallet and block_timestamp >= '2022-01-01') > 1
    GROUP BY day),
    flow
    AS (SELECT day,
    Count(DISTINCT wallet) AS users,
    'Flow' as Chain
    FROM (SELECT Date(block_timestamp) AS day,
    payer AS wallet
    FROM flow.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    Run a query to Download Data