> ## Documentation Index
> Fetch the complete documentation index at: https://docs.celo.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Block Explorer

export const ColoredText = ({color = "#329F3B", darkColor = "#fcff52", children}) => {
  const isTWLight = typeof color === "string" && color.startsWith("text-");
  const isTWDark = typeof darkColor === "string" && darkColor.startsWith("text-");
  const Wrap = ({useColor, kids}) => typeof kids === "string" ? kids : <span style={{
    color: `${useColor} !important`
  }} className="!text-inherit">
        {kids}
      </span>;
  return <>
      {}
      <span className={`colored_text font-bold dark:hidden ${isTWLight ? `!${color}` : ""}`} style={!isTWLight ? {
    color,
    fontWeight: "bold"
  } : {
    fontWeight: "bold"
  }}>
        <Wrap useColor={isTWLight ? undefined : color} kids={children} />
      </span>

      {}
      <span className={`colored_text font-bold hidden dark:inline ${isTWDark ? `!${darkColor}` : ""}`} style={!isTWDark ? {
    color: darkColor,
    fontWeight: "bold"
  } : {
    fontWeight: "bold"
  }}>
        <Wrap useColor={isTWDark ? undefined : darkColor} kids={children} />
      </span>
    </>;
};

## [Blockscout](https://celo.blockscout.com/)

Blockscout explorer is available for <ColoredText>[Celo](https://celo.blockscout.com/blocks)</ColoredText>. If your contract is verfied on Blockscout, you can interact with and debug smart contracts.

* Search by address, transaction hash, batch, or token
* View, verify, and interact with smart contract source code.
* View detailed transaction information

A testnet explorer for [Celo Sepolia](https://celo-sepolia.blockscout.com/) is also available.

## [Celoscan](https://celoscan.io/)

Celoscan block explorer is available for <ColoredText>[Celo](https://celoscan.io/)</ColoredText>.If your contract is verfied on Celoscan, you can interact with and debug smart contracts.

* Search by address, transaction hash, batch, or token
* View, verify, and interact with smart contract source code
* View detailed transaction information

A testnet explorer for Celo Sepolia is also available.
