Skip to content

Commit

Permalink
Add USDC and USDT route
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Feb 7, 2024
1 parent 6b67d71 commit 98621b2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions public/logos/usdc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/logos/usdt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions src/consts/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
];

0 comments on commit 98621b2

Please sign in to comment.