feat: Add Tether Gold (XAUT) to Ethereum tokens list with associated icon (#2856)
David Adegoke committed
Feb 3, 2026 at 12:48 UTC
d05a7a91d6c6ed908e62da3e8b604ab4c3cb5092
2 files changed
+9
-3
assets/images/xaut_icon.png
Binary files /dev/null and b/assets/images/xaut_icon.png differ
cw_evm/lib/tokens/ethereum_tokens.dart
+9
-3
@@ -82,6 +82,14 @@ class EthereumTokens {
82
decimal: 18,
83
enabled: false,
84
),
85
+ Erc20Token(
86
+ name: "Tether Gold",
87
+ symbol: "XAUT",
88
+ contractAddress: "0x68749665FF8D2d112Fa859AA293F07A622782F38",
89
+ decimal: 6,
90
+ enabled: false,
91
+ iconPath: "assets/images/xaut_icon.png",
92
+ ),
93
];
94
95
return tokens.map((token) {
@@ -89,8 +97,7 @@ class EthereumTokens {
97
if (token.iconPath?.isEmpty ?? true) {
98
try {
99
iconPath = CryptoCurrency.all
92
- .firstWhere((element) =>
93
- element.title.toUpperCase() == token.symbol.toUpperCase())
100
+ .firstWhere((element) => element.title.toUpperCase() == token.symbol.toUpperCase())
101
.iconPath;
102
} catch (_) {}
103
} else {
@@ -101,4 +108,3 @@ class EthereumTokens {
108
}).toList();
109
}
110
}
104
-