jackguyThe Law Offices of NEAR 5
    Updated 2023-04-12

    select
    PERMISSION:FunctionCall:receiver_id as id,
    count(DISTINCT TX_HASH) as transactions
    from near.core.fact_actions_events_addkey
    WHERE block_timestamp > CURRENT_DATE - 90
    AND not id is NULL
    group by 1
    ORDER by 2 DESC
    LIMIT 25

    Run a query to Download Data