- Replace all hardcoded English strings with TR() translation keys across every tab, dialog, and component (~20 UI files) - Expand all 8 language files (de, es, fr, ja, ko, pt, ru, zh) with complete translations (~37k lines added) - Improve i18n loader with exe-relative path fallback and English base fallback for missing keys - Add pool-side hashrate polling via pool stats API in xmrig_manager - Introduce Layout::beginFrame() per-frame caching and refresh balance layout config only on schema generation change - Offload daemon output parsing to worker thread - Add CJK subset fallback font for Chinese/Japanese/Korean glyphs
26 lines
551 B
C++
26 lines
551 B
C++
// DragonX Wallet - ImGui Edition
|
|
// Copyright 2024-2026 The Hush Developers
|
|
// Released under the GPLv3
|
|
|
|
#include "exchange_info.h"
|
|
|
|
namespace dragonx {
|
|
namespace data {
|
|
|
|
const std::vector<ExchangeInfo>& getExchangeRegistry()
|
|
{
|
|
static const std::vector<ExchangeInfo> registry = {
|
|
{
|
|
"Nonkyc.io",
|
|
"https://nonkyc.io",
|
|
{
|
|
{"DRGX", "USDT", "DRGX/USDT", "https://nonkyc.io/market/DRGX_USDT"},
|
|
}
|
|
},
|
|
};
|
|
return registry;
|
|
}
|
|
|
|
} // namespace data
|
|
} // namespace dragonx
|