<?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>vinson</title>
        <link>https://paragraph.com/@bitpush</link>
        <description>undefined</description>
        <lastBuildDate>Wed, 29 Apr 2026 09:00:10 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>vinson</title>
            <url>https://storage.googleapis.com/papyrus_images/32e35a9875200e6c5cd8e8da855eec23b171bb709d7eebd37e26525aa5025a40.png</url>
            <link>https://paragraph.com/@bitpush</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[PerpDEX 中的清算机器人]]></title>
            <link>https://paragraph.com/@bitpush/perpdex-2</link>
            <guid>eaRck2xPCDOoKX2cYdq2</guid>
            <pubDate>Tue, 06 Sep 2022 15:05:42 GMT</pubDate>
            <description><![CDATA[本文解释了清算如何在 PerpDEX 上工作，并提供了 PerpDEX 中清算机器人的示例代码。 什么是清算机器人？ 在永续交易的情况下，当维持保证金率低于一定水平时，仓位将被平仓。在 PerpDEX 中，与许多其他 DEX 一样，任何人都可以执行清算，执行清算的人将获得奖励，即他们清算的抵押品的百分比。Liquidator bot 是一种旨在赚取这些奖励的交易机器人。 清算如何在 PerpDEX 上运作？ PerpDEX 维持保证金设置如下： 初始保证金比率（imRatio）：10% 最低保证金比率（mmRatio）：5% 见：https ://github.com/perpdex/perpdex-contract/blob/audit-20220828/contracts/PerpdexExchange.sol#L40-L41 因此，您最多可以开仓10倍保证金（账户价值*），如果仓位变为账户价值的20倍，该仓位将被平仓。账户价值 = 抵押品 + 未平仓头寸 pnl + LimitOrder 的保证金例如： 如果账户值为 1 ETH，您可以开新仓，直到所有仓位总值为 10 ET...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/481c44bb21a7b5df3b299c13226682373204983db68212b3ec50301e449ea9e2.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>本文解释了清算如何在 PerpDEX 上工作，并提供了 PerpDEX 中清算机器人的示例代码。</p><p>什么是清算机器人？ 在永续交易的情况下，当维持保证金率低于一定水平时，仓位将被平仓。在 PerpDEX 中，与许多其他 DEX 一样，任何人都可以执行清算，执行清算的人将获得奖励，即他们清算的抵押品的百分比。Liquidator bot 是一种旨在赚取这些奖励的交易机器人。</p><p>清算如何在 PerpDEX 上运作？ PerpDEX 维持保证金设置如下：</p><p>初始保证金比率（imRatio）：10% 最低保证金比率（mmRatio）：5% 见：https ://github.com/perpdex/perpdex-contract/blob/audit-20220828/contracts/PerpdexExchange.sol#L40-L41 因此，您最多可以开仓10倍保证金（账户价值*），如果仓位变为账户价值的20倍，该仓位将被平仓。</p><ul><li><p>账户价值 = 抵押品 + 未平仓头寸 pnl + LimitOrder 的保证金</p></li></ul><p>例如：</p><p>如果账户值为 1 ETH，您可以开新仓，直到所有仓位总值为 10 ETH。（为简单起见，费用和滑点被忽略） 如果您有 10 ETH 多头头寸，并且您的账户价值低于 10 ETH * 5% = 0.5 ETH（例如 ETH 从头寸的平均价格下跌 9.5%），您的头寸将被清算。 可以通过交易功能执行强平</p><p>当交易者的仓位满足平仓条件时，任何人都可以对该仓位执行平仓。[代码]</p><p>如果要强平的交易者有LimitOrders或Liquidity，则必须在强平前将其删除。[代码]</p><p>强平成功的交易者将获得用于强平仓位的部分保证金。[代码]</p><p>在 PerpDEX 中，奖励使用 EMA（指数移动平均线）平滑，因此即使是小仓位也可以尽可能多地被清算。[代码]</p><p>清算机器人逻辑 因此，如果您实现以下逻辑，您将拥有一个 Liquidator 机器人</p><p>(1) 获取交易者的地址列表（监听事件或使用子图）</p><p>(2) 判断每个交易者地址的强平条件</p><p>(3) 如果交易者不被强平，请跳过以下步骤</p><p>(4) 清算前移除LimitOrders和Liquidity</p><p>（五）执行清算</p><p>示例代码 这是一个实现上述逻辑的简单示例代码。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/perpdex/perpdex-liquidator">https://github.com/perpdex/perpdex-liquidator</a></p><p>我们计划举办一场交易比赛。我正在考虑在交易竞赛期间运行上述 Liquidator 机器人。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/bitpush.eth/Y1IivQ4oiwxsF43bBatxd_en_wMNR0o8Vl38fAwkjxY">https://mirror.xyz/bitpush.eth/Y1IivQ4oiwxsF43bBatxd_en_wMNR0o8Vl38fAwkjxY</a></p><p>结论 在本文中，我解释了 Liquidator 机器人，并展示了 PerpDEX 中的示例代码。Liquidator bot 是一个易于在 DEX 上实施的交易机器人。如果您有兴趣与 DEX 交易，如果您可以参考，我会很高兴。</p><p>如有任何问题或澄清，请随时与我们联系。 推特：https ://twitter.com/perpdex 不和谐：https ://discord.gg/6gXs4qq9hy 网站：https ://perpdex.exchange</p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[PerpDEX 交易大赛]]></title>
            <link>https://paragraph.com/@bitpush/perpdex</link>
            <guid>AmVE7SXisXqvFB28dzGy</guid>
            <pubDate>Tue, 06 Sep 2022 14:56:06 GMT</pubDate>
            <description><![CDATA[第一轮我们很高兴地宣布，我们的永久期货交易所的 alpha 版本，称为 PerpDEX，它在混合模型（AMM + 订单簿）上运行，已在 zkSync 测试网上发布。这个初始版本是我们永久期货交易所模型概念的证明，是时候公开测试它了。为此，我们正在安排这次交易比赛，让您有机会在不断增长的永续合约市场中测试您的交易技巧。 比赛何时进行？ C̶S̶t̶a̶r̶t̶̶D̶a̶t̶e̶:̶̶1̶̶S̶e̶p̶̶2̶0̶2̶2̶̶a̶t̶̶1̶4̶:̶0̶0̶̶U̶T̶C̶̶E̶n̶d̶̶D̶a̶t̶e̶ :̶̶2̶8̶-S̶e̶p̶̶2̶0̶2̶T̶0̶t̶U̶T̶4 **更新（8 月 31 日）：**由于贸易竞赛的开发延迟，我们非常抱歉地宣布该活动将推迟到开发完全完成。新的比赛日期将很快公布。 区块链：zkSync 测试网 如何注册？ 参加本次比赛你只需要一些交易技巧，以及少量的 ETH 来支付 zkSync 测试网每笔交易的 gas 费用。没有其他要求。此外，为了将抵押品存入您的账户，您可以使用 PerpDEX 主页上的调试功能 setCollat​​eralBalance 为自己提供...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d266876752d298ec91374a05b1a84fd63b9c785ae306d83660dff5947b4cae9f.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>我们很高兴地宣布，我们的永久期货交易所的 alpha 版本，称为 PerpDEX，它在混合模型（AMM + 订单簿）上运行，已在 zkSync 测试网上发布。这个初始版本是我们永久期货交易所模型概念的证明，是时候公开测试它了。为此，我们正在安排这次交易比赛，让您有机会在不断增长的永续合约市场中测试您的交易技巧。</p><p><strong>比赛何时进行？</strong></p><p>C̶S̶t̶a̶r̶t̶̶D̶a̶t̶e̶:̶̶1̶̶S̶e̶p̶̶2̶0̶2̶2̶̶a̶t̶̶1̶4̶:̶0̶0̶̶U̶T̶C̶̶E̶n̶d̶̶D̶a̶t̶e̶ :̶̶2̶8̶-S̶e̶p̶̶2̶0̶2̶T̶0̶t̶U̶T̶4</p><p>**更新（8 月 31 日）：**由于贸易竞赛的开发延迟，我们非常抱歉地宣布该活动将推迟到开发完全完成。新的比赛日期将很快公布。</p><p>区块链：<strong>zkSync 测试网</strong></p><p><strong>如何注册？</strong></p><p>参加本次比赛你只需要一些交易技巧，以及少量的 ETH 来支付 zkSync 测试网每笔交易的 gas 费用。没有其他要求。此外，为了将抵押品存入您的账户，您可以使用 PerpDEX 主页上的调试功能 setCollat​​eralBalance 为自己提供抵押品，如下图所示。您也可以将 ETH 直接从您的钱包存入您的 PerpDEX 账户。</p><p><strong>注意：</strong> setCollat​​eralBalance 上限为 10000ETH。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6d72e6edbaca70b11fd32d4f1ed64dae200c2f6d1256e2f262338ba2e0fc99a2.png" alt="PerpDEX 主页 — setCollat​​eralBalance" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">PerpDEX 主页 — setCollat​​eralBalance</figcaption></figure><p><strong>如何在 PerpDEX 上设置交易？</strong></p><p>**<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://v2-docs.zksync.io/dev/testnet/important-links.html">首先，您需要使用此</a>**链接配置 Metamask 钱包以与 zkSync 一起使用。</p><p>**<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://portal.zksync.io/faucet">其次，您需要使用此</a>**链接将一些测试 ETH 放入您的钱包以支付汽油费。</p><p>如果由于某种原因，给定的链接不起作用，您需要使用此链接在 goerli 上获取测试 ETH，然后使用**<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://portal.zksync.io/bridge">此</a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://goerlifaucet.com/">链接</a><strong>将测试 ETH 桥接到 zkSync 。您可以使用</strong><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/@CalendarDefi/testnet-guide-zksync-2-0-6fabedf44f21">本</a>**指南来完成整个过程。</p><p><strong>获胜的标准是什么？</strong></p><p>只有一种方法可以撼动这场比赛，那就是最大化您的<strong>PnL 百分比</strong>。</p><p>PnL 百分比是您在比赛结束前实现的总盈亏。</p><p>PnL 百分比定义为：</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/65b31bda303fd418494da445a4732bd76d06935aa781f1521da2ef65cfe3b567.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>存款是累积存款，包括通过钱包转账和使用 setCollat​​eralBalance。</p><p><strong>都有些什么样的规矩？</strong></p><ul><li><p>使用 PerpDEX 时，您必须同意我们的服务条款。</p></li><li><p>交易必须在比赛日期范围内在 PerpDEX (zkSync) 上打开和关闭。</p></li><li><p>请参阅我们的服务条款中的受限制国家列表——如果您居住或是受限制国家的公民，请勿尝试通过 PerDEX 的网络界面进行交易。</p></li><li><p>如果出于任何技术原因认为有必要，PerpDEX 保留修改/修改比赛规则和期限的权利。</p></li></ul><p>**注：**如有必要，规则如有更改，恕不另行通知。</p><p><strong>如何交易？</strong></p><p>按照本指南了解如何在 PerpDEX 上进行交易。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://perpdex.gitbook.io/docs/how-tos/open-position">https://perpdex.gitbook.io/docs/how-tos/open-position</a></p><p><strong>排名和奖励</strong></p><p>根据排名的参与者列表将显示在 PerpDEX 的排行榜部分。</p><p><strong>金奖</strong>：按盈亏百分比排名的前 10 名交易者将获得 NFT。</p><p><strong>安慰奖</strong>：PnL百分比最差的交易者将获得NFT。</p><p><strong>注意</strong>：NFT 奖品没有经济价值，仅作为纪念品。</p><p>如有任何问题或澄清，请随时与我们联系。</p><p><strong>推特</strong>：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/perpdex">https ://twitter.com/perpdex</a></p><p><strong>不和谐</strong>：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/6gXs4qq9hy">https ://discord.gg/6gXs4qq9hy</a></p><p><strong>网站</strong>：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://perpdex.exchange/">https ://perpdex.exchange</a></p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[NFT 和镜像]]></title>
            <link>https://paragraph.com/@bitpush/nft</link>
            <guid>tSfgxZiTCFLn2sydVdsq</guid>
            <pubDate>Fri, 05 Aug 2022 01:56:50 GMT</pubDate>
            <description><![CDATA[虽然当今最流行的 NFT 是基于图像的，但图片只是 NFT 功能的一小部分。NFT（不可替代代币）的核心只是写在区块链上的所有权证明。这些所有权证明代表一种资产，无论是数字的还是物理的，并将其链接到个人的区块链地址。结果是一个可公开验证的文件，显示某个人拥有的某个东西。 那么，一篇文章可以成为 NFT 吗？绝对地！ 乍一看，Mirror可能只是一个用于发布和货币化文章的 web3 平台——类似于基于区块链的 Medium 或 Substack。但实际上，Mirror 是创建内容和建立社区的强大工具。它为您提供铸造 NFT、众筹、从销售中分配收益，甚至铸造 ERC20 代币以分发给新社区成员所需的一切。]]></description>
            <content:encoded><![CDATA[<p>虽然当今最流行的 NFT 是基于图像的，但图片只是 NFT 功能的一小部分。NFT（不可替代代币）的核心<strong>只是写在区块链上的所有权证明</strong>。这些所有权证明代表一种资产，无论是数字的还是物理的，并将其链接到个人的区块链地址。结果是一个可公开验证的文件，显示某个人拥有的某个东西。</p><p>那么，一篇文章可以成为 NFT 吗？绝对地！</p><p>乍一看，<strong>Mirror</strong>可能只是一个用于发布和货币化文章的 web3 平台——类似于基于区块链的 Medium 或 Substack。但实际上，Mirror 是创建内容和建立社区的强大工具。它为您提供铸造 NFT、众筹、从销售中分配收益，甚至铸造 ERC20 代币以分发给新社区成员所需的一切。</p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/a7a8583218da3dbcc051e9cee80c1c1fe9477ca6b8670b85ef42a97c8db65614.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[以太坊用户领取$EVMOS 空投教程]]></title>
            <link>https://paragraph.com/@bitpush/evmos</link>
            <guid>XtDx5oHiMeiZAOUPlzpY</guid>
            <pubDate>Sat, 30 Apr 2022 01:31:42 GMT</pubDate>
            <description><![CDATA[领取地址：https://app.evmos.org 空投对象：Cosmos用户和以太坊用户 先通过下面链接添加evmos环境： https://chainlist.org/添加evmos环境，并切换到evmos环境。 点击领取地址，进入仪表盘页面链接小狐狸钱包，查询是否有可领取的evmos,如果有会显示可领取数量点击claim按钮跳转到做任务领取页面前面两个任务比较简单分别是治理投票，代币质押，每个任务可以领取25%代币。选一个投票选一个节点质押点击下面链接完成第三（执行跨链），第四个任务（使用evm） ： https://app.diffusion.fi/#/swap 只需要切换到swap页面，完成兑换就可以完成第四个任务，领取25%代币接下来第三个任务，你可以通过跨桥把weth 从evmos跨链到eth主网：这里我选择Nomad桥跨链（埋伏空投交互），选择对应的代币，对应的环境点击next目前只能选第一个，点击send,有一个确认按钮，需要自己在eth主网支付gas赎回从Evmos桥接到Ethereum，需要去https://app.nomad.xyz/tx/nomad/+...]]></description>
            <content:encoded><![CDATA[<p>领取地址：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.co/TA7zfJv2BI">https://app.evmos.org</a></p><p>空投对象：Cosmos用户和以太坊用户</p><p>先通过下面链接添加evmos环境：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://chainlist.org/">https://chainlist.org/</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/63604468f12933020b36b2122002f844e53555a8a322a9f648ffd79d725321df.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>添加evmos环境，并切换到evmos环境。</p><p>点击领取地址，进入仪表盘页面</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/360fb80e46e4f260b9c479796fd397c92acc2e7b3759d67286f692b43956185b.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>链接小狐狸钱包，查询是否有可领取的evmos,如果有会显示可领取数量</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/a9b5e2c8ececdfe4f2b8e78d1a381c935e72d9a4145b1fac7d0d5b331386fc0f.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>点击claim按钮跳转到做任务领取页面</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e891913b6f007a92f275c9bb602bcc6dac9e60dff0e674673f97693bd29aa064.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>前面两个任务比较简单分别是治理投票，代币质押，每个任务可以领取25%代币。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2ea82eb5018eb7d768141103317d21eeeffe340e99b2bbfeaf115bee8a9b644f.png" alt="选一个投票" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">选一个投票</figcaption></figure><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/84a4b79f813f7e84d56f52fcc76bba09b2b08669c66152e866be1aaf6d4ae010.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>点击下面链接完成第三（执行跨链），第四个任务（使用evm） ：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.diffusion.fi/#/swap">https://app.diffusion.fi/#/swap</a></p><p>只需要切换到swap页面，完成兑换就可以完成第四个任务，领取25%代币</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/05b5227bb655d5ee3bbe27678fafe028f698c74a14b89307e380bbfdaded6902.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>接下来第三个任务，你可以通过跨桥把weth 从evmos跨链到eth主网：</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0ab3b3fcda854ee3cc723152debbe6caf12e1fc1699564b6b973a2ec36f27c6b.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>这里我选择Nomad桥跨链（埋伏空投交互），选择对应的代币，对应的环境</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/fdcac93d7ea8ecfe11ef131255c1c0be53561b0b6be4bba69906ca09c6fd352c.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>点击next</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/1892be728a344fa3f6b38f4b574dfd6e8ab3628431a31188cf20de7e1911d80b.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>目前只能选第一个，点击send,有一个确认按钮，需要自己在eth主网支付gas赎回</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/dadbc1fedf8324ba0b768d3257a1dda295342ddd97855f94ed8b37a9a0096f35.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>从Evmos桥接到Ethereum，需要去<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.nomad.xyz/tx/nomad/">https://app.nomad.xyz/tx/nomad/</a>+”TX ID”来认领你的代币。</p><p><strong>最新消息Connext已经支持了Evmos跨链了，非常方便。</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/271a031c37411364b6d991a8fa8470c3985721ebcfef2c36e2510e0cb342ce45.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>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[EthSign 先睹为快]]></title>
            <link>https://paragraph.com/@bitpush/ethsign</link>
            <guid>9q2ChxFRLoYqgGlTyrqJ</guid>
            <pubDate>Mon, 25 Apr 2022 09:08:36 GMT</pubDate>
            <description><![CDATA[EthSign 3.0 于 2021 年 6 月正式推出。在 8 个月的时间里，我们收集了超过 12k 个签名，这一切都是由你们这个令人难以置信的社区促成的。我们感谢您一直以来的支持，并希望让您先睹为快。EthSign更新，重建最初构思 EthSign 3.0 时，我们的团队只有 5 名成员。从头开始构建产品我们还是新手。虽然 3.0 是一个拥有超过 10k 个签名的可用产品，但它更多的是让我们发现哪些有效，哪些无效。随着开发的进行，我们涉足了不同类型的功能并不断添加新功能。我们将首先承认EthSign 3.0 不是最成熟的，也不是最好的设计，也不是最优化的技术产品。然而，在开发和修复 3.0 的过程中，我们获得了宝贵的见解，使我们能够缩小产品范围并更有效地工作。 作为构建和维护 3.0 的经验教训的结果，EthSign 的下一个版本非常锋利： 1)在设计方面，我们通过持续的用户访谈和 UX 研究确定了各种痛点和无关功能。EthSign 的下一次发展带有重新设计的用户界面和简化的功能列表，使其同时成为最直观和最强大的 EthSign。 2)EthSign 3.0 的技术栈受制于过...]]></description>
            <content:encoded><![CDATA[<p>EthSign 3.0 于 2021 年 6 月正式推出。在 8 个月的时间里，我们收集了超过 12k 个签名，这一切都是由你们这个令人难以置信的社区促成的。我们感谢您一直以来的支持，并希望让您先睹为快。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d5918d8c930285f35f7ae9d71710781ab6843cc98441de0cb1dfff56addbe6ea.jpg" alt="EthSign" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">EthSign</figcaption></figure><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">更新，重建</h3><p>最初构思 EthSign 3.0 时，我们的团队只有 5 名成员。从头开始构建产品我们还是新手。虽然 3.0 是一个拥有超过 10k 个签名的可用产品，但它更多的是让我们发现哪些有效，哪些无效。随着开发的进行，我们涉足了不同类型的功能并不断添加新功能。我们将首先承认EthSign 3.0 不是最成熟的，也不是最好的设计，也不是最优化的技术产品。然而，在开发和修复 3.0 的过程中，我们获得了宝贵的见解，使我们能够缩小产品范围并更有效地工作。</p><p>作为构建和维护 3.0 的经验教训的结果，EthSign 的下一个版本非常锋利：</p><p>1)在设计方面，我们通过持续的用户访谈和 UX 研究确定了各种痛点和无关功能。EthSign 的下一次发展带有重新设计的用户界面和简化的功能列表，使其同时成为最直观和最强大的 EthSign。</p><p>2)EthSign 3.0 的技术栈受制于过去的回声——即 EthSign 1.0 和 2.0。因为我们一直在遗留代码之上构建，所以一切都变得难以管理和维护。这一次，我们擦干净石板，从头开始。智能合约重写被大量简化和优化，减少了 10 倍的 gas 使用量。我们的前端现在在 TypeScript React 中从头开始重建，从一开始就牢记可重用性、可组合性和测试性。在开发之前锁定功能以确保代码库的一致性。以上所有内容都浓缩为更快的开发周期和更少的错误。</p><p><strong>TLDR：EthSign 的下一个版本比以往任何时候都更干净、更快、更直观。</strong></p><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">产品稳定性</h3><p>在开发 EthSign 3.0 的过程中，我们努力实现最大程度的去中心化，因为我们相信 Web 3 的精神，它转化为一个大规模去中心化的技术堆栈。然而，这也意味着我们的产品在技术上变得过于碎片化，我们任何供应商的任何问题都会对我们产生重大影响。坦率地说，我们去中心化了太多。由于我们的供应商服务中断，但由于基础设施在很大程度上超出了我们的控制范围，我们无法对其采取任何措施，因此我们的产品有很多实例部分停止运行或变得无法访问。虽然我们的努力是理想主义的，但我们现在必须采取更现实的行动来保证 EthSign 的稳定性和可用性。</p><p>在 EthSign 的下一版本中，我们将收回对部分技术堆栈的控制权。例如，目前 EthSign 静态托管在 IPFS 上。虽然这在纸面上听起来相当不错，但我们在北美以外的许多用户在保持与该站点的可靠连接时遇到了问题。因此，在我们的下一个版本中，我们将研究其他替代托管和 CDN 解决方案以提高可访问性。新版本将进行更多确保产品稳定性的更改，但不用担心，我们在精神上仍然非常分散。</p><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">游戏变了</h3><p>通过EthSign 3.0，我们获得了大量的普通用户以及机构用户和DAO用户。利用 EthSign 的核心电子签名功能，我们计划推出一套辅助产品，以完成以前在区块链上的脱链任务。游戏已经改变了——由 EthSign 提供支持的链上智能协议的新时代即将到来。</p><p><strong>访问 EthSign </strong><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethsign.xyz/#/"><strong>此处</strong> </a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/ethsign"><strong>Twitter</strong></a><strong> | </strong><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethsign-1.gitbook.io/ethsign/"><strong>Gitbook</strong></a><strong> | </strong><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/aM6JVYDXfR"><strong>Discord</strong></a><strong> | </strong><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://youtu.be/YJOT0hHPRzg"><strong>Youtube</strong></a></p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[银河任务之Salada Crabs basics答案]]></title>
            <link>https://paragraph.com/@bitpush/salada-crabs-basics</link>
            <guid>loGI7u2VAU2WWmak3soP</guid>
            <pubDate>Tue, 19 Apr 2022 10:25:59 GMT</pubDate>
            <description><![CDATA[考试入口： https://salad.academy/course/crabada-basic-tutorial 问题及答案如下： What is the Tavern? place that allows players to rent out or hire Crabada to reinforce battles once What is the cooldown period for Crabada after completing a Mining Expedition? No cooldown In regards to a Mining Expedition, if an opponent team attempts to loot you, you have up to the next 30 minutes to? abandon the Mining Expedition so that you do not let your opponent loot any rewards What are the 2 main modes of Crabada’s I...]]></description>
            <content:encoded><![CDATA[<p><strong>考试入口：</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://salad.academy/course/crabada-basic-tutorial">https://salad.academy/course/crabada-basic-tutorial</a></p><p><strong>问题及答案如下：</strong></p><p><strong>What is the Tavern?</strong></p><p>place that allows players to rent out or hire Crabada to reinforce battles once</p><p><strong>What is the cooldown period for Crabada after completing a Mining Expedition?</strong></p><p>No cooldown</p><p><strong>In regards to a Mining Expedition, if an opponent team attempts to loot you, you have up to the next 30 minutes to?</strong></p><p>abandon the Mining Expedition so that you do not let your opponent loot any rewards</p><p><strong>What are the 2 main modes of Crabada’s Idle Game?</strong></p><p>Mining Expedition and Looting Mission</p><p><strong>What is the name of the network Crabada is on?</strong></p><p>Avalanche</p><p><strong>How is the % chance of Miner’s Revenge calculated?</strong></p><p>Base chance of 7% + Mining Points Formula + Battle Point Difference Formula</p><p><strong>How much % bonus do PRIME Crabadas give to your Mining Rewards?</strong></p><p>10%</p><p><strong>What are the 2 tokens of Crabada?</strong></p><p>CRA &amp; TUS</p><p><strong>What is Miner’s Revenge?</strong></p><p>Allows Mining Parties to have a lucky chance at victory even when faced with looting teams with higher Battle Points by reinforcing at least twice</p><p><strong>How much of your potential earnings do you lose to Looters if they successfully loot your mining expedition?</strong></p><p>65%</p><p><strong>How many different classes of Crabadas are there?</strong></p><p>9 (Including Legendary Class)</p><p><strong>When are you able to loot Mining Expeditions?</strong></p><p>Only within the first 1 - 1.5 hour period of the Expedition</p><p><strong>How many factions of Crabadas are there?</strong></p><p>6</p><p><strong>What are the minimum participation rewards you can receive after a Looting Mission?</strong></p><p>0.3 CRA + 24.3 TUS</p><p><strong>How are Battle Points determined?</strong></p><p>A combination of the Crabada’s HP + Attack + Armour</p><p><strong>How is the % chance of Miner’s Revenge calculated?</strong></p><p>Base chance of 7% + Mining Points Formula + Battle Point Difference Formula</p><p><strong>How long does it take to complete a Mining Expedition?</strong></p><p>3 hours max</p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[银河任务之Salada Introduction To Axie答案]]></title>
            <link>https://paragraph.com/@bitpush/salada-introduction-to-axie</link>
            <guid>8Cgn4873UmeHLJMQoy0Q</guid>
            <pubDate>Tue, 19 Apr 2022 10:23:55 GMT</pubDate>
            <description><![CDATA[考试入口： https://salad.academy/course/introduction-to-axie-infinity 问题及答案如下： How do you complete the Daily Quest in order to claim the 25 SLP reward? Check-in, Win 5 Arena Games, and Complete 10 Adventure Mode Levels At what time does your 20 energy re-generate? 7AM GMT+7 / 8AM SGT How much energy do you have when you start your first round in Adventure Mode? Four How many Body Parts does an Axie have? 6 How much energy does each player have at the start of an Arena match? Three What is the mini...]]></description>
            <content:encoded><![CDATA[<p><strong>考试入口：</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://salad.academy/course/introduction-to-axie-infinity">https://salad.academy/course/introduction-to-axie-infinity</a></p><p><strong>问题及答案如下：</strong></p><p><strong>How do you complete the Daily Quest in order to claim the 25 SLP reward?</strong> Check-in, Win 5 Arena Games, and Complete 10 Adventure Mode Levels <strong>At what time does your 20 energy re-generate?</strong> 7AM GMT+7 / 8AM SGT <strong>How much energy do you have when you start your first round in Adventure Mode?</strong> Four <strong>How many Body Parts does an Axie have?</strong> 6 <strong>How much energy does each player have at the start of an Arena match?</strong> Three <strong>What is the minimum number of Axies you need to play the game?</strong> 3 <strong>If you use 1 Tail Slap + 1 Fish Hook + 1 Upstream Swim + 1 Hero’s Bane, how much energy did you use?</strong> Three <strong>Which is the best description for Morale?</strong> Determines not only the percentage chance of performing critical strikes but, also the damage increase. <strong>What is the Daily Adventure Cap for SLP?</strong> 50 <strong>If you play an Adventure Game without available energy, what would you be able earn?</strong> MMR</p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[银河任务之Salada  Monsterra Basic Farmer答案]]></title>
            <link>https://paragraph.com/@bitpush/salada-monsterra-basic-farmer</link>
            <guid>wXgEzzUlAPebiKndhjWi</guid>
            <pubDate>Tue, 19 Apr 2022 10:20:18 GMT</pubDate>
            <description><![CDATA[考试入口： https://salad.academy/course/monsterra-basic-farmer 问题及答案如下： What are the 3 races of Mongens available in Monsterra now?——Beast, Tectos & Mystic What are the 2 rarities for Land Plots or Mongens after RARE?——Epic & Legendary Which of the following statements is TRUE?——Mongens can only attach to Habitats meant for their own race What is the rarity bonus of Breeding Dens?——Breeding time is reduced In order to place down more Land Plots, you will need to:——Level up your Land Core What is t...]]></description>
            <content:encoded><![CDATA[<p><strong>考试入口：</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://salad.academy/course/monsterra-basic-farmer">https://salad.academy/course/monsterra-basic-farmer</a></p><p><strong>问题及答案如下</strong>：</p><p>What are the 3 races of Mongens available in Monsterra now?——Beast, Tectos &amp; Mystic</p><p>What are the 2 rarities for Land Plots or Mongens after RARE?——Epic &amp; Legendary</p><p>Which of the following statements is TRUE?——Mongens can only attach to Habitats meant for their own race</p><p>What is the rarity bonus of Breeding Dens?——Breeding time is reduced</p><p>In order to place down more Land Plots, you will need to:——Level up your Land Core</p><p>What is the difference between a Common and Uncommon Farm?——You can produce more food per hour with an Uncommon Farm</p><p>In order to own an Island, one must have:——a Blueprint</p><p>Which of the following statements is FALSE?——The rarer the Mongen, the less food it consumes to level up</p><p>Mongens are able to breed up to ______ times.——8</p><p>In order to level break Mongens (evolve them), one must spend:——Evolution Items &amp; MAG</p><p>How long would it take for 2 Uncommons with 0 breed count to breed?——12 hours</p><p>What is the colour that defines a RARE Land plot or Mongen?——Blue</p><p>What do you get after completing ALL of your daily tasks?——MAG &amp; Experience Points</p><p>What is a key benefit of leveling up your account?——More MAG to claim from completing your all your daily tasks</p><p>What are the 4 modes of PVE/PVP content in development?——Adventure, Boss Challenge, Battle Front &amp; Arena</p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[银河任务之Salada  DeathRoad Basic Drivers License答案]]></title>
            <link>https://paragraph.com/@bitpush/salada-deathroad-basic-drivers-license</link>
            <guid>rgFAsymi3C12Rk0ntrQk</guid>
            <pubDate>Tue, 19 Apr 2022 10:17:20 GMT</pubDate>
            <description><![CDATA[考试入口： https://salad.academy/course/deathroad-basic-drivers-license 问题及答案如下： What network is the DeathRoad on?——Binance Smart Chain What are the 2 Tokens that you can earn in DeathRoad?——DRACE & xDRACE On which exchange can you purchase DRACE and/or xDRACE?——Pancake Swap What is the main difference between the Testnet and Mainnet when it comes to the purchasing of cars?——Testnet players have access to a Showroom to buy Car Loot Boxes For Android users, what is the current version of the apk fi...]]></description>
            <content:encoded><![CDATA[<p><strong>考试入口：</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://salad.academy/course/deathroad-basic-drivers-license">https://salad.academy/course/deathroad-basic-drivers-license</a></p><p><strong>问题及答案如下</strong>：</p><p>What network is the DeathRoad on?——Binance Smart Chain</p><p>What are the 2 Tokens that you can earn in DeathRoad?——DRACE &amp; xDRACE</p><p>On which exchange can you purchase DRACE and/or xDRACE?——Pancake Swap</p><p>What is the main difference between the Testnet and Mainnet when it comes to the purchasing of cars?——Testnet players have access to a Showroom to buy Car Loot Boxes</p><p>For Android users, what is the current version of the apk file for the Mainnet version?——1.0.7</p><p>How many 1-star cars do you need to upgrade them into a single 2 star car?——3</p><p>What is the % chance to upgrade 1 star cars into a single 2 star car?——35%</p><p>Which of the following is NOT a road to race on in DeathRoad?——Winter Track</p><p>How much damage does an RPK do (as seen in the tutorial)?——40</p><p>Which of the following is true?——You cannot use a 2-star weapon on an 1 star road</p><p>What happens to your earnings after your car plays 20 turns?——There will be a 5% deduction</p><p>Which one of the following is false?——Your car is able to run both manual or auto-play races in the same day</p><p>What is bullet acceleration?——Applies faster shooting for your weapon automatically in your race</p><p>In order to repair your car, what do you need to spend?——1440 xDRACE</p><p>What can you do after your car has run out of its original 20 turns?——You can buy turns to allow it to race on the DeathRoad again</p><p>What are the booster boxes you can pick up while racing on the DeathRoad?——Weapon Damage, Repair and Fuel</p><p>What is the % chance of getting a 3-star car from a 2-star Loot Box?——0%</p><p>How many different DeathRoads are there?——7</p><p>Which of the following is NOT a 2-star car?——MUSTANG</p><p>Which of the following is a 3-star DeathRoad?——Ice Age</p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[银河任务之Salada  Happy Land Basics答案]]></title>
            <link>https://paragraph.com/@bitpush/salada-happy-land-basics</link>
            <guid>azNNHc9Kgi8TO0bofA1q</guid>
            <pubDate>Tue, 19 Apr 2022 09:42:06 GMT</pubDate>
            <description><![CDATA[考试入口： https://salad.academy/course/happyland-basics 问题及答案如下： Question:What are the benefits of owning more Land? All of the above Question:What can you purchase with HPL? Plots Question:What are the 2 tokens to be used in HappyLand? HPL & HPW Question:What happens to your harvest when you fail to water them on time? The Crop may yield less harvest Question:Which of the following statements is FALSE? Crops can be fertilized with no limit or cooldown whatsoever Question:How much will it cost yo...]]></description>
            <content:encoded><![CDATA[<p><strong>考试入口</strong>：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://salad.academy/course/happyland-basics">https://salad.academy/course/happyland-basics</a></p><p><strong>问题及答案如下</strong>：</p><p><strong>Question:What are the benefits of owning more Land?</strong></p><p>All of the above</p><p><strong>Question:What can you purchase with HPL?</strong></p><p>Plots</p><p><strong>Question:What are the 2 tokens to be used in HappyLand?</strong></p><p>HPL &amp; HPW</p><p><strong>Question:What happens to your harvest when you fail to water them on time?</strong></p><p>The Crop may yield less harvest</p><p><strong>Question:Which of the following statements is FALSE?</strong></p><p>Crops can be fertilized with no limit or cooldown whatsoever</p><p><strong>Question:How much will it cost you to feed 4 chickens?</strong></p><p>16 HPW</p><p><strong>Question:How do you add HPW from your Rewards bag to your in-game wallet?</strong></p><p>First, claim HPW under rewards on your Dashboard. Then synchronize to your in-game wallet balance</p><p><strong>Question:Seeds for one Crop of Sugarcane costs 70 HPW. You fertilize it once with a 15% Fertilizer 3 bag along with watering and removing bugs twice. You then fertilize it again with a 40% Fertilizer 5 bag. You yield 51 Sugarcane that sells for 3.25 HPW each. You harvest 12 Crops of Sugarcane with identical costs. How much profit have you made in total?</strong></p><p>813 HPW</p><p><strong>Question:What happens after you harvest a Crop?</strong></p><p>The harvest is immediately deposited into your Barn</p><p><strong>Question:What is the most basic harvest you can grow?</strong></p><p>Tomatoes</p><p><strong>Question:Seeds for 1 Crop of Corn costs 58 HPW. You fertilize it once with a 40% Mythical bag along with watering and removing bugs twice. You yield 56 Corn from that crop and it sells for 2 HPW each. How much HPW in profit do you make from that Crop of Corn?</strong></p><p>36 HPW</p><p><strong>Question:Which of the following statements is TRUE?</strong></p><p>Fertilizers help to reduce the time taken to harvest your Crops</p><p><strong>Question:How many types of Plots are available for purchase?</strong></p><p>5</p><p><strong>Question:What chain is the upcoming HappyLand testnet going to be on?</strong></p><p>Binance Smart Chain Testnet</p><p><strong>Question:What else can you do with HPL besides purchasing Plots?</strong></p><p>You can stake HPL tokens to earn more</p><p><strong>Question:What is the purpose of completing orders?</strong></p><p>To gain more HPW as compared to selling it from the Barn</p><p><strong>Question:One Pig costs 200 HPW to purchase. Over it’s growth period, you manage to only feed it twice. It then yields 60 Pork Chops that sell for 3 HPW each. How much HPW in profit do you make from that Pig?</strong></p><p>You make a loss of 28 HPW instead</p><p><strong>Question:What are the 2 basic steps to maintain your Crops?</strong></p><p>Watering them and removing of Caterpillars</p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[mint mirror]]></title>
            <link>https://paragraph.com/@bitpush/mint-mirror</link>
            <guid>FAK0jU947estidn6Q505</guid>
            <pubDate>Sun, 27 Mar 2022 04:14:49 GMT</pubDate>
            <description><![CDATA[lets go]]></description>
            <content:encoded><![CDATA[<p>lets go</p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/a7a8583218da3dbcc051e9cee80c1c1fe9477ca6b8670b85ef42a97c8db65614.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Web3体验（TestNet交互，持续更新中...）]]></title>
            <link>https://paragraph.com/@bitpush/web3-testnet</link>
            <guid>WJLaqJE7LO1TVibwSLMa</guid>
            <pubDate>Tue, 26 Oct 2021 13:49:17 GMT</pubDate>
            <description><![CDATA[https://app.angle.money/#/ https://test.zk.link/ https://timeswap.io/ https://testnet.symbiosis.finance/swap https://daoland.io/]]></description>
            <content:encoded><![CDATA[<p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.angle.money/#/">https://app.angle.money/#/</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://test.zk.link/">https://test.zk.link/</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://timeswap.io/">https://timeswap.io/</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://testnet.symbiosis.finance/swap">https://testnet.symbiosis.finance/swap</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://daoland.io/">https://daoland.io/</a></p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/a7a8583218da3dbcc051e9cee80c1c1fe9477ca6b8670b85ef42a97c8db65614.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[巨鲸钱包地址收集（持续更新..）]]></title>
            <link>https://paragraph.com/@bitpush/JmWaIh6yJCSL6WsLnWsB</link>
            <guid>JmWaIh6yJCSL6WsLnWsB</guid>
            <pubDate>Sat, 16 Oct 2021 10:18:28 GMT</pubDate>
            <description><![CDATA[V神 0xab5801a7d398351b8be11c439e05c5b3259aec9b 0x1db3439a222c519ab44bb1144fc28167b4fa6ee6 0x84d34f4f83a87596cd3fb6887cff8f17bf5a7b83 SBF 0xc5ed2333f8a2C351fCA35E5EBAdb2A82F5d254C3 0xb718727e7c8a4646d41d8b0be5e8e2c028b9efaa Cryptopunk收藏家 0x42f9134e9d3bf7eee1f8a5ac2a4328b059e7468c 0x577ebc5de943e35cdf9ecb5bbe1f7d7cb6c7c647 Synthetix创始人Kain 0x7ee09c11d6dc9684d6d5a4c6d333e5b9e336bb6c 以太坊基金会 0x39cc9c86e67baf2129b80fe3414c397492ea8026 推特@Cryptopathic 0x1d4b9b250b1bd41daa35d94bf9204ec1b0494ee3 (path....]]></description>
            <content:encoded><![CDATA[<p>V神</p><p>0xab5801a7d398351b8be11c439e05c5b3259aec9b</p><p>0x1db3439a222c519ab44bb1144fc28167b4fa6ee6</p><p>0x84d34f4f83a87596cd3fb6887cff8f17bf5a7b83</p><p>SBF</p><p>0xc5ed2333f8a2C351fCA35E5EBAdb2A82F5d254C3</p><p>0xb718727e7c8a4646d41d8b0be5e8e2c028b9efaa</p><p>Cryptopunk收藏家</p><p>0x42f9134e9d3bf7eee1f8a5ac2a4328b059e7468c</p><p>0x577ebc5de943e35cdf9ecb5bbe1f7d7cb6c7c647</p><p>Synthetix创始人Kain</p><p>0x7ee09c11d6dc9684d6d5a4c6d333e5b9e336bb6c</p><p>以太坊基金会</p><p>0x39cc9c86e67baf2129b80fe3414c397492ea8026</p><p>推特@Cryptopathic</p><p>0x1d4b9b250b1bd41daa35d94bf9204ec1b0494ee3 (path.eth)</p><p>Uniswap创始人</p><p>0x11E4857Bb9993a50c685A79AFad4E6F65D518DDa</p><p>三箭资本</p><p>0x4862733b5fddfd35f35ea8ccf08f5045e57388b3 0x085af684acdb1220d111fee971b733c5e5ae6ccd 0x8e04af7f7c76daa9ab429b1340e0327b5b835748</p><p>a16z</p><p>0x05e793ce0c6027323ac150f6d45c2344d28b6019</p><p>Multicoin Capital</p><p>0xc8d328b21f476a4b6e0681f6e4e41693a220347d</p><p>ParaFi</p><p>0xd9b012a168fb6c1b71c24db8cee1a256b3caa2a2 0x4655b7ad0b5f5bacb9cf960bbffceb3f0e51f363 0x5028d77b91a3754fb38b2fbb726af02d1fe44db6</p><p>孙宇晨（孙割）</p><p>0x3ddfa8ec3052539b6c9549f12cea2c295cff5296</p><p>Arca</p><p>0xe05a884d4653289916d54ce6ae0967707c519879</p><p>CMS</p><p>0xafa64cca337efee0ad827f6c2684e69275226e90</p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
        <item>
            <title><![CDATA[跨桥空投必刷]]></title>
            <link>https://paragraph.com/@bitpush/QXJPQlzgQext6jDC1VRu</link>
            <guid>QXJPQlzgQext6jDC1VRu</guid>
            <pubDate>Sun, 10 Oct 2021 06:58:53 GMT</pubDate>
            <description><![CDATA[多链世界，跨链交换 https://cbridge.celer.network/ https://app.hop.exchange/send https://www.biconomy.io https://xpollinate.io https://wormholebridge.com https://allbridge.io/ https://anyswap.exchange https://li.finance /swap https://app.xy.finance/]]></description>
            <content:encoded><![CDATA[<p>多链世界，跨链交换</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cbridge.celer.network/">https://cbridge.celer.network/</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.hop.exchange/send">https://app.hop.exchange/send</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.biconomy.io/">https://www.biconomy.io</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://xpollinate.io/">https://xpollinate.io</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://wormholebridge.com/#/transfer">https://wormholebridge.com</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://allbridge.io/">https://allbridge.io/</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://anyswap.exchange/">https://anyswap.exchange</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://li.finance/swap">https://li.finance /swap</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.xy.finance/">https://app.xy.finance/</a></p>]]></content:encoded>
            <author>bitpush@newsletter.paragraph.com (vinson)</author>
        </item>
    </channel>
</rss>