2023-07-28 16:48:52 +00:00
|
|
|
/*
|
2023-05-26 21:21:16 +00:00
|
|
|
* This file is part of Stack Wallet.
|
2023-07-28 16:48:52 +00:00
|
|
|
*
|
2023-05-26 21:21:16 +00:00
|
|
|
* Copyright (c) 2023 Cypher Stack
|
|
|
|
* All Rights Reserved.
|
|
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2024-07-08 17:27:20 +00:00
|
|
|
import '../app_config.dart';
|
2024-05-23 00:37:06 +00:00
|
|
|
import '../wallets/crypto_currency/crypto_currency.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
abstract class DefaultNodes {
|
2022-11-25 19:50:13 +00:00
|
|
|
static const String defaultNodeIdPrefix = "default_";
|
2024-05-15 21:20:45 +00:00
|
|
|
static String buildId(CryptoCurrency cryptoCurrency) =>
|
|
|
|
"$defaultNodeIdPrefix${cryptoCurrency.identifier}";
|
2024-07-08 17:27:20 +00:00
|
|
|
static const String defaultName = "${AppConfig.prefix} Default";
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|