| 1 | import 'package:cw_core/utils/proxy_wrapper.dart'; |
| 2 | import 'package:cw_core/utils/tor/disabled.dart'; |
| 3 | import 'package:flutter/foundation.dart'; |
| 4 | |
| 5 | class FeatureFlag { |
| 6 | static const bool isCakePayEnabled = false; |
| 7 | static const bool isCakePayPurchaseSimulationEnabled = true; |
| 8 | static const bool isCakePayRedemptionFlowEnabled = false; |
| 9 | static const bool isExolixEnabled = true; |
| 10 | static const bool isBackgroundSyncEnabled = true; |
| 11 | static bool get isInAppTorEnabled => CakeTor.instance is! CakeTorDisabled; |
| 12 | static const int verificationWordsCount = kDebugMode || kProfileMode ? 0 : 2; |
| 13 | static const bool hasDevOptions = |
| 14 | bool.fromEnvironment('hasDevOptions', defaultValue: kDebugMode || kProfileMode); |
| 15 | static const bool hasBitcoinViewOnly = true; |
| 16 | static const bool customBackgroundEnabled = false; |
| 17 | static const bool duressPinEnabled = true; |
| 18 | static const bool isEVMChainSwitcherEnabled = false; |
| 19 | static const bool isAutomaticNodeSwitchingEnabled = false; |
| 20 | static const bool hasNewUi = true; |
| 21 | static const bool hasNewUiExtraPages = true; |
| 22 | } |