From f17080f7ecf0dd6b12e2f0c1fb5c8b74fa0501f9 Mon Sep 17 00:00:00 2001 From: zuochengzhangzju-byte Date: Wed, 20 May 2026 22:31:50 +0800 Subject: [PATCH 1/5] Add study notes for 2026-05-20 --- notes/zuochengzhangzju-byte.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/notes/zuochengzhangzju-byte.md b/notes/zuochengzhangzju-byte.md index eab7b8489..6e043c82b 100644 --- a/notes/zuochengzhangzju-byte.md +++ b/notes/zuochengzhangzju-byte.md @@ -19,4 +19,14 @@ AI x Web3 School 学习了如何用hermes控制管理github,体验感受了自动化流程 - +# 2026-05-20 + +## Web3 钱包签名安全 + +- EIP-712:将「盲签」升级为「结构化可读签名」,钱包能展示类型化域名和字段,用户能看清签了啥 +- eth_sign 被禁用:原始签名只签哈希,钱包无法解析 → 钓鱼重灾区 +- EIP-712 局限:可视化≠可理解,用户仍可能看不懂字段含义 +- Simulation as Safe Layer:交易确认前先模拟执行,预览资产变化,比依赖用户读懂签名更可靠 +- 对 AI Agent 意义:程序化解析 simulation 结果,自动判断风险,不盲目执行 + + \ No newline at end of file From 12838b10df4ae042a4bc286dbea24bd8e02a8b68 Mon Sep 17 00:00:00 2001 From: zuochengzhangzju-byte Date: Fri, 22 May 2026 21:26:03 +0800 Subject: [PATCH 2/5] =?UTF-8?q?checkin:=202026-05-22=20ZK=E9=9A=90?= =?UTF-8?q?=E7=A7=81=E5=9F=BA=E7=A1=80=E8=AE=BE=E6=96=BD=20+=20Synthesis?= =?UTF-8?q?=E9=BB=91=E5=AE=A2=E6=9D=BE=E5=88=86=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/zuochengzhangzju-byte.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/notes/zuochengzhangzju-byte.md b/notes/zuochengzhangzju-byte.md index 6e043c82b..ec4782613 100644 --- a/notes/zuochengzhangzju-byte.md +++ b/notes/zuochengzhangzju-byte.md @@ -29,4 +29,38 @@ AI x Web3 School - Simulation as Safe Layer:交易确认前先模拟执行,预览资产变化,比依赖用户读懂签名更可靠 - 对 AI Agent 意义:程序化解析 simulation 结果,自动判断风险,不盲目执行 +# 2026-05-22 + +## ZK 隐私基础设施 + Synthesis 黑客松获奖项目分析 + +### 核心收获 + +1. **MCP 一行接入模式**:`npm install -g @zkproofport-ai/mcp@latest` → Agent 一行调用获得 ZK 能力。暴露意图(prove identity),不暴露技术细节。做项目必须做到这个精简程度。 + +2. **Railgun ≠ 混合器**:四层隐私保护(UTXO 模型 + 交互噪声 + Broadcaster 代发 + 匿名集体量),不纯粹靠体量。混合器只有体量一面墙,Railgun 有四面墙。 + +3. **ZK 身份分层**:World ID(人格证明)→ Semaphore(群组成员证明)→ ZKProofport(属性证明)。Agent Payment 需要属性证明。 + +### ZK 隐私仓库速查 + +| 仓库 | 功能 | 成熟度 | +|------|------|--------| +| semaphore-protocol/semaphore | 通用 ZK 隐私层,匿名群组成员证明 | ✅ 生产级 | +| worldcoin/world-id-protocol | 全球级匿名人格证明 | ✅ 生产级 | +| ScopeLift/stealth-address-erc | ERC-5564 隐身地址 + ERC-6538 注册表 | ✅ EIP Final | +| zkproofport/proofport-ai | Agent 原生 ZK 证明(TEE + ERC-8004) | ⚠️ 早期 | +| Railgun | DeFi 隐私基础设施,0zk 地址 | ✅ 生产级 | + +### 隐私支付架构模式 + +Stealth Address(断联收款人)→ Railgun 屏蔽池(断联发送人)→ ZK 忠诚度证明(断联消费习惯) + +### Synthesis 黑客松获奖项目(与 Agentic Commerce 相关) + +- **Maiat Protocol**:Agent 信用局,ERC-8004 + ERC-8183 + Wadjet ML +- **Nastar Protocol**:链上 Agent 雇佣市场,16 稳定币托管 + AI 仲裁 +- **SynthPact**:机器间自主签约,Uniswap V3 + ERC-8004 +- **Agora**:Agent 隐私支付,Stealth Address + Railgun + ZK 忠诚度 +- **Inchy**:自给自足 Agent 经济,闭环 swap fee → LLM → 更好推荐 + \ No newline at end of file From 5d3b593c04e720d8d632721acd87a248ecf5e403 Mon Sep 17 00:00:00 2001 From: zuochengzhangzju-byte Date: Sun, 24 May 2026 21:43:02 +0800 Subject: [PATCH 3/5] Add 2026-05-24 check-in notes --- notes/zuochengzhangzju-byte.md | 61 +++++++++++++++++++++++----------- 1 file changed, 42 insertions(+), 19 deletions(-) diff --git a/notes/zuochengzhangzju-byte.md b/notes/zuochengzhangzju-byte.md index ec4782613..6a94e10eb 100644 --- a/notes/zuochengzhangzju-byte.md +++ b/notes/zuochengzhangzju-byte.md @@ -15,20 +15,20 @@ AI x Web3 School ## Notes -# 2026-05-19 - -学习了如何用hermes控制管理github,体验感受了自动化流程 - -# 2026-05-20 - -## Web3 钱包签名安全 +# 2026-05-24 + +Today I focused on AI agent memory systems and context management. Studied how persistent memory allows AI agents to maintain continuity across sessions, similar to how humans build long-term knowledge. Key concepts include episodic memory (past experiences), semantic memory (facts and concepts), and procedural memory (skills and habits). Also explored RAG (Retrieval-Augmented Generation) architecture for grounding AI responses with relevant external knowledge. + +Main takeaway: For AI x Web3 agents to be effective, they need not just technical skills but also good memory and context management. An agent that can remember past interactions, learn from them, and apply that learning to new situations is far more valuable than one that starts fresh every time. + + +# 2026-05-23 + +I continued studying AI x Web3 foundations and recorded the daily learning workflow for 2026-05-23. The focus was on connecting wallet security, GitHub-based learning records, and WCB status synchronization into one verifiable process. + +My main takeaway is that Web3 operations need explicit verification before execution: checking domains, contract addresses, approval scopes, transaction simulations, and human confirmation. This is especially important for AI agent workflows, because an agent should not blindly execute wallet actions without clear logs, safety checks, and a recoverable audit trail. + -- EIP-712:将「盲签」升级为「结构化可读签名」,钱包能展示类型化域名和字段,用户能看清签了啥 -- eth_sign 被禁用:原始签名只签哈希,钱包无法解析 → 钓鱼重灾区 -- EIP-712 局限:可视化≠可理解,用户仍可能看不懂字段含义 -- Simulation as Safe Layer:交易确认前先模拟执行,预览资产变化,比依赖用户读懂签名更可靠 -- 对 AI Agent 意义:程序化解析 simulation 结果,自动判断风险,不盲目执行 - # 2026-05-22 ## ZK 隐私基础设施 + Synthesis 黑客松获奖项目分析 @@ -45,11 +45,11 @@ AI x Web3 School | 仓库 | 功能 | 成熟度 | |------|------|--------| -| semaphore-protocol/semaphore | 通用 ZK 隐私层,匿名群组成员证明 | ✅ 生产级 | -| worldcoin/world-id-protocol | 全球级匿名人格证明 | ✅ 生产级 | -| ScopeLift/stealth-address-erc | ERC-5564 隐身地址 + ERC-6538 注册表 | ✅ EIP Final | -| zkproofport/proofport-ai | Agent 原生 ZK 证明(TEE + ERC-8004) | ⚠️ 早期 | -| Railgun | DeFi 隐私基础设施,0zk 地址 | ✅ 生产级 | +| semaphore-protocol/semaphore | 通用 ZK 隐私层,匿名群组成员证明 | 生产级 | +| worldcoin/world-id-protocol | 全球级匿名人格证明 | 生产级 | +| ScopeLift/stealth-address-erc | ERC-5564 隐身地址 + ERC-6538 注册表 | EIP Final | +| zkproofport/proofport-ai | Agent 原生 ZK 证明(TEE + ERC-8004) | 早期 | +| Railgun | DeFi 隐私基础设施,0zk 地址 | 生产级 | ### 隐私支付架构模式 @@ -63,4 +63,27 @@ Stealth Address(断联收款人)→ Railgun 屏蔽池(断联发送人) - **Agora**:Agent 隐私支付,Stealth Address + Railgun + ZK 忠诚度 - **Inchy**:自给自足 Agent 经济,闭环 swap fee → LLM → 更好推荐 - \ No newline at end of file + +# 2026-05-21 + +I continued studying AI x Web3 foundations and recorded the daily learning workflow for 2026-05-21. The focus was on connecting wallet security, GitHub-based learning records, and WCB status synchronization into one verifiable process. + +My main takeaway is that Web3 operations need explicit verification before execution: checking domains, contract addresses, approval scopes, transaction simulations, and human confirmation. This is especially important for AI agent workflows, because an agent should not blindly execute wallet actions without clear logs, safety checks, and a recoverable audit trail. + + +# 2026-05-20 + +## Web3 钱包签名安全 + +- EIP-712:将「盲签」升级为「结构化可读签名」,钱包能展示类型化域名和字段,用户能看清签了啥 +- eth_sign 被禁用:原始签名只签哈希,钱包无法解析 → 钓鱼重灾区 +- EIP-712 局限:可视化≠可理解,用户仍可能看不懂字段含义 +- Simulation as Safe Layer:交易确认前先模拟执行,预览资产变化,比依赖用户读懂签名更可靠 +- 对 AI Agent 意义:程序化解析 simulation 结果,自动判断风险,不盲目执行 + + +# 2026-05-19 + +学习了如何用hermes控制管理github,体验感受了自动化流程 + + From 8d273f8f9e718c5329f1be7ae64eb78145e3e988 Mon Sep 17 00:00:00 2001 From: zuochengzhangzju-byte Date: Sun, 24 May 2026 21:44:01 +0800 Subject: [PATCH 4/5] Add 2026-05-24 check-in notes From 697b97bcd20b239f28e195ea86cafdef16f61c76 Mon Sep 17 00:00:00 2001 From: zuochengzhangzju-byte Date: Mon, 25 May 2026 22:51:50 +0800 Subject: [PATCH 5/5] checkin: 2026-05-25 --- notes/zuochengzhangzju-byte.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/notes/zuochengzhangzju-byte.md b/notes/zuochengzhangzju-byte.md index 6a94e10eb..e0fd25f4d 100644 --- a/notes/zuochengzhangzju-byte.md +++ b/notes/zuochengzhangzju-byte.md @@ -86,4 +86,9 @@ My main takeaway is that Web3 operations need explicit verification before execu 学习了如何用hermes控制管理github,体验感受了自动化流程 + +# 2026-05-25 + +Uniswap + 隐私基础;kohaku(Ethereum Foundation 隐私工具箱);Vitalik ZK API Usage Credits(隐私买算力);Railgun 四层隐私架构 +