Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix token search crash for newly added chains #6147

Merged
merged 2 commits into from
Sep 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/utils/ethereumUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ const getDataString = (func: string, arrVals: string[]) => {
*/
function getEtherscanHostForNetwork({ chainId }: { chainId: ChainId }): string {
const base_host = 'etherscan.io';
const blockExplorer = defaultChains[chainId].blockExplorers?.default?.url;
const blockExplorer = defaultChains[chainId]?.blockExplorers?.default?.url;
const network = chainsName[chainId];

if (network && isTestnetChain({ chainId })) {
Expand Down Expand Up @@ -354,7 +354,7 @@ export const getFirstTransactionTimestamp = async (address: EthereumAddress): Pr
};

function getBlockExplorer({ chainId }: { chainId: ChainId }) {
return defaultChains[chainId].blockExplorers?.default.name || 'etherscan';
return defaultChains[chainId]?.blockExplorers?.default.name || 'etherscan';
}

function openAddressInBlockExplorer({ address, chainId }: { address: EthereumAddress; chainId: ChainId }) {
Expand Down
Loading