Updated 2022-09-02
    select count(distinct FROM_ADDRESS) as fans ,txs
    from (select
    FROM_ADDRESS , count(distinct tx_hash) as txs

    from optimism.core.fact_transactions

    where TO_ADDRESS='0x51e5426ede4e2d4c2586371372313b5782387222'
    group by 1 )
    group by 2
    Run a query to Download Data