| 12345678910111213141516171819202122232425262728293031323334 |
- /// 测试环境配置(debug 构建使用)
- abstract class EnvDebug {
- static const String apiBaseUrl =
- 'https://api.ibit123.com/api/';
- static const String wsUrl =
- 'wss://api.ibit123.com/api/market-new/ws/market';
- static const String wsSpotUrl =
- 'wss://api.ibit123.com/api/market-new/ws/spot';
- /// 兜底 Host 列表
- static const List<String> fallbackHosts = [
- 'https://api.ibit123.com/api/',
- 'https://api.ibit123.com/api/',
- ];
- /// 远程配置 JSON 地址列表(debug 不启用)
- static const List<String> remoteConfigUrls = [];
- /// debug 构建默认关闭客服入口(首页、个人中心等)
- static const bool customerServiceEnabled = false;
- /// 本地需调试客服时改为 true,并填写下方地址
- static const String customerServiceHost = 'https://api.ibit123.com';
- static const String customerServiceChatPath = '/chat.html';
- /// WalletConnect / Reown Project ID(空则充币页仅支持手动转账;可用 --dart-define=WALLETCONNECT_PROJECT_ID= 覆盖)
- static const String walletConnectProjectId = '768d376c0fa6af1e4902c6756d6edf42';
- /// Tron FullNode(空则回落 api.trongrid.io;可用 dart-define `TRON_FULL_HOST` 覆盖)
- static const String tronFullHost = '';
- /// TronGrid API Key(可选;`TRONGRID_API_KEY`)
- static const String tronGridApiKey = '';
- }
|