2024-05-21 18:48:48 +00:00
|
|
|
import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart';
|
|
|
|
|
2024-05-13 19:44:19 +00:00
|
|
|
abstract class AppConfig {
|
2024-05-21 17:54:05 +00:00
|
|
|
static const appName = prefix + _separator + suffix;
|
2024-05-13 17:48:05 +00:00
|
|
|
|
2024-05-21 17:54:05 +00:00
|
|
|
static const prefix = "Stack";
|
2024-05-13 17:48:05 +00:00
|
|
|
|
2024-05-21 17:54:05 +00:00
|
|
|
static const _separator = " ";
|
2024-05-13 18:02:39 +00:00
|
|
|
|
2024-05-21 17:54:05 +00:00
|
|
|
static const suffix = "Wallet";
|
2024-05-21 18:48:48 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|