mhunt_launcher/lib/Shared/Helpers.dart
2024-10-29 00:12:00 +05:30

10 lines
395 B
Dart

class Helpers{
static const int LAMPORTS_PER_SOL = 1000000000;
static const String DASHBOARD_URL = 'https://auth.playpoolstudios.com';
static const String WEB2_ENDPOINT = "https://vps.playpoolstudios.com/metahunt/api/launcher/";
static String trimTrailingZeros(double number) {
return number.toStringAsFixed(10).replaceAll(RegExp(r'0*$'), '').replaceAll(RegExp(r'\.$'), '');
}
}