yasmin-n-d-r-hwhoes user chain intract chain every day
    Updated 2022-06-20
    with eth as
    (
    select count(unique_wallet) as days, unique_wallet from (
    select
    BLOCK_TIMESTAMP::date as date ,
    FROM_ADDRESS as unique_wallet
    from flipside_prod_db.ethereum_core.fact_transactions
    where date >= '2022-01-01'and date < CURRENT_DATE
    group by date ,unique_wallet
    ) GROUP by unique_wallet
    )
    , solana as (
    select count(unique_wallet) as days , unique_wallet from (
    select
    BLOCK_TIMESTAMP::date as date ,
    SIGNERS as unique_wallet
    from flipside_prod_db.solana.fact_transactions
    where date >= '2022-01-01'and date < CURRENT_DATE
    group by date ,unique_wallet
    ) GROUP by unique_wallet
    )
    , flow as (
    select count(unique_wallet) as days , unique_wallet from (
    select
    BLOCK_TIMESTAMP::date as date ,
    PAYER as unique_wallet
    from flow.core.fact_transactions
    where date >= '2022-01-01'and date < CURRENT_DATE
    group by date ,unique_wallet
    ) GROUP by unique_wallet
    )
    select 'Solana' , count(unique_wallet) from solana where days = 1
    UNION
    select 'ETH' , count(unique_wallet) from eth where days = 1
    UNION
    Run a query to Download Data