Skip to content

Commit

Permalink
feat: GFI-82: Allow USDC Swap Hops (#2530)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithbro-imx authored Feb 19, 2025
1 parent 674de7b commit 27bd2ed
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,27 @@ export const ETH_IMMUTABLE_MAINNET: ERC20 = {
type: 'erc20',
};

export const USDC_IMMUTABLE_MAINNET: ERC20 = {
chainId: IMMUTABLE_MAINNET_CHAIN_ID,
address: '0x6de8aCC0D406837030CE4dd28e7c08C5a96a30d2',
decimals: 6,
symbol: 'USDC',
name: 'USDC',
type: 'erc20',
};

export const USDT_IMMUTABLE_MAINNET: ERC20 = {
chainId: IMMUTABLE_MAINNET_CHAIN_ID,
address: '0x68bcc7F1190AF20e7b572BCfb431c3Ac10A936Ab',
decimals: 6,
symbol: 'USDT',
name: 'USDT',
type: 'erc20',
};

export const IMMUTABLE_MAINNET_COMMON_ROUTING_TOKENS: ERC20[] = [
WIMX_IMMUTABLE_MAINNET,
ETH_IMMUTABLE_MAINNET,
USDC_IMMUTABLE_MAINNET,
USDT_IMMUTABLE_MAINNET,
];

0 comments on commit 27bd2ed

Please sign in to comment.