Skip to content

Commit 27bd2ed

Browse files
authored
feat: GFI-82: Allow USDC Swap Hops (#2530)
1 parent 674de7b commit 27bd2ed

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

packages/internal/dex/sdk/src/constants/tokens/immutable-mainnet.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,27 @@ export const ETH_IMMUTABLE_MAINNET: ERC20 = {
2727
type: 'erc20',
2828
};
2929

30+
export const USDC_IMMUTABLE_MAINNET: ERC20 = {
31+
chainId: IMMUTABLE_MAINNET_CHAIN_ID,
32+
address: '0x6de8aCC0D406837030CE4dd28e7c08C5a96a30d2',
33+
decimals: 6,
34+
symbol: 'USDC',
35+
name: 'USDC',
36+
type: 'erc20',
37+
};
38+
39+
export const USDT_IMMUTABLE_MAINNET: ERC20 = {
40+
chainId: IMMUTABLE_MAINNET_CHAIN_ID,
41+
address: '0x68bcc7F1190AF20e7b572BCfb431c3Ac10A936Ab',
42+
decimals: 6,
43+
symbol: 'USDT',
44+
name: 'USDT',
45+
type: 'erc20',
46+
};
47+
3048
export const IMMUTABLE_MAINNET_COMMON_ROUTING_TOKENS: ERC20[] = [
3149
WIMX_IMMUTABLE_MAINNET,
3250
ETH_IMMUTABLE_MAINNET,
51+
USDC_IMMUTABLE_MAINNET,
52+
USDT_IMMUTABLE_MAINNET,
3353
];

0 commit comments

Comments
 (0)