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

# 区块浏览器

export const CopyToClipboard = ({value, children}) => {
  const [copied, setCopied] = useState(false);
  const handleCopy = async () => {
    try {
      await navigator.clipboard.writeText(value);
      setCopied(true);
      setTimeout(() => setCopied(false), 1000);
    } catch {
      const textarea = document.createElement("textarea");
      textarea.value = value;
      textarea.style.position = "fixed";
      textarea.style.opacity = "0";
      document.body.appendChild(textarea);
      textarea.select();
      document.execCommand("copy");
      document.body.removeChild(textarea);
      setCopied(true);
      setTimeout(() => setCopied(false), 1000);
    }
  };
  return <span style={{
    display: "inline",
    whiteSpace: "nowrap"
  }}>
      {children}
      <button onClick={handleCopy} title={copied ? "Copied!" : "Copy to clipboard"} style={{
    background: "none",
    border: "none",
    cursor: "pointer",
    padding: "2px",
    display: "inline-flex",
    alignItems: "center",
    verticalAlign: "middle",
    marginLeft: "4px",
    opacity: copied ? 1 : 0.4,
    transition: "opacity 0.15s"
  }} onMouseEnter={e => {
    if (!copied) e.currentTarget.style.opacity = "0.8";
  }} onMouseLeave={e => {
    if (!copied) e.currentTarget.style.opacity = "0.4";
  }}>
        {copied ? <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="#22c55e" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">
            <polyline points="20 6 9 17 4 12" />
          </svg> : <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
            <rect x="9" y="9" width="13" height="13" rx="2" ry="2" />
            <path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
          </svg>}
      </button>
    </span>;
};

## 区块浏览器概览

<Tabs>
  <Tab title="主网">
    <div class="mintlify-table-wrapper">
      <table class="mintlify-table">
        <thead>
          <tr>
            <th>区块浏览器</th>
            <th>技术支持方</th>
            <th>状态</th>
            <th>URL</th>
            <th>验证器类型与 URL</th>
          </tr>
        </thead>

        <tbody>
          <tr>
            <td>**MonadVision**</td>
            <td>BlockVision</td>
            <td>✅</td>

            <td>
              <CopyToClipboard value="https://monadvision.com/">[https://monadvision.com/](https://monadvision.com/)</CopyToClipboard>
            </td>

            <td>
              Sourcify: <CopyToClipboard value="https://sourcify-api-monad.blockvision.org">`https://sourcify-api-monad.blockvision.org`</CopyToClipboard>
            </td>
          </tr>

          <tr>
            <td>**Monadscan**</td>
            <td>Etherscan</td>
            <td>✅</td>

            <td>
              <CopyToClipboard value="https://monadscan.com/">[https://monadscan.com/](https://monadscan.com/)</CopyToClipboard>
            </td>

            <td>
              Etherscan: <CopyToClipboard value="https://api.monadscan.com/api">`https://api.monadscan.com/api`</CopyToClipboard>
            </td>
          </tr>
        </tbody>
      </table>
    </div>

    *✅ = 已支持,⌛️ = 进行中,❓ = 未知,❌ = 不会支持*
  </Tab>

  <Tab title="测试网">
    <div class="mintlify-table-wrapper">
      <table class="mintlify-table">
        <thead>
          <tr>
            <th>区块浏览器</th>
            <th>技术支持方</th>
            <th>状态</th>
            <th>URL</th>
            <th>验证器类型与 URL</th>
          </tr>
        </thead>

        <tbody>
          <tr>
            <td>**MonadVision**</td>
            <td>BlockVision</td>
            <td>✅</td>

            <td>
              <CopyToClipboard value="https://testnet.monadvision.com/">[https://testnet.monadvision.com/](https://testnet.monadvision.com/)</CopyToClipboard>
            </td>

            <td>
              Sourcify: <CopyToClipboard value="https://sourcify-api-monad.blockvision.org">`https://sourcify-api-monad.blockvision.org`</CopyToClipboard>
            </td>
          </tr>

          <tr>
            <td>**Monadscan**</td>
            <td>Etherscan</td>
            <td>✅</td>

            <td>
              <CopyToClipboard value="https://testnet.monadscan.com/">[https://testnet.monadscan.com/](https://testnet.monadscan.com/)</CopyToClipboard>
            </td>

            <td>
              Etherscan: <CopyToClipboard value="https://api-testnet.monadscan.com/api">`https://api-testnet.monadscan.com/api`</CopyToClipboard>
            </td>
          </tr>
        </tbody>
      </table>
    </div>

    *✅ = 已支持,⌛️ = 进行中,❓ = 未知,❌ = 不会支持*
  </Tab>
</Tabs>

## UserOp 浏览器

<div class="mintlify-table-wrapper">
  <table class="mintlify-table">
    <thead>
      <tr>
        <th>UserOp 浏览器</th>
        <th>状态</th>
        <th>URL</th>
        <th>说明</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td>JiffyScan</td>
        <td>✅</td>

        <td>
          <CopyToClipboard value="https://jiffyscan.xyz/?network=monad">[https://jiffyscan.xyz/?network=monad](https://jiffyscan.xyz/?network=monad)</CopyToClipboard>
        </td>

        <td>面向 EIP-4337 的 UserOp 浏览器</td>
      </tr>
    </tbody>
  </table>
</div>

## 交易详情浏览器

<div class="mintlify-table-wrapper">
  <table class="mintlify-table">
    <thead>
      <tr>
        <th>交易浏览器</th>
        <th>状态</th>
        <th>URL</th>
        <th>说明</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td>Tenderly Explorer</td>
        <td>✅</td>

        <td>
          <CopyToClipboard value="https://dashboard.tenderly.co/explorer">[https://dashboard.tenderly.co/explorer](https://dashboard.tenderly.co/explorer)</CopyToClipboard>
        </td>

        <td>详尽的交易分析器,提供调用堆栈、余额变化、gas 使用等信息</td>
      </tr>

      <tr>
        <td>Blocksec Phalcon Explorer</td>
        <td>✅</td>

        <td>
          <CopyToClipboard value="https://blocksec.com/explorer">[https://blocksec.com/explorer](https://blocksec.com/explorer)</CopyToClipboard>
        </td>

        <td>详尽的交易分析器,提供调用堆栈、余额变化、资金流向等信息</td>
      </tr>
    </tbody>
  </table>
</div>

## 提供商详情

### BlockVision

[MonadVision](https://monadvision.com) 由 [BlockVision](https://blockvision.org/) 打造,后者是
面向区块链的新一代数据基础设施与企业解决方案的领先提供商。BlockVision 支持 EVM 与 Sui,专注于
区块浏览器服务、RPC 节点、索引 API 以及验证者服务。

要开始使用,请访问[文档](https://docs.blockvision.org/reference/monad-indexing-api)。

### Monadscan

[Monadscan](https://monadscan.com) 由 [Etherscan](https://etherscan.io/) 打造,可为链上数据提供
可靠且高性能的访问方式。凭借 Etherscan 行业领先的专业能力,MonadScan 为 Monad 生态提供了强大的
浏览器工具、开发者友好的 API 以及可靠的基础设施。

要开始使用,请访问[文档](https://docs.monadscan.com/)。
