stack_wallet/lib/app_config.dart

35 lines
591 B
Dart
Raw Normal View History

import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart';
abstract class AppConfig {
static const appName = prefix + _separator + suffix;
2024-05-13 17:48:05 +00:00
static const prefix = "Stack";
2024-05-13 17:48:05 +00:00
static const _separator = " ";
2024-05-13 18:02:39 +00:00
static const suffix = "Wallet";
// comment out coins to disable them
static const supportedCoins = [
Bitcoin,
BitcoinFrost,
Litecoin,
Bitcoincash,
Dogecoin,
Epiccash,
Ecash,
Ethereum,
Firo,
Monero,
Particl,
Peercoin,
Solana,
Stellar,
Tezos,
Wownero,
Namecoin,
Nano,
Banano,
];
2024-05-13 17:48:05 +00:00
}