Hosseinuser who spent most amount of sol for buying nft
    Updated 2022-06-10
    select purchaser, sum(sales_amount) as mints_value from flipside_prod_db.solana.fact_nft_sales
    where SUCCEEDED = 1
    and block_timestamp::date > '2022-01-01'
    group by purchaser
    order by mints_value desc
    limit 1
    Run a query to Download Data