10 lines
395 B
Dart
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'\.$'), '');
|
|
}
|
|
} |