diff --git a/src/functions/explorer.ts b/src/functions/explorer.ts index 445222497a..714b700d9c 100644 --- a/src/functions/explorer.ts +++ b/src/functions/explorer.ts @@ -65,7 +65,7 @@ const explorers = { telos: (link: string, data: string, type: 'transaction' | 'token' | 'address' | 'block') => { switch (type) { case 'transaction': - return `${link}/transaction/${data}` + return `${link}/tx/${data}` case 'token': return `${link}/address/${data}` case 'address': @@ -198,7 +198,7 @@ const chains: ChainObject = { builder: explorers.fuse, }, [ChainId.TELOS]: { - link: 'https://rpc1.us.telos.net/v2/explore/evm', + link: 'https://teloscan.io', builder: explorers.telos, }, [ChainId.MOONBEAM]: { diff --git a/src/modals/NetworkModal/index.tsx b/src/modals/NetworkModal/index.tsx index a964dee25f..a20e569c8c 100644 --- a/src/modals/NetworkModal/index.tsx +++ b/src/modals/NetworkModal/index.tsx @@ -226,7 +226,7 @@ export const SUPPORTED_NETWORKS: Record< decimals: 18, }, rpcUrls: ['https://mainnet.telos.net/evm'], - blockExplorerUrls: ['https://rpc1.us.telos.net/v2/explore'], + blockExplorerUrls: ['https://teloscan.io'], }, [ChainId.PALM]: { chainId: '0x2A15C308D',