fix polygon name (#1697)

This commit is contained in:
Serhii 2024-09-23 19:17:07 +03:00 committed by GitHub
parent 6592b7a3c5
commit 17de9f16b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -284,6 +284,7 @@ class StealthExExchangeProvider extends ExchangeProvider {
String _getName(CryptoCurrency currency) {
if (currency == CryptoCurrency.usdcEPoly) return 'usdce';
if (currency == CryptoCurrency.maticpoly) return 'matic';
return currency.title.toLowerCase();
}