Eman-RazTop 20 NFT Sellers by Sales Volume
    Updated 2023-04-13
    select seller, sum(sales_amount)/pow(10,6) as "Sales Volume", count(distinct tx_id) as "Sales Count"
    from terra.core.fact_nft_sales
    where currency='uluna'
    group by 1
    order by 2 desc
    limit 20
    Run a query to Download Data