Ease scam token check

OmarHatem committed Sep 26, 2025 at 09:56 UTC 8136b740223d53fb1d17f2ba9a2e7e3f5d94ff34
1 file changed +5 -3
lib/view_model/dashboard/home_settings_view_model.dart
+5 -3
@@ -291,9 +291,11 @@ abstract class HomeSettingsViewModelBase with Store {
291 // - An abandoned/unlaunched project
292 // - Incorrect/missing token data
293 // - Suspicious manipulation of token data
294 - if (tokenInfo.fullyDilutedValuation == '0') {
295 - return true;
296 - }
294 +
295 + /// commented out as it's failing a lot of legit tokens
296 + // if (tokenInfo.fullyDilutedValuation == '0') {
297 + // return true;
298 + // }
299
300 return false;
301 } catch (e) {