<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>kocc</title>
        <link>https://paragraph.com/@kocc</link>
        <description>yeah</description>
        <lastBuildDate>Tue, 14 Apr 2026 22:28:32 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Boundless]]></title>
            <link>https://paragraph.com/@kocc/boundless</link>
            <guid>KiqPSZmBFTpMyODDqhi7</guid>
            <pubDate>Sat, 21 Jun 2025 02:32:21 GMT</pubDate>
            <description><![CDATA[✅ 方案 1：用 GitHub Codespaces（官方云开发环境） GitHub 提供免费的 Codespaces（部分用户），它就是一个云端 VS Code + Linux 环境，可运行 CLI。 步骤： 打开 Boundless 仓库 🔗 https://github.com/boundless-xyz/boundless 点右上角 <> Code ➜ 选择 Open with Codespaces ➜ New codespace 在弹出的 Web IDE 中打开 Terminal，依次输入： bash 复制 编辑 git checkout release-0.10 curl --proto &apos;=https&apos; --tlsv1.2 -sSf https://sh.rustup.rs/ | sh source $HOME/.cargo/env curl -L https://risczero.com/install | bash rzup install cargo install --git https://github.com/risc0/risc0...]]></description>
            <content:encoded><![CDATA[<p>✅ 方案 1：用 GitHub Codespaces（官方云开发环境） GitHub 提供免费的 Codespaces（部分用户），它就是一个云端 VS Code + Linux 环境，可运行 CLI。</p><p>步骤： 打开 Boundless 仓库 🔗 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/boundless-xyz/boundless">https://github.com/boundless-xyz/boundless</a></p><p>点右上角 &lt;&gt; Code ➜ 选择 Open with Codespaces ➜ New codespace</p><p>在弹出的 Web IDE 中打开 Terminal，依次输入：</p><p>bash 复制 编辑 git checkout release-0.10 curl --proto &apos;=https&apos; --tlsv1.2 -sSf <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://sh.rustup.rs/">https://sh.rustup.rs/</a> | sh source $HOME/.cargo/env curl -L <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://risczero.com/install">https://risczero.com/install</a> | bash rzup install cargo install --git <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/risc0/risc0">https://github.com/risc0/risc0</a> bento-client --bin bento_cli cargo install --locked boundless-cli ⚠️ 缺点：Codespaces 免费额度有限，执行速度可能较慢，不支持 GPU，因此仍然只能跑 Dev，不适合 Prover。</p><p>✅ 方案 2：在 VPS 或本地运行（推荐） 你已经在 VPS 上成功跑通 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://boundless.sh">boundless.sh</a>，这个是最稳定的方法。你可以按上面整理的 Dev 教程继续完成。</p><p>✅ 总结： 方法 支持 CLI 运行 支持 GPU 推荐指数 GitHub 网页 ❌ ❌ 🚫 Codespaces ✅（部分功能） ❌ ⭐⭐⭐ VPS / WSL / 本地终端 ✅ ❌（VPS 默认无 GPU） ⭐⭐⭐⭐⭐</p><p>如果你想我帮你生成一个“在 GitHub Codespaces 上一键启动 Boundless Dev 环境”的 .devcontainer 配置，我也可以直接写好给你，点一下就能跑。</p><p>要不要我帮你弄一个？</p><p>您说： vps教程呢</p><p>ChatGPT 说： 当然可以！下面是为你量身定制的 ✅Boundless Dev VPS 图文教程（无GPU适用），确保你能在 VPS 上成功拿到 Boundless Dev Discord 身份，不需要显卡。</p><p>🚀 Boundless Dev 一键部署 &amp; CLI 使用教程（VPS版） ✅ 适用环境：Ubuntu 20.04 / 22.04 VPS 🧠 无需显卡，仅参与 Boundless Dev，不包含 Prover ⏰ 全流程耗时：15-25 分钟 📦 推荐配置：1核+2G+10G 空间即可</p><p>✅ 第一步：连接 VPS 并准备环境 如果你是 root 用户，建议直接操作。</p><p>bash 复制 编辑</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">更新系统</h1><p>apt update &amp;&amp; apt upgrade -y</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">安装必要工具</h1><p>apt install -y curl git wget unzip build-essential jq pkg-config libssl-dev clang</p><h1 id="h-vim" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">可选：安装 vim</h1><p>apt install -y vim ✅ 第二步：安装 Rust bash 复制 编辑 curl --proto &apos;=https&apos; --tlsv1.2 -sSf <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://sh.rustup.rs">https://sh.rustup.rs</a> | sh source $HOME/.cargo/env ✅ 第三步：安装 RISC Zero 工具链 bash 复制 编辑 curl -L <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://risczero.com/install">https://risczero.com/install</a> | bash source ~/.bashrc rzup install ⚠️ 如命令未找到，添加到路径：</p><p>bash 复制 编辑 export PATH=&quot;$HOME/.risc0/bin:$PATH&quot; echo &apos;export PATH=&quot;$HOME/.risc0/bin:$PATH&quot;&apos; &gt;&gt; ~/.bashrc source ~/.bashrc ✅ 第四步：安装 Boundless CLI 和 bento-client bash 复制 编辑</p><h1 id="h-bento-client" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">安装 bento-client</h1><p>cargo install --git <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/risc0/risc0">https://github.com/risc0/risc0</a> bento-client --bin bento_cli</p><h1 id="h-boundless-cli" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">安装 boundless-cli</h1><p>cargo install --locked boundless-cli</p><h1 id="h-cargo" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">添加 cargo 到路径（如未自动加）</h1><p>export PATH=&quot;$HOME/.cargo/bin:$PATH&quot; echo &apos;export PATH=&quot;$HOME/.cargo/bin:$PATH&quot;&apos; &gt;&gt; ~/.bashrc source ~/.bashrc ✅ 第五步：配置 .env 文件 在 ~ 或 boundless 项目目录下创建 .env.eth-sepolia</p><p>bash 复制 编辑 cd ~ vim .env.eth-sepolia 粘贴以下内容（替换你的私钥与 RPC）：</p><p>dotenv 复制 编辑 PRIVATE_KEY=0x你的私钥 RPC_URL=<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://sepolia.infura.io/v3/%E4%BD%A0%E7%9A%84%E9%A1%B9%E7%9B%AEID">https://sepolia.infura.io/v3/你的项目ID</a> CHAIN_ID=11155111 然后：</p><p>bash 复制 编辑 source .env.eth-sepolia ✅ 第六步：领取测试 USDC 打开 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://faucet.circle.com/">https://faucet.circle.com/</a></p><p>登录 GitHub 账号</p><p>输入你的钱包地址，选择网络 Sepolia</p><p>点击领取（一天限一次）</p><p>✅ 第七步：运行 CLI 命令 测试 CLI 安装：</p><p>bash 复制 编辑 boundless-cli --help bento-client --version 常见示例（可能因版本不同而不同）：</p><p>bash 复制 编辑 boundless-cli account info boundless-cli tx send-usdc --to 0x123... --amount 1 ✅ 第八步：获取 Dev 身份 只要你完成了交互任务，并确保链上记录生效，Guild 会自动识别并赋予你 Boundless Dev Discord 身份。</p><p>去绑定页面刷新查看：</p><p>🔗 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://guild.xyz/boundless-xyz">https://guild.xyz/boundless-xyz</a></p><p>💡 补充建议 安全起见建议使用小号私钥</p><p>如果你不确定命令格式，运行：</p><p>bash 复制 编辑 boundless-cli --help 建议加入官方 Discord 频道获取最新交互任务和更新动态</p>]]></content:encoded>
            <author>kocc@newsletter.paragraph.com (kocc)</author>
        </item>
        <item>
            <title><![CDATA[hyperlane交互教程]]></title>
            <link>https://paragraph.com/@kocc/hyperlane</link>
            <guid>VS7zUGZCn8RcSM1nXTem</guid>
            <pubDate>Tue, 01 Oct 2024 01:14:21 GMT</pubDate>
            <description><![CDATA[一.evm互跨 如果是目标链没有gas，去找相应的桥跨，或者交易所提eth 桥的集合，链接 1、merkly 这个有些链的gas是0.5刀（比如zora，kroma等），一般是1.11刀，需要多跨几个链,跨到目标链上需要找一个app交互一下，最好是存钱或者swap，等待1小时时间。 这里可以跨nft 比如说aave stargate 2、跨链ezETH 官方桥：链接 Superbridge - Renzo：链接 gas一刀一次，可以跨去linea赚积分 3、跨链usdc ACE官方桥：链接 目前只支持arb和base链，来回0.5刀，ace需要去交易所提币，0.3个足够了。 logx存款：链接 目前官方浏览器查不到数据，gas很低 4、跨链nft Zeroway：链接 这里还可以跨gas Atlas Protocol： 由Hyperlane支持的Atlas Protocol与Intract合作推出了限量 POAP，完成任务领取POAP和DC角色！ 链接 在Hyperlan铸造一个Arbitrum NFT，官方邀请码：NOCODE https://atlasprotocol.io ...]]></description>
            <content:encoded><![CDATA[<p>一.evm互跨</p><p>如果是目标链没有gas，去找相应的桥跨，或者交易所提eth</p><p>桥的集合，<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://syncswap.xyz/bridge">链接</a></p><p>1、<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://minter.merkly.com/hyperlane">merkly</a></p><p>这个有些链的gas是0.5刀（比如zora，kroma等），一般是1.11刀，需要多跨几个链,跨到目标链上需要找一个app交互一下，最好是存钱或者swap，等待1小时时间。</p><p>这里可以跨nft</p><p>比如说<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.aave.com/?marketName=proto_arbitrum_v3">aave</a> <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://stargate.finance/">stargate</a></p><p>2、跨链ezETH</p><p>官方桥：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://renzo.hyperlane.xyz/">链接</a></p><p>Superbridge - Renzo：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://renzo.superbridge.app">链接</a></p><p>gas一刀一次，可以跨去linea赚积分</p><p>3、跨链usdc</p><p>ACE官方桥：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bridge.fusionist.io/">链接</a> 目前只支持arb和base链，来回0.5刀，ace需要去交易所提币，0.3个足够了。</p><p>logx存款：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bridge.fusionist.io/">链接</a> 目前官方浏览器查不到数据，gas很低</p><p>4、跨链nft</p><p>Zeroway：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://zeroway.io">链接</a> 这里还可以跨gas</p><p>Atlas Protocol：</p><p>由Hyperlane支持的Atlas Protocol与Intract合作推出了限量 POAP，完成任务领取POAP和DC角色！ <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.intract.io/quest/66e828e7b9abe1e27f161e49">链接</a></p><p>在Hyperlan铸造一个Arbitrum NFT，官方邀请码：NOCODE <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.co/ujJzz2wWQY">https://atlasprotocol.io</a></p><p>4、将Arbitrum NFT跨链到任意链</p><p>二、EVM链和Solana、Cosmos链、eclipse之间互跨资产</p><p>1、官方桥 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://usenexus.org">链接</a></p><p>目前支持tia 跨链 evm-cosmos链</p><p>支持eclipse sol和eth主网---eclipse sol链gas很便宜</p><p>2、forma桥 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bridge.forma.art/">链接</a></p><p>支持cele---forma桥，跨tia，mint nft</p><p>3、inj官方桥 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bridge.inevm.com/">链接</a></p><p>支持inevm和inj网络之间的操作</p><p>4、swapfast <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://swapfast.app/hyperlane?sourceAsset=0xD56734d7f9979dD94FAE3d67C7e928234e71cD4C&amp;sourceChainId=42161&amp;destinationAsset=untrn&amp;destinationChainId=neutron-1">链接</a></p><p>汇总桥</p><p>1、2、3只做一个，这可能是空投的条件之一，evm和非evm的跨链</p><p>交互策略：tx 10条以上 cosmos 5条以上</p>]]></content:encoded>
            <author>kocc@newsletter.paragraph.com (kocc)</author>
        </item>
        <item>
            <title><![CDATA[analog激励测试网教程]]></title>
            <link>https://paragraph.com/@kocc/analog</link>
            <guid>AP4droNi3t3Xrr9F40ev</guid>
            <pubDate>Thu, 09 May 2024 03:17:40 GMT</pubDate>
            <description><![CDATA[注册，用邮箱注册 https://testnet.analog.one/#/?signup&referral=EDCX56 成功后，进去网站 1、投票2、银河任务点quest，做那个social任务（银河任务），银河里面有zealy任务，顺便一起做了做完后连接你银河平台对应的小狐狸地址，claim11分 3、开发者任务 准备工作 钱包下载并注册 https://www.subwallet.app/zh/ 钱包里面添加analog网络点设置找到网络管理，再点+号wss://rpc.testnet.analog.onewss://rpc.testnet.analog.one 点保存领水 在dc领水频道输入 !faucet an5CAW5yrSdrbaN35zYCB76NgEmAxEYosFCJ6ie1w79LpEaJnU（地址替换成你自己的） 做开发者任务点quest，再点圈圈里的就可以看到第二个任务是用subwallet钱包连接这网址： https://watch.testnet.analog.one/#/ 找合约]]></description>
            <content:encoded><![CDATA[<p>注册，用邮箱注册</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://testnet.analog.one/#/?signup&amp;referral=EDCX56">https://testnet.analog.one/#/?signup&amp;referral=EDCX56</a></p><p>成功后，进去网站</p><p>1、投票</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/75cd37076baf630bc2d1615fff2dba9d20d5275c6345119f4394a9650067d9be.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>2、银河任务</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/932313cbb580ec56929043ac5a2cac79c3f934c632e48ae3789a3f734761ec03.png" alt="点quest，做那个social任务（银河任务），银河里面有zealy任务，顺便一起做了" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">点quest，做那个social任务（银河任务），银河里面有zealy任务，顺便一起做了</figcaption></figure><p>做完后连接你银河平台对应的小狐狸地址，claim11分</p><p>3、开发者任务</p><p>准备工作</p><p>钱包下载并注册</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.subwallet.app/zh/">https://www.subwallet.app/zh/</a></p><p>钱包里面添加analog网络</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b5e787701131200e7c71d2eb3f93954b8f0961c52010f771ebc0aa5d5823ea79.png" alt="点设置找到网络管理，再点+号" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">点设置找到网络管理，再点+号</figcaption></figure><p>wss://rpc.testnet.analog.one</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/033c4e67387acfa88d82d47bda190b517e1625660ecbdc940528ebe879047ce8.png" alt="wss://rpc.testnet.analog.one 点保存" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">wss://rpc.testnet.analog.one 点保存</figcaption></figure><p>领水</p><p>在dc领水频道输入</p><p>!faucet an5CAW5yrSdrbaN35zYCB76NgEmAxEYosFCJ6ie1w79LpEaJnU（地址替换成你自己的）</p><p>做开发者任务</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ee8de71ca2c8c8b8f70c65c038796c5374a2367be1fd95c0b4cd608aa2056e6c.png" alt="点quest，再点圈圈里的就可以看到" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">点quest，再点圈圈里的就可以看到</figcaption></figure><p>第二个任务是用subwallet钱包连接这网址：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://watch.testnet.analog.one/#/">https://watch.testnet.analog.one/#/</a></p><p>找合约</p>]]></content:encoded>
            <author>kocc@newsletter.paragraph.com (kocc)</author>
        </item>
    </channel>
</rss>