Sandeshcurrencies supported
    Updated 2023-06-30
    select platform_name, count(distinct CURRENCY_SYMBOL) as supported_currencies from ethereum.core.ez_nft_sales
    where block_timestamp::date >= current_date - interval '{{number_of_months}} months'
    and price >0
    group by 1
    order by 2 desc
    Run a query to Download Data