Add 5 new assets and map TRX -> TRC20
Justin Ehrenhofer committed
Feb 13, 2023 at 08:51 UTC
891a9d3368189ca710c952c2a4a6d757659a0c6f
1 file changed
+2
-5
lib/exchange/trocador/trocador_exchange_provider.dart
+2
-5
@@ -18,13 +18,8 @@ class TrocadorExchangeProvider extends ExchangeProvider {
18
super(pairList: _supportedPairs());
19
20
static const List<CryptoCurrency> _notSupported = [
21
- CryptoCurrency.xhv,
22
- CryptoCurrency.dcr,
23
- CryptoCurrency.oxt,
24
- CryptoCurrency.pivx,
21
CryptoCurrency.scrt,
22
CryptoCurrency.stx,
27
- CryptoCurrency.bttc,
23
CryptoCurrency.zaddr,
24
];
25
@@ -268,6 +263,8 @@ class TrocadorExchangeProvider extends ExchangeProvider {
263
switch (tag) {
264
case 'ETH':
265
return 'ERC20';
266
+ case 'TRX':
267
+ return 'TRC20';
268
default:
269
return tag.toLowerCase();
270
}