From 65e6a034b1278e61f9193d9d6c75b83b96081311 Mon Sep 17 00:00:00 2001 From: Daryna Shpankova Date: Mon, 16 Jun 2025 22:43:06 +0200 Subject: [PATCH] add myr coin --- apps/haust-dex/src/constants/tokens.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/apps/haust-dex/src/constants/tokens.ts b/apps/haust-dex/src/constants/tokens.ts index 9201a9edeef..d3c751935af 100644 --- a/apps/haust-dex/src/constants/tokens.ts +++ b/apps/haust-dex/src/constants/tokens.ts @@ -17,6 +17,14 @@ export const USDT_HAUST_TESTNET = new Token( 'Tether' ) +export const MYR_HAUST_TESTNET = new Token( + SupportedChainId.HAUST_TESTNET, + '0x07607F6cccd147660cC2D78EA2c6fc8b9d918601', + 18, + 'MYR', + 'Malaysian ringgit' +) + export const USDC_HAUST_TESTNET = new Token( SupportedChainId.HAUST_TESTNET, '0x1AfB500AFfBBc8a7FC8aB0f5C4D06c59AC87B111', @@ -64,7 +72,8 @@ export const TOKEN_ADDRESSES = { 'USDT': USDT_HAUST_TESTNET, 'USDC': USDC_HAUST_TESTNET, 'WBTC': WBTC_HAUST_TESTNET, - 'WHAUST': WRAPPED_NATIVE_CURRENCY[SupportedChainId.HAUST_TESTNET] + 'WHAUST': WRAPPED_NATIVE_CURRENCY[SupportedChainId.HAUST_TESTNET], + 'MYR': MYR_HAUST_TESTNET } function isHaust(chainId: number): chainId is SupportedChainId.HAUST {