mmdrezaTop 10 Receivers that most contracts Deployed on of them
    Updated 2022-08-03
    select TX_RECEIVER,count(e.tx_hash) as contracts
    from near.core.fact_actions_events e
    join near.core.fact_transactions t on t.tx_hash = e.tx_hash
    where action_name like 'DeployContract'
    group by tx_receiver
    order by contracts DESC
    limit 10
    Run a query to Download Data