diff --git a/src/components/ExplorerEvents.tsx b/src/components/ExplorerEvents.tsx index 5f48beac..2b830af4 100644 --- a/src/components/ExplorerEvents.tsx +++ b/src/components/ExplorerEvents.tsx @@ -130,9 +130,7 @@ export const ExplorerEvents: FC<{ status?: string }> = ({ status = "" }) => { (chain) => chain?.name?.toLowerCase() === chainName?.toLowerCase() ); const rate = (chain && rates[chain.id]?.usd) || 1; - // if (chainName === "TON") { - // console.log({rate , chainName}); - // } + return rate; }; diff --git a/src/constants.ts b/src/constants.ts index a16b8ab3..6ae75b2b 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -44,7 +44,7 @@ export const currency: any = { "28": "ICP", "27": "TON", "35": "CMP", - "37": "ARB", + "37": "ETH", "31": "Near", "26": "SOL", "29": "HBAR", @@ -147,7 +147,7 @@ export const chainNoncetoName: any = { "27": "Ton", "35": "Caduceus", "36": "OKC", - "37": "Arbitrum Nova", + "37": "Arbitrum", "31": "Near", "26": "Solana", "29": "Hedera", @@ -210,7 +210,7 @@ export const chains = [ }, { id: "caduceus", name: "Caduceus", icon: Caduceus }, { id: "oec-token", name: "OKC", icon: OKC }, - { id: "arbitrum", name: "Arbitrum Nova", icon: Arbitrum }, + { id: "ethereum", name: "arbitrum", icon: Arbitrum }, { id: "near", name: "Near", icon: NearWallet }, { id: "solana", name: "Solana", icon: Solana, notConvert: true, dec: -9 }, { id: "hedera-hashgraph", name: "Hedera", icon: Hedera, dec: -8 }, diff --git a/src/pages/Search.tsx b/src/pages/Search.tsx index d4082241..944ba629 100644 --- a/src/pages/Search.tsx +++ b/src/pages/Search.tsx @@ -152,9 +152,7 @@ export const Search = (props: any) => { (chain) => chain?.name?.toLowerCase() === chainName?.toLowerCase() ); const rate = (chain && rates[chain.id]?.usd) || 1; - // if (chainName === "TON") { - // console.log({rate , chainName}); - // } + return rate; };