跳转到主要内容
mip.watch
for-agents ⌘K

面向智能体

用于 Monad 改进提案研究的机器可读入口。

本站的功能

mip.watch 追踪 Monad 改进提案、论坛活动、网络准备状态、客户端发布、依赖关系链接,以及面向开发者、验证者、终端用户和核心团队的 4 轴利益相关方影响摘要。

面向开发者

  • 哪些 MIP 会影响智能合约或 RPC 集成?
  • 核心、接口或 MRC 类提案近期有何变更?
  • 哪些提案需要应用或工具方面的变更?

面向验证者

  • 哪些高严重度 MIP 涉及共识或网络?
  • 运营者在硬分叉前应关注哪个客户端版本?
  • 下一次升级打包了哪些提案?

面向终端用户

  • 哪些 MIP 会改变钱包或交易行为?
  • 是否有任何进行中的提案可能需要用户采取行动?
  • 某项特定 MIP 的通俗摘要是什么?

快速开始

curl https://mip.watch/api/v1/mips
curl -X POST https://mip.watch/api/ai-summary \
  -H "content-type: application/json" \
  -d '{"mipNumber":"6","locale":"en"}'
curl https://mip.watch/api/forum-activity?topicId=N

数据结构

/llms.txt
{
  "mips": [
    {
      "number": "0006",
      "numberShort": "6",
      "title": "string",
      "status": "Draft|Review|Last Call|Final|Living|Stagnant|Withdrawn",
      "type": "Standards Track|Meta|Informational",
      "category": "Core|Networking|Interface|MRC|Process|Hardfork",
      "subsystems": ["consensus"],
      "updatedAt": "ISO-8601"
    }
  ],
  "count": 1
}
{
  "summary": {
    "tldr": "string",
    "whatsChanging": ["string"],
    "developers": { "impact": "string", "severity": "low|medium|high", "actionRequired": false },
    "users": { "impact": "string", "severity": "low|medium|high", "actionRequired": false },
    "validators": { "impact": "string", "severity": "low|medium|high", "actionRequired": true },
    "foundation": { "impact": "string", "severity": "low|medium|high", "actionRequired": false }
  },
  "cached": true
}