<?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>链嗅网ChainXiu</title>
        <link>https://paragraph.com/@chainxiu</link>
        <description>专注区块链，嗅察第一消息</description>
        <lastBuildDate>Wed, 09 Sep 2026 12:15:05 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>链嗅网ChainXiu</title>
            <url>https://storage.googleapis.com/papyrus_images/f9aa9572a22ab7d2fd5fbad50e8b3033cc9f9fa69c4377644be41c2177d0fa2b.jpg</url>
            <link>https://paragraph.com/@chainxiu</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[IPNS 工作原理及其有效期逻辑]]></title>
            <link>https://paragraph.com/@chainxiu/ipns</link>
            <guid>gWHA3XtmbXuEASFkFTAi</guid>
            <pubDate>Tue, 18 Jun 2024 06:04:46 GMT</pubDate>
            <description><![CDATA[IPNS（星际命名系统）是IPFS（星际文件系统）的一部分，用于创建可变的指向CID（内容标识符）的链接，也被称为IPNS名称。简单理解，IPNS是IPFS的域名系统，我们将IPFS对应为IP地址，IPNS则是传统的域名。 很多人经常会对IPFS及IPNS的概念产生混乱，本文讲主要阐述一下IPNS的工作原理和有效期逻辑。IPNS是什么？IPNS允许将可变的指向与不变的内容关联起来。它类似于一个分布式的域名系统，允许你通过一个持久的名称来引用一个文件，而不受文件内容的更改影响。通过IPNS，你可以创建一个持久的链接，指向你的文件，即使文件内容发生变化。IPNS的工作流程：发布者创建一个IPNS记录，将其与文件哈希关联。记录中包含了发布者的公钥、签名和版本信息。其他节点可以通过IPNS记录查找文件，但需要验证签名和公钥。IPNS名称的构成：IPNS名称是一个公钥的哈希值。它与一个IPNS记录关联，其中包含了它所指向的内容路径（例如/ipfs/CID）、过期时间、版本号以及由相应私钥签名的加密签名.IPNS名称与内容路径的关系：IPNS记录可以指向不可变或可变的路径，即可以指向一个IP...]]></description>
            <content:encoded><![CDATA[<p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.chainxiu.com/tag/ipns">IPNS</a>（星际命名系统）是<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.chainxiu.com/tag/ipfs">IPFS</a>（星际文件系统）的一部分，用于创建可变的指向<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.chainxiu.com/tag/cid">CID</a>（内容标识符）的链接，也被称为IPNS名称。简单理解，IPNS是IPFS的域名系统，我们将IPFS对应为IP地址，IPNS则是传统的域名。</p><p>很多人经常会对IPFS及IPNS的概念产生混乱，本文讲主要阐述一下IPNS的工作原理和有效期逻辑。</p><h3 id="h-ipns" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>IPNS是什么？</strong></h3><p>IPNS允许将可变的指向与不变的内容关联起来。它类似于一个分布式的域名系统，允许你通过一个持久的名称来引用一个文件，而不受文件内容的更改影响。通过IPNS，你可以创建一个持久的链接，指向你的文件，即使文件内容发生变化。</p><h3 id="h-ipns" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>IPNS的工作流程：</strong></h3><ul><li><p>发布者创建一个IPNS记录，将其与文件哈希关联。</p></li><li><p>记录中包含了发布者的公钥、签名和版本信息。</p></li><li><p>其他节点可以通过IPNS记录查找文件，但需要验证签名和公钥。</p></li></ul><h3 id="h-ipns" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>IPNS名称的构成：</strong></h3><p>IPNS名称是一个公钥的哈希值。它与一个IPNS记录关联，其中包含了它所指向的内容路径（例如/ipfs/CID）、过期时间、版本号以及由相应私钥签名的加密签名.</p><h3 id="h-ipns" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>IPNS名称与内容路径的关系：</strong></h3><p>IPNS记录可以指向不可变或可变的路径，即可以指向一个IPFS CID，也可以指向另一个IPNS。CID在路径中的含义取决于所使用的命名空间：</p><ul><li><p>/ipfs/：指向IPFS中的不可变内容（因为CID包含了多哈希）。</p><ul><li><p>/ipns/&lt;libp2p-key的CID&gt;：指向一个可变、加密的IPNS名称，对应于libp2p的公钥。</p></li></ul></li><li><p>可以将其理解为：</p><ul><li><p>可变指针（IPNS） =&gt; 内容（IPFS）</p></li><li><p>不可变指针（IPFS CID） =&gt; 内容</p></li></ul><h3 id="h-ipns" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>IPNS的过期时间：</strong></h3><p>IPNS记录的过期时间由以下因素决定：</p><ul><li><p>发布者：发布者可以选择设置IPNS记录的过期时间。</p></li><li><p>密钥对：每个IPNS记录都与一个密钥对相关联。如果密钥对被删除或过期，**IPNS**记录也会失效。</p></li><li><p>维护：发布者需要定期维护IPNS记录，以确保其有效性。如果不维护，记录可能会过期。</p></li></ul><h3 id="h-ipns" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>IPNS的过期时间到期后，以下情况可能发生：</strong></h3><ul><li><p>记录不再有效：当IPNS记录的过期时间到达后，其他节点将不再接受该记录。这意味着无法通过该记录找到关联的文件。</p></li><li><p>需要重新发布：发布者需要重新发布IPNS记录，以更新其有效性。这通常涉及生成新的密钥对、创建新的记录并将其与文件哈希关联。</p></li><li><p>链接失效：之前基于过期的IPNS记录创建的链接将不再有效。如果其他人尝试访问该链接，将无法获取文件。</p></li></ul><p>总之，IPNS记录过期后，需要发布者采取措施来更新记录，以确保持久性链接的有效性。</p></li></ul>]]></content:encoded>
            <author>chainxiu@newsletter.paragraph.com (链嗅网ChainXiu)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/39a36b0d9c88efdc148762c727e6600949922e2fce04a95698bba8f5fbc91278.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[币安 Research 点名，同时获得IPFS，Arweave，Dfinity支持的Web3云计算平台4EVERLAND参与交互，埋伏空投喂饭级教程]]></title>
            <link>https://paragraph.com/@chainxiu/research-ipfs-arweave-dfinity-web3-4everland</link>
            <guid>xzyPlzSUiIW64qUKnmRI</guid>
            <pubDate>Tue, 22 Nov 2022 07:32:08 GMT</pubDate>
            <description><![CDATA[4EVERLAND是一个Web3云计算平台，具有全球加速、隐私保护、分布式存储和其他技术能力。目前4EVERLAND已经推出了去中心化部署，去中心化存储以及分布式网关服务，是行业中唯一的同时整合IPFS，Arweave，Dfinity能力的云计算平台。 4EVERLAND目前与IPFS，Arweave，Dfinity、zkSync、Polygon等生态拥有紧密合作，并服务于Snapshot，Lenster，RSS3等40000多个应用，可见项目的硬实力。 目前已知4EVERLAND拥有明确的发币计划，空投概率极高，建议还未参与过的速速交互。整体交互无需成本。 最近，4EVERLAND还被包括在Binance Reaserch发布的加密行业地图中，未来可期！官方DC超过2万人： https://discord.com/invite/Cun2VpsdjF 官推： https://twitter.com/4everland_org必做交互打开官网: https://dashboard.4everland.org https://dashboard.4everland.org?invit...]]></description>
            <content:encoded><![CDATA[<p>4EVERLAND是一个Web3云计算平台，具有全球加速、隐私保护、分布式存储和其他技术能力。目前4EVERLAND已经推出了去中心化部署，去中心化存储以及分布式网关服务，是行业中唯一的同时整合IPFS，Arweave，Dfinity能力的云计算平台。</p><p>4EVERLAND目前与IPFS，Arweave，Dfinity、zkSync、Polygon等生态拥有紧密合作，并服务于Snapshot，Lenster，RSS3等40000多个应用，可见项目的硬实力。</p><p><strong><em>目前已知4EVERLAND拥有明确的发币计划，空投概率极高，建议还未参与过的速速交互。整体交互无需成本。</em></strong></p><p>最近，4EVERLAND还被包括在Binance Reaserch发布的加密行业地图中，未来可期！</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/004b51403a5176001792ba72804c1419edf6a919ce4a01e28098881394a55929.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><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/9b9dee392f1dff968f2a8d6ad5f4c899798590a9f5be99a72234c79d9f6c0521.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>官方DC超过2万人：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/Cun2VpsdjF">https://discord.com/invite/Cun2VpsdjF</a></p><p>官推：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/4everland_org">https://twitter.com/4everland_org</a></p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">必做交互</h2><p>打开官网: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dashboard.4everland.org?invite=AWMKLCEO">https://dashboard.4everland.org</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dashboard.4everland.org?invite=AWMKLCEO">https://dashboard.4everland.org?invite=AWMKLCEO</a></p><p>使用钱包登录，并进入Dashboard</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/631b10eaa0af3d6afe85980c8a6578db7fcf440dc46ce29de310d08e2413f582.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>新用户直接赠送IPFS和Ar存储以及一定的构建时长，有条件的在这里分享推特获得另外的5GB IPFS储存。（储存多多益善，官方已经明牌越多的储存可以获得越多的权益）</p><h3 id="h-hosting" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">使用Hosting</h3><p>Hosting是一个去中心化部署工具，可以将你的前端快速的部署到去中心化网络。 注意这里不要只部署一个官方提供的模版，需要有一个真实有效的页面！ 如果你有自己的网站，只需在4EVERLAND里倒入Github仓库就可以快速部署你的网站。</p><p><strong>记得别用默认的模板来部署</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/119aee24bedc716af56561c5e470b58a16036aee73d0b47ec0afc1a4b551a61d.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>授予访问权限。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/a447269f2f7b802282d51d880993e998bb89ed7d9dcd79a0a965259378212eb2.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>选择你的项目，点击import。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7c74d0560b2d7f02e1649e329eb6667e9a545fecd4c3e9532a84123331617640.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>平台选择IPFS，设置项目名称（不能有‘.’）。通常环境设置只需要保持默认，点击部署。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/abb665042a3d11fef389d8bd3989d4d1f1595c67973166ef5b2136908573e18e.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>等待部署完成</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/539bee338c4a8505d7b76c3d1e2bb49bd6fb802541305cafc6a11f5ec7513428.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>如果你没有可以部署的前端，需要在网上找个项目部署。 注册Github账号，找到想要部署的项目，并将其Fork到自己的资源库。 你可以直接fork我找到的模版：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/dmego/home.github.io">https://github.com/dmego/home.github.io</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/9a21998f06c3e68d14f140cca8327bb245ce36976b90cb30c69eb2441b6b6bcd.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>回到4EVERLAND刷新储存库，该资源就会显示可用。 部署完成后，如果你有传统域名或者去中心化域名，点击添加绑定。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0910a8689698538a9585d021ccf19190db98fea71652d35f784f82cf3dfdb3b1.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><h3 id="h-bucket" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">使用Bucket</h3><p>Bucket是一个类似于百度网盘一样的存储产品，当然对于开发者来说是个存储开发工具。</p><p>打开并创建一个Bucket。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/fdb52937fee775d0f390001bfafb763eee7c8cbc00316453f73793a8f6953c83.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>上传一些文件。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/f811ebc695cefa05814b9726db4ca00d6516442051c68179d2a2e5ba892220d9.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>预充值存款 4EVERLAND现在支持Polygon、BSC、ETH网络的存款及充值，大家可以选择充值存款10 USDC做一下链上交互，<strong>资金随时可以取出，所以尽量做这一步，很关键。</strong></p><p><strong>推荐使用Polygon，更便捷快速</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/631b10eaa0af3d6afe85980c8a6578db7fcf440dc46ce29de310d08e2413f582.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><h3 id="h-reward-hub" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Reward Hub</h3><p>最后顺便做一下Reward Hub里面的任务，交互搞定！</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/18140093574f610a6fbbadd1463f1308d8728b887fec711c5e8e9ae60e52eb7d.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><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">开通专用网关</h3><p>如果你还想进一步深度交互，可以开通下专用Gateway 开通4EVERLAND专属网关需要账户余额大于$100，有需求的小伙伴可以充值$100开通，注意充值的代币可以随时取出，所以也可以放心充值。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/bec81570f72b7c995bc1051fcfdbc547ec8010b93e75903a1d89aa7a47e22458.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><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">高阶交互</h3><p>有条件的，日常可以创建一些前端页面，上传更多的文件，并保证网站的一些常规的流量访问。另外也可以充值购买一些资源。</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">搞起来吧，朋友们！</h2>]]></content:encoded>
            <author>chainxiu@newsletter.paragraph.com (链嗅网ChainXiu)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/6e9459326c7bd8e4f11ae3b60beb1bdf05e099c26ffdf977fdd19bbfbce11ebe.jpg" length="0" type="image/jpg"/>
        </item>
    </channel>
</rss>