Updated 2022-11-16
    select player,
    EVENT_TYPE,
    count (distinct nft_asset_id) as NFTs_Count
    from algorand.core.fact_account_asset, algorand.nft.ez_nft_metadata_fifa
    where algorand.core.fact_account_asset.asset_id = algorand.nft.ez_nft_metadata_fifa.nft_asset_id
    and algorand.core.fact_account_asset.amount > 0
    and address ilike '{{your_chosen_wallet}}'
    group by 1,2
    Run a query to Download Data