Skip to content

Commit

Permalink
tests tether + optimism
Browse files Browse the repository at this point in the history
  • Loading branch information
clbrge committed Aug 10, 2023
1 parent b471abe commit d45cca6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/lib/blockchain.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,18 @@ export const getChainTokens = (chainId = 0, chainData = {}) => {
)
}

if (list.USDT) {
tokens.USDT = Token.from(
{
name: 'Tether',
decimals: 6,
symbol: 'USDT',
address: list.USDT
},
{ chainId, type: 'ERC20' }
)
}

if (dev && list.UNI) {
tokens.UNI = Token.from(
{
Expand Down

0 comments on commit d45cca6

Please sign in to comment.