vegardTop 20 Users with the greatest number of transactions on Defi since November
    Updated 2022-11-21
    select
    instruction:accounts[1] as user,
    count(distinct (tx_id)) as txn_count
    from solana.core.dim_labels
    join solana.core.fact_events
    on address = program_id
    where (
    label_type = 'dex' or label_type = 'defi'
    )
    and block_timestamp::date > '2022-11-01'
    and succeeded = 1
    group by user
    order by txn_count desc
    limit 20
    Run a query to Download Data