diff --git a/cypress/fixtures/assets.json b/cypress/fixtures/assets.json index 5dbbb740df..2ed92dd50d 100644 --- a/cypress/fixtures/assets.json +++ b/cypress/fixtures/assets.json @@ -634,8 +634,8 @@ "wrapped": false }, "USDC": { - "fullName": "USD Coin", - "shortName": "USDC", + "fullName": "Bridged USDC", + "shortName": "USDC.E", "collateral": true, "wrapped": false }, diff --git a/src/ui-config/reservePatches.ts b/src/ui-config/reservePatches.ts index 848ce07fd9..e26da7ee6b 100644 --- a/src/ui-config/reservePatches.ts +++ b/src/ui-config/reservePatches.ts @@ -1,3 +1,4 @@ +import { AaveV3Arbitrum, AaveV3Optimism, AaveV3Polygon } from '@bgd-labs/aave-address-book'; import { unPrefixSymbol } from 'src/hooks/app-data-provider/useAppDataProvider'; /** @@ -103,7 +104,17 @@ export function fetchIconSymbolAndName({ underlyingAsset, symbol, name }: IconSy symbol: 'KNCL', iconSymbol: 'KNCL', }, - '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8': { + [AaveV3Arbitrum.ASSETS.USDC.UNDERLYING.toLowerCase()]: { + name: 'Bridged USDC', + symbol: 'USDC.e', + iconSymbol: 'USDC', + }, + [AaveV3Optimism.ASSETS.USDC.UNDERLYING.toLowerCase()]: { + name: 'Bridged USDC', + symbol: 'USDC.e', + iconSymbol: 'USDC', + }, + [AaveV3Polygon.ASSETS.USDC.UNDERLYING.toLowerCase()]: { name: 'Bridged USDC', symbol: 'USDC.e', iconSymbol: 'USDC',