MoDeFiUntitled Query
    Updated 2022-07-11
    select PAYER, EVENT_CONTRACT, CONTRACT_NAME, count(*) as txs
    from flow.core.fact_transactions a
    left join flow.core.dim_contract_labels b
    on ACCOUNT_ADDRESS=PAYER
    group by PAYER,2,3
    order by txs desc
    limit 200
    Run a query to Download Data