stack_wallet/lib/utilities/default_nodes.dart

20 lines
591 B
Dart
Raw Permalink Normal View History

/*
2023-05-26 21:21:16 +00:00
* This file is part of Stack Wallet.
*
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';
import '../wallets/crypto_currency/crypto_currency.dart';
2022-08-26 08:11:35 +00:00
abstract class DefaultNodes {
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
}