Skip to content

Commit

Permalink
Merge branch 'master' into shazarre/fix_transfers
Browse files Browse the repository at this point in the history
  • Loading branch information
shazarre authored Jul 9, 2024
2 parents c97b29e + 6f0ccb4 commit fa07b82
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion apps/web/components/faucet-status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
</a>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/config/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const CHAIN_PARAMS: Record<Network, ChainParams> = {
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'],
},
}
Expand Down

0 comments on commit fa07b82

Please sign in to comment.