diff --git a/apps/web/components/faucet-status.tsx b/apps/web/components/faucet-status.tsx index 3346b9cef..fa4ffc235 100644 --- a/apps/web/components/faucet-status.tsx +++ b/apps/web/components/faucet-status.tsx @@ -95,7 +95,11 @@ const TxMessage = ({ className={inter.className} target="_blank" rel="noreferrer" - href={`https://explorer.celo.org/${network}/tx/${txHash}`} + href={ + network === 'dango' + ? `https://celo-dango.blockscout.com/tx/${txHash}` + : `https://explorer.celo.org/${network}/tx/${txHash}` + } > View on Celo Explorer diff --git a/apps/web/config/chains.ts b/apps/web/config/chains.ts index ed0d8296f..bb672eddf 100644 --- a/apps/web/config/chains.ts +++ b/apps/web/config/chains.ts @@ -27,7 +27,7 @@ export const CHAIN_PARAMS: Record = { chainName: 'Dango Testnet', nativeCurrency: { name: 'Dango Celo', symbol: 'D-CELO', decimals: 18 }, rpcUrls: ['https://forno.dango.celo-testnet.org'], - blockExplorerUrls: [], + blockExplorerUrls: ['https://celo-dango.blockscout.com'], iconUrls: ['future'], }, }