Compare commits

..

No commits in common. "fb0108196c58c1894695a44f073cc99b2c51842f" and "48eb3f0005c3ea784e551c77a24195fb44e48eb2" have entirely different histories.

3 changed files with 5 additions and 9 deletions

View File

@ -20,7 +20,6 @@ import {
OP,
PORTAL_ETH_CELO,
PORTAL_USDC_CELO,
TORN_MAINNET,
USDC_ARBITRUM,
USDC_ARBITRUM_GOERLI,
USDC_AVALANCHE,
@ -68,10 +67,10 @@ const WRAPPED_NATIVE_CURRENCIES_ONLY: ChainTokenList = Object.fromEntries(
export const COMMON_BASES: ChainCurrencyList = {
[ChainId.MAINNET]: [
nativeOnChain(ChainId.MAINNET),
TORN_MAINNET,
DAI,
USDC_MAINNET,
USDT,
WBTC,
WRAPPED_NATIVE_CURRENCY[ChainId.MAINNET] as Token,
],
[ChainId.GOERLI]: [nativeOnChain(ChainId.GOERLI), WRAPPED_NATIVE_CURRENCY[ChainId.GOERLI] as Token],

View File

@ -93,6 +93,10 @@ export function checkWarning(tokenAddress: string, chainId?: number | null) {
return null
case TOKEN_LIST_TYPES.UNI_EXTENDED:
return MediumWarning
case TOKEN_LIST_TYPES.UNKNOWN:
return StrongWarning
case TOKEN_LIST_TYPES.BLOCKED:
return BlockedWarning
case TOKEN_LIST_TYPES.BROKEN:
return BlockedWarning
}

View File

@ -15,13 +15,6 @@ export const USDC_MAINNET = new Token(
'USDC',
'USD//C'
)
export const TORN_MAINNET = new Token(
ChainId.MAINNET,
'0x77777FeDdddFfC19Ff86DB637967013e6C6A116C',
18,
'TORN',
'Tornado Cash'
)
const USDC_GOERLI = new Token(ChainId.GOERLI, '0x07865c6e87b9f70255377e024ace6630c1eaa37f', 6, 'USDC', 'USD//C')
const USDC_SEPOLIA = new Token(ChainId.SEPOLIA, '0x6f14C02Fc1F78322cFd7d707aB90f18baD3B54f5', 6, 'USDC', 'USD//C')
export const USDC_OPTIMISM = new Token(