fix: move TRX ahead of BTC/ETH/BNB in default token order, drop UNI's pin

New order per product spec: Pezkuwi ecosystem, DOT, KSM, USDC, TRX, BTC,
ETH, BNB, AVAX, LINK, TAO, then everything else alphabetically. UNI no
longer gets an explicit slot - it now falls into the same alphabetical
bucket as any other unlisted symbol.
This commit is contained in:
2026-07-09 22:46:09 -07:00
parent 7a60afb98f
commit 55d405c3a1
@@ -10,15 +10,14 @@ val TokenSymbol.mainTokensFirstAscendingOrder
"DOT" -> 3 "DOT" -> 3
"KSM" -> 4 "KSM" -> 4
"USDC" -> 5 "USDC" -> 5
"BTC" -> 6 "TRX" -> 6
"ETH" -> 7 "BTC" -> 7
"BNB" -> 8 "ETH" -> 8
"TRX" -> 9 "BNB" -> 9
"AVAX" -> 10 "AVAX" -> 10
"LINK" -> 11 "LINK" -> 11
"UNI" -> 12 "TAO" -> 12
"TAO" -> 13 else -> 13
else -> 14
} }
val TokenSymbol.alphabeticalOrder val TokenSymbol.alphabeticalOrder