diff --git a/public/logos/usdc.svg b/public/logos/usdc.svg new file mode 100644 index 00000000..ebc3fc56 --- /dev/null +++ b/public/logos/usdc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/logos/usdt.svg b/public/logos/usdt.svg new file mode 100644 index 00000000..88202bf3 --- /dev/null +++ b/public/logos/usdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/consts/tokens.ts b/src/consts/tokens.ts index bf44f5be..f0205b81 100644 --- a/src/consts/tokens.ts +++ b/src/consts/tokens.ts @@ -26,4 +26,28 @@ export const tokenList: WarpTokenConfig = [ hypNativeAddress: '0x26f32245fCF5Ad53159E875d5Cae62aEcf19c2d4', logoURI: '/logos/injective.svg', }, + + // Injective USDC + { + type: 'collateral', + chainId: 1, + name: 'USDC', + symbol: 'USDC', + decimals: 6, + address: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', + hypCollateralAddress: '0xED56728fb977b0bBdacf65bCdD5e17Bb7e84504f', + logoURI: '/logos/usdc.svg', + }, + + // Injective USDT + { + type: 'collateral', + chainId: 1, + name: 'USDT', + symbol: 'USDT', + decimals: 6, + address: '0xdAC17F958D2ee523a2206206994597C13D831ec7', + hypCollateralAddress: '0xab852e67bf03E74C89aF67C4BA97dd1088D3dA19', + logoURI: '/logos/usdt.svg', + }, ];