DrsimonUntitled Query
    SELECT
    count(DISTINCT(user)) as number_of_wallets,
    'Solana' as block_chain
    from
    (
    select
    TX_ID as user
    FROM solana.core.fact_transactions
    WHERE block_timestamp >= '2022-06-01'

    UNION

    select
    TX_ID as user
    FROM solana.core.fact_transactions
    WHERE block_timestamp >= '2022-06-01'
    )
    Run a query to Download Data