From 21c656fdc3174328836ced3076341bf56466575f Mon Sep 17 00:00:00 2001 From: Justin Ehrenhofer Date: Thu, 10 Aug 2023 07:37:38 -0500 Subject: [PATCH] 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 --- cw_ethereum/lib/default_erc20_tokens.dart | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cw_ethereum/lib/default_erc20_tokens.dart b/cw_ethereum/lib/default_erc20_tokens.dart index 241e301ce..8c38e2e64 100644 --- a/cw_ethereum/lib/default_erc20_tokens.dart +++ b/cw_ethereum/lib/default_erc20_tokens.dart @@ -283,6 +283,13 @@ class DefaultErc20Tokens { decimal: 18, enabled: false, ), + Erc20Token( + name: "PayPal USD", + symbol: "PYUSD", + contractAddress: "0x6c3ea9036406852006290770bedfcaba0e23a0e8", + decimal: 6, + enabled: false, + ), ]; List get initialErc20Tokens => _defaultTokens.map((token) {