gayatridodmaniHighest Valued Bored Ape
    Updated 2022-12-24
    select m.token_name, m.creator_name, s.tokenid, s.price, s.buyer_address, s.project_name, s.currency_symbol, s.price_usd
    from ethereum.core.ez_nft_sales s join ethereum.core.dim_nft_metadata as m on s.tokenid= m.token_id
    where s.project_name like '%boredapeyachtclub' and currency_symbol like 'ETH'
    order by s.price_usd desc
    limit 10;
    Run a query to Download Data