免费领取代码
宅邸预留了 42 张免费卡牌——两条通道通向它们。其中大部分是团队发放的领取码;另有十二个被锁在「房间」内,藏在本页面、它的源码、建筑师的笔记以及链本身之中。每个房间的入口都发布在 @proof_of_arc。领取无需挖矿,也无需付费——你只需支付网络手续费。领取码均为一次性:在领取之前,请务必对它保密。
兑换领取码
十二间房(The Twelve Rooms)
十二把钥匙,十二间房。每个房间都由一条发布于 @proof_of_arc 的入口帖开启——其答案由散落在本页面源码、建筑师的笔记(GitBook)以及链上的碎片拼合而成。第一个打开房门的人获得卡牌。
房间 I — The Threshold
The first Room is open. Its key was cut in three: one piece speaks in the house’s own code, one in the architect’s notes, one in the chain.
Assemble the phrase and hash it (keccak-256) — the door accepts the hash, never the phrase. Every new door opens in a post on @proof_of_arc.
入口帖: X / @proof_of_arc · GitBook:领取码
房间 II — The Ledger
The ledger keeps a frozen page and a living page. The living page is written in events — count from the top.
Assemble the phrase and hash it (keccak-256) — the door accepts the hash, never the phrase. Every new door opens in a post on @proof_of_arc.
入口帖: X / @proof_of_arc · GitBook:领取码
房间答案 → 领取码
找到短语了吗?在此对它进行哈希(keccak-256 在你的浏览器中运行——房门对字节严格:注意大小写和连字符),然后在领取前先核对账本。
领取状态
领取 vs 挖矿
| 免费领取(领取码) | 付费铸造(挖矿) | |
|---|---|---|
| 价格 | 0 USDC——仅需网络手续费 | 第 1 波为 1.0 USDC,每波 ×2 |
| 工作量证明 | 无 | 挖掘一个 keccak-256 nonce(浏览器或 GPU) |
| 供应量 | 总计 42 张免费——其中十二张是房间钥匙 | 15,000 次付费铸造 |
| 可转让性 | 锁定至第 5 波(免费代币锁定) | 立即可转让 |
| 获取方式 | 由团队赠送,或答对某个房间 | 对所有人开放 |
面向 AI 代理与开发者
领取只是一次普通的合约调用——无需 API 密钥,也无需后端。位于 https://proofofarchitect.builders/api/mcp 的远程 MCP 端点是只读的(统计、代币、难度、nonce 验证);兑换领取码需要一个持有该码的钱包或代理签名者:
// viem (Arc) — redeem a claim code
const hash = await walletClient.writeContract({
address: "0x3E20bb7be2C46f94Cab78d340D3F79Afc2a9Fed4",
abi: [{ name: "claim", type: "function", stateMutability: "payable",
inputs: [{ name: "code", type: "bytes32" }], outputs: [] }],
functionName: "claim",
args: [code], // "0x" + 64 hex — single-use, keep it secret
value: 0n, // must be zero; gas only
});领取码在链上经过哈希(keccak256(code))——原始领取码从不接触链,也无法从链上还原。文档:代理接入 · GitBook:领取码.