kimkimTop 5 smart contracts
    Updated 2022-08-03

    with link as
    (select
    PERMISSION:FunctionCall:receiver_id as contract,
    count(tx_hash) as contracts
    FROM near.core.fact_actions_events_addkey
    where PERMISSION:FunctionCall:receiver_id is not null
    and block_timestamp >= '2021-09-01'
    group by 1
    order by 2 DESC
    limit 5)
    select *
    from link
    Run a query to Download Data