From a0ad1e8511f8ab2dbe5c2f78cbe7dab91e61e5ca Mon Sep 17 00:00:00 2001 From: Kevin Peters Date: Fri, 11 Oct 2024 09:02:45 -0500 Subject: [PATCH] Revert "added celo usdt" This reverts commit 24a386ede46333919fee15441145b5878542aee2. --- core/base/src/constants/contracts/portico.ts | 6 ------ core/base/src/constants/tokens/mainnet.ts | 8 -------- platforms/evm/protocols/portico/src/consts.ts | 1 - 3 files changed, 15 deletions(-) diff --git a/core/base/src/constants/contracts/portico.ts b/core/base/src/constants/contracts/portico.ts index f8f961a5b..f7b9eafd0 100644 --- a/core/base/src/constants/contracts/portico.ts +++ b/core/base/src/constants/contracts/portico.ts @@ -56,11 +56,5 @@ export const porticoContracts = [ porticoPancakeSwap: '0x4568aa1eA0ED54db666c58B4526B3FC9BD9be9bf', pancakeSwapQuoterV2: '0xB048Bbc1Ee6b733FFfCFb9e9CeF7375518e25997', }], - ["Celo", { - porticoUniswap: '0xE565E118e75304dD3cF83dff409c90034b7EA18a', - uniswapQuoterV2: '0x82825d0554fA07f7FC52Ab63c961F330fdEFa8E8', - porticoPancakeSwap: undefined, - pancakeSwapQuoterV2: undefined, - }] ] ]] as const satisfies MapLevels<[Network, Chain, PorticoContracts]> diff --git a/core/base/src/constants/tokens/mainnet.ts b/core/base/src/constants/tokens/mainnet.ts index e0f4598f6..c821b2ba1 100644 --- a/core/base/src/constants/tokens/mainnet.ts +++ b/core/base/src/constants/tokens/mainnet.ts @@ -1547,14 +1547,6 @@ const mainnetTokenEntries = [ address: "0x471ece3750da237f93b8e339c536989b8978a438", }, ], - [ - "USDT", - { - symbol: "USDT", - decimals: 6, - address: "0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e", - }, - ], [ "WGLMR", { diff --git a/platforms/evm/protocols/portico/src/consts.ts b/platforms/evm/protocols/portico/src/consts.ts index 2a717c9f2..20b59a375 100644 --- a/platforms/evm/protocols/portico/src/consts.ts +++ b/platforms/evm/protocols/portico/src/consts.ts @@ -33,6 +33,5 @@ export const supportedTokens = { Wormhole.tokenId('Ethereum', '0xdAC17F958D2ee523a2206206994597C13D831ec7'), Wormhole.tokenId('Optimism', '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58'), Wormhole.tokenId('Polygon', '0xc2132D05D31c914a87C6611C10748AEb04B58e8F'), - Wormhole.tokenId('Celo', '0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e'), ], } as const;