File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
packages/internal/dex/sdk/src/constants/tokens Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,27 @@ export const ETH_IMMUTABLE_MAINNET: ERC20 = {
27
27
type : 'erc20' ,
28
28
} ;
29
29
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
+
30
48
export const IMMUTABLE_MAINNET_COMMON_ROUTING_TOKENS : ERC20 [ ] = [
31
49
WIMX_IMMUTABLE_MAINNET ,
32
50
ETH_IMMUTABLE_MAINNET ,
51
+ USDC_IMMUTABLE_MAINNET ,
52
+ USDT_IMMUTABLE_MAINNET ,
33
53
] ;
You can’t perform that action at this time.
0 commit comments