Update CurrencyUtil.java

Listing dogecoin
This commit is contained in:
XMRZombie 2024-12-08 05:53:05 +00:00 committed by GitHub
parent 451c854448
commit 8e717f9100
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -198,9 +198,10 @@ public class CurrencyUtil {
final List<CryptoCurrency> result = new ArrayList<>(); final List<CryptoCurrency> result = new ArrayList<>();
result.add(new CryptoCurrency("BTC", "Bitcoin")); result.add(new CryptoCurrency("BTC", "Bitcoin"));
result.add(new CryptoCurrency("BCH", "Bitcoin Cash")); result.add(new CryptoCurrency("BCH", "Bitcoin Cash"));
result.add(new CryptoCurrency("LTC", "Litecoin"));
result.add(new CryptoCurrency("ETH", "Ether")); result.add(new CryptoCurrency("ETH", "Ether"));
result.add(new CryptoCurrency("SOL", "Solana")); result.add(new CryptoCurrency("SOL", "Solana"));
result.add(new CryptoCurrency("LTC", "Litecoin")); result.add(new CryptoCurrency("DOGE", "Dogecoin"));
result.add(new CryptoCurrency("USDT-ERC20", "Tether USD (ERC20)")); result.add(new CryptoCurrency("USDT-ERC20", "Tether USD (ERC20)"));
result.add(new CryptoCurrency("USDC-ERC20", "USD Coin (ERC20)")); result.add(new CryptoCurrency("USDC-ERC20", "USD Coin (ERC20)"));
result.sort(TradeCurrency::compareTo); result.sort(TradeCurrency::compareTo);