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
This commit is contained in:
Justin Ehrenhofer 2023-08-10 07:37:38 -05:00 committed by GitHub
parent edd31954b0
commit 21c656fdc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -283,6 +283,13 @@ class DefaultErc20Tokens {
decimal: 18, decimal: 18,
enabled: false, enabled: false,
), ),
Erc20Token(
name: "PayPal USD",
symbol: "PYUSD",
contractAddress: "0x6c3ea9036406852006290770bedfcaba0e23a0e8",
decimal: 6,
enabled: false,
),
]; ];
List<Erc20Token> get initialErc20Tokens => _defaultTokens.map((token) { List<Erc20Token> get initialErc20Tokens => _defaultTokens.map((token) {