| 12345678910111213141516171819202122232425262728293031 |
- /// 生产环境配置(release 构建使用)
- /// TODO: 替换为正式域名
- abstract class EnvRelease {
- 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/',
- ];
- /// 远程配置 JSON 地址列表(按顺序尝试,任一成功即止)
- static const List<String> remoteConfigUrls = [
- ];
- /// 是否显示客服入口
- static const bool customerServiceEnabled = false;
- /// 客服服务配置
- static const String customerServiceHost = 'https://api.ibit123.com';
- static const String customerServiceChatPath = '/chat.html';
- /// WalletConnect:发布构建建议在 CI 注入 --dart-define=WALLETCONNECT_PROJECT_ID=,勿将密钥写入仓库
- static const String walletConnectProjectId = '768d376c0fa6af1e4902c6756d6edf42';
- static const String tronFullHost = '';
- static const String tronGridApiKey = '';
- }
|