Add PYUSD to token list [skip ci] (#1027)

PayPal USD (PYUSD) is disabled by default, to appear only in the token search list. https://github.com/paxosglobal/pyusd-contract

Justin Ehrenhofer committed Aug 10, 2023 at 07:37 UTC 21c656fdc3174328836ced3076341bf56466575f
1 file changed +7
cw_ethereum/lib/default_erc20_tokens.dart
+7
@@ -283,6 +283,13 @@ class DefaultErc20Tokens {
283 decimal: 18,
284 enabled: false,
285 ),
286 + Erc20Token(
287 + name: "PayPal USD",
288 + symbol: "PYUSD",
289 + contractAddress: "0x6c3ea9036406852006290770bedfcaba0e23a0e8",
290 + decimal: 6,
291 + enabled: false,
292 + ),
293 ];
294
295 List<Erc20Token> get initialErc20Tokens => _defaultTokens.map((token) {