<?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>Liangzmt</title>
        <link>https://paragraph.com/@liangzmt</link>
        <description>share</description>
        <lastBuildDate>Sat, 08 Aug 2026 10:59:06 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Liangzmt</title>
            <url>https://storage.googleapis.com/papyrus_images/1852ab39711c16fb4ac9b2fb5da15ef3d03b8afdf630c241a514e6b93f83366f.jpg</url>
            <link>https://paragraph.com/@liangzmt</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[如何调用合约-从Jumper Exchange开始]]></title>
            <link>https://paragraph.com/@liangzmt/jumper-exchange</link>
            <guid>Pa498YgdNl1KPFbCVPn9</guid>
            <pubDate>Sun, 07 May 2023 14:59:33 GMT</pubDate>
            <description><![CDATA[1.前言由于Linea Voyage的任务导致Jumper前端受到大量请求，从而导致无法进行正常的用户交互。因此，本文将向大家介绍如何进行合约调用。在本文中，我们将详细介绍如何使用Metamask进行绕过注册以太坊节点进行合约交互。2.步骤2.1 首先要明确各个网络上的合约地址 goerli合约地址 UNI- 0x41E5E6045f91B61AACC99edca0967D518fB44CFB USDT- 0xfad6367E97217cC51b4cd838Cc086831f81d38C2 linea的合约地址 UNI- 0x7823E8DCC8bfc23EA3AC899EB86921f90e80F499 USDT- 0x1990BC6dfe2ef605Bfc08f5A23564dB75642Ad73 2.2 API访问 这里直接通过网页访问获取数据，绕过前端，其中合约地址1为goerli合约地址,合约地址2为linea的合约地址,还要填写自己的地址,之后获取datahttp://staging.li.quest/v1/quote?fromChain=5&#x26;toChain...]]></description>
            <content:encoded><![CDATA[<h2 id="h-1" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">1.前言</h2><p>由于Linea Voyage的任务导致Jumper前端受到大量请求，从而导致无法进行正常的用户交互。因此，本文将向大家介绍如何进行合约调用。在本文中，我们将详细介绍如何使用Metamask进行绕过注册以太坊节点进行合约交互。</p><h2 id="h-2" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2.步骤</h2><p><strong>2.1 首先要明确各个网络上的合约地址</strong></p><p>goerli合约地址</p><p>UNI- 0x41E5E6045f91B61AACC99edca0967D518fB44CFB</p><p>USDT- 0xfad6367E97217cC51b4cd838Cc086831f81d38C2</p><p>linea的合约地址</p><p>UNI- 0x7823E8DCC8bfc23EA3AC899EB86921f90e80F499</p><p>USDT- 0x1990BC6dfe2ef605Bfc08f5A23564dB75642Ad73</p><p><strong>2.2 API访问</strong></p><p>这里直接通过网页访问获取数据，绕过前端，其中合约地址1为goerli合约地址,合约地址2为linea的合约地址,还要填写自己的地址,之后获取data</p><pre data-type="codeBlock" text="http://staging.li.quest/v1/quote?fromChain=5&amp;toChain=59140&amp;fromToken=合约地址1&amp;toToken=合约地址2&amp;fromAddress=你的地址&amp;fromAmount=10000&amp;slippage=0.01&amp;allowBridges=&amp;allowExchanges=
"><code>http://staging.li.quest/v1/quote?fromChain=5&#x26;toChain=59140&#x26;fromToken=合约地址1&#x26;toToken=合约地址2&#x26;fromAddress=你的地址&#x26;fromAmount=10000&#x26;slippage=0.01&#x26;allowBridges=&#x26;allowExchanges=
</code></pre><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b40fcdc7bdd1977fe8ef349094e9f2a92795940a8972ce58a3f3af6f1f87e3c7.png" alt="data段" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">data段</figcaption></figure><p><strong>2.3 代币授权</strong></p><p>这一步直接可以在Jumper前端进行写入就不赘述了.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/58c69510b31d06dd186dd30b1dde154e26d96b9da325d4831ec7cf0b6e08bbc4.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><strong>2.4 合约调用</strong></p><p>获得data之后,进入有Metamask的浏览器,按住F12调用控制台,进行钱包连接</p><pre data-type="codeBlock" text="ethereum.request({ method: &apos;eth_requestAccounts&apos; });
"><code>ethereum.request({ method: <span class="hljs-string">'eth_requestAccounts'</span> });
</code></pre><p>连接钱包成功后直接请求发送交易，在params参数那里填写得到的data那一块</p><pre data-type="codeBlock" text="ethereum.request({
      method: &apos;eth_sendTransaction&apos;,
      params: [
        {
          这里填获得的数据,注意前一个没有‘’,例如
          gasPrice: &apos;0x09184e72a000&apos;, 
          gas: &apos;0x2710&apos;
        },
      ],
    })
    .then((txHash) =&gt; console.log(txHash))
    .catch((error) =&gt; console.error(error));
"><code>ethereum.request({
      method: <span class="hljs-string">'eth_sendTransaction'</span>,
      params: [
        {
          这里填获得的数据,注意前一个没有‘’,例如
          gasPrice: <span class="hljs-string">'0x09184e72a000'</span>, 
          <span class="hljs-built_in">gas</span>: <span class="hljs-string">'0x2710'</span>
        },
      ],
    })
    .then((txHash) <span class="hljs-operator">=</span><span class="hljs-operator">></span> console.log(txHash))
    .catch((<span class="hljs-function"><span class="hljs-keyword">error</span>) => <span class="hljs-title">console</span>.<span class="hljs-title"><span class="hljs-keyword">error</span></span>(<span class="hljs-params"><span class="hljs-keyword">error</span></span>))</span>;
</code></pre><p>之后小狐狸会谈起合约交互请求,完成后即可.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ff3a36d5b3bed32f72f7150ed558487dc146d038f8d3ac4d92a45f5ee23baa2b.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><h2 id="h-3" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">3.总结</h2><ul><li><p>在合约交互这一块默认使用Metamask就不用去infura等第三方API申请帐号了，直接在浏览器完成十分简单.</p></li><li><p>如果对你有帮助欢迎关注我的Twitter:@Liangzmt</p></li><li><p>赞助GETH: 0xB8C3F7F9B134D4498f3EA98E7a2a468575930778</p></li></ul>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/93c5a496bbc5115fb15cee200928c60de01faf9783ecb4b8efc7652de7178946.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Banksea 测试 | Solana]]></title>
            <link>https://paragraph.com/@liangzmt/banksea-solana</link>
            <guid>veZ0AgtQJPfPkN721eZH</guid>
            <pubDate>Mon, 11 Apr 2022 14:24:09 GMT</pubDate>
            <description><![CDATA[1.项目介绍Banksea是一个NFT价格预言机与借贷项目。 官方地址： https://banksea.finance/2.测试步骤2.1 Phantom钱包安装 有的朋友直接跳过这一步~ 没有的朋友请先去谷歌拓展安装一下。 https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa 2.2 切换到测试网2.3 领水 切换到网站： https://faucet.banksea.finance/ 全部领取即可2.4 测试 连接到测试网： https://devnet.app.banksea.finance/staking 存款KSE：提款KSE：NFT质押：解除质押：获取收益：2.4 填表 https://docs.google.com/forms/d/e/1FAIpQLSc-S7TFkPz8O3UOznbjtjvznSfbDQDxsUwOr0xgVgbbS-9cgQ/viewform3.总结Banksea作为预言机在拓展NFT与DEFI结合有着重要的价值，未来这个赛道会有非...]]></description>
            <content:encoded><![CDATA[<h2 id="h-1" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">1.项目介绍</h2><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/4f1a93bb4565c85765b81c071e982f6f0fdabeb652e8f32f07a5b39cc80614e2.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>Banksea是一个NFT价格预言机与借贷项目。</p><p>官方地址：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://banksea.finance/">https://banksea.finance/</a></p><h2 id="h-2" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2.测试步骤</h2><p><strong>2.1 Phantom钱包安装</strong></p><p>有的朋友直接跳过这一步~ 没有的朋友请先去谷歌拓展安装一下。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa">https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa</a></p><p><strong>2.2 切换到测试网</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6f279766303b870fe41809b6d5455e8c3106cf776db1fd70b9e9e07a02789f17.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/75f64f6eeee4ef141b27297e5c631890579b8fc6bd41cbe08466b554c664f1fb.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/456242e92daecbb09d059a921b86720b155c93e62b09ec6f80bd4a73a2959c2c.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><strong>2.3 领水</strong></p><p>切换到网站：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://faucet.banksea.finance/">https://faucet.banksea.finance/</a></p><p>全部领取即可</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/fcffb9c3a0dbabae127fd01bbe4cf13e646fef9a7984f7d4fea50dd7f4d9d484.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><strong>2.4 测试</strong></p><p>连接到测试网：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://devnet.app.banksea.finance/staking">https://devnet.app.banksea.finance/staking</a></p><p><strong>存款KSE：</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/22e487272e5b383e5a7912550ff3a82fb82d8fe116f827a5315a9f7c24c18c6c.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/9535bc827d40f25636b687f6b947e8ac803b473b4fbfe9e1b3d5d4b1e4867cdc.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><strong>提款KSE：</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0fbb87dc682de567ea1ed32f14b8310875efdf4ca824639bb1b4e69c9ac4ba7d.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/70e0aa0fddae91b0db5563847d4df319e237a6d1ca25b7b310009a7d6aaf032e.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><strong>NFT质押：</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/4e7be1cebd4ef0b372c7be70e461b1ed6a90d5b72cc09e65fbd6b14dd472825a.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><strong>解除质押：</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7c54b3a7ba6c112a557b0276a9a8bad2f7ee79cdaf51fa3848af5a1df578e08f.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><strong>获取收益：</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ba2fc5cd785f12108b8768153b05a2cae43370436b27e31ec4ffc68233196d6a.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><strong>2.4 填表</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.google.com/forms/d/e/1FAIpQLSc-S7TFkPz8O3UOznbjtjvznSfbDQDxsUwOr0xgVgbbS-9cgQ/viewform">https://docs.google.com/forms/d/e/1FAIpQLSc-S7TFkPz8O3UOznbjtjvznSfbDQDxsUwOr0xgVgbbS-9cgQ/viewform</a></p><h2 id="h-3" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">3.总结</h2><p>Banksea作为预言机在拓展NFT与DEFI结合有着重要的价值，未来这个赛道会有非常大的空间。建议大家长期跟踪这个项目。</p><p>我的Twitter:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/liangzmt">https://twitter.com/liangzmt</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
        </item>
        <item>
            <title><![CDATA[Xbank 测试网 | StarkNet]]></title>
            <link>https://paragraph.com/@liangzmt/xbank-starknet</link>
            <guid>rRXf5TdWFRzavcXkPPTo</guid>
            <pubDate>Fri, 08 Apr 2022 10:28:01 GMT</pubDate>
            <description><![CDATA[1.项目介绍xBank 是一个StarkNet上的去中心化非托管流动性市场协议。官方网站： https://www.xbank.finance/2.测试步骤2.1 StarkNet钱包安装 有的朋友直接跳过这一步~ 没有的朋友请先去谷歌拓展安装一下，记得文件要保存好。 https://chrome.google.com/webstore/detail/argent-x/dlcobpjiigpikoobohmabehhmhfoodbb 2.2 领水 ETH:直接填写自己的地址就好了 https://faucet.goerli.starknet.io DAI USDC:需要连接钱包后输入代币的合约地址 https://goerli.voyager.online/contract/0x02dc4e7a7226c83c3aa9f9873720fcde0b20f2cc5b18ec776bd20e887f499474#writeContract代币的合约地址： USDC: 0x000cf1f2891ce07dfff3fa1828b5c4cc01ccc603876b913d9e6fc89bad...]]></description>
            <content:encoded><![CDATA[<h2 id="h-1" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">1.项目介绍</h2><p>xBank 是一个StarkNet上的去中心化非托管流动性市场协议。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d425bb0b6a2ae491ca05b6fb77bd19f3aa2e96641eeecdea19fcecc95668063f.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><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.xbank.finance/">https://www.xbank.finance/</a></p><h2 id="h-2" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2.测试步骤</h2><p><strong>2.1 StarkNet钱包安装</strong></p><p>有的朋友直接跳过这一步~ 没有的朋友请先去谷歌拓展安装一下，记得文件要保存好。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://chrome.google.com/webstore/detail/argent-x/dlcobpjiigpikoobohmabehhmhfoodbb">https://chrome.google.com/webstore/detail/argent-x/dlcobpjiigpikoobohmabehhmhfoodbb</a></p><p><strong>2.2 领水</strong></p><p>ETH:直接填写自己的地址就好了</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://faucet.goerli.starknet.io">https://faucet.goerli.starknet.io</a></p><p>DAI USDC:需要连接钱包后输入代币的合约地址</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://goerli.voyager.online/contract/0x02dc4e7a7226c83c3aa9f9873720fcde0b20f2cc5b18ec776bd20e887f499474#writeContract">https://goerli.voyager.online/contract/0x02dc4e7a7226c83c3aa9f9873720fcde0b20f2cc5b18ec776bd20e887f499474#writeContract</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/079cafbf729c75556e195a9cd5ab5f820fc905d89453d887828066302e6edf91.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/df081f124409157b190e59812bfc7e44d5d8a8a37941ad45e06a10095d7fbe33.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><p>USDC: 0x000cf1f2891ce07dfff3fa1828b5c4cc01ccc603876b913d9e6fc89bad276ba7 DAI: 0x04831207050e4b35a50dbb51a389b336c97720f4fd1fdf489b92dab9409baf99</p><p><strong>2.3 测试</strong></p><p><strong>2.3.1 进入测试网</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://testnet-app.xbank.finance/">https://testnet-app.xbank.finance/</a></p><p>重要的不是金额，而是交互。</p><p><strong>2.3.2 存款</strong></p><p>首先每个代币都打开Collateral</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/20610e05a963c3bd6a387ffbcfcf3d99ee3d5dd976f09c0a0c4d8868fc704945.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>完成后点击ETH授权</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/82c16af78cc7fc403674c71f8d9bb88cbec96ec94438024a9505a01fc7e3fdb5.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/6d2649ea3bd79097d08bd96570bd5c6fe166599228d7d326c51ed0aad2289bbe.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/ac95aa71c109ee4ba8cb9ab00ccc7b3f4de38951169528e7af04138c895b198f.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><strong>2.3.3 借款</strong></p><p>存款完成后我们就可以开始看右边的借款操作</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/5879a3ed6ccf0985bd3fadb7dfe203cfbf50a897e7b959d6abf7bda8ef5c756c.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>输入借贷金额</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/85fc69d6faeefdc1ac0c6e6dc3e09c020732214b041a11f8fadfeaa8f2a97ba3.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><strong>2.3.4 将借款的DAI存款，这里与2.3.2的存款操作一样</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c8c63ae7e550c5fb33f9601a9546dc2265f7eaa608a81b2af41a571119a4e6c7.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><strong>2.3.5 还款</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d13fa4e4c72f74fd19c8ef9acfe4943794dc8b4412fc947f8757c673d116884b.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/da72f2a7a04eec8d1e083f3348647e8c3701b4a8d519c842671b53c70dd46b43.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><strong>2.3.6 取出存款</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e3ce46790572d877179851159650e8e00f4172a079e1d3cf7feeca83bcbce0a5.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/1ea3a992cd887d474e600a71900929716366c90e2ba33f65fdfb7642ba0b1a09.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/c43bf0fd27240b118a0e7e8f2401d4492974aab30cdf8d75a7e7c1c8323945d6.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><h2 id="h-3" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">3.总结</h2><ul><li><p>总体下来和常规的借贷项目相同，存钱借钱还钱都测试就好了，但是因为是StarkNet上的，可能在某些方面有些差异。同时整个交互过程会有些慢。</p></li><li><p>我的推特：</p></li></ul><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/liangzmt">https://twitter.com/liangzmt</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
        </item>
        <item>
            <title><![CDATA[8个值得期待空投的项目 | 
Stakingbits]]></title>
            <link>https://paragraph.com/@liangzmt/8-stakingbits</link>
            <guid>OjTHVrFzRt95HkVwIyl4</guid>
            <pubDate>Tue, 05 Apr 2022 07:31:39 GMT</pubDate>
            <description><![CDATA[Airdrop2021年，我们见证了许多加密货币空投项目:$PSP$ENS$COW$DYDX$UNI$BANK据统计，根据使用的交互数量及交互金额，会收到 50,000 - 100,000 美元的空投奖励。 2022 年，随着行业的不断发展，整个 DeFi 的空投将重新出现。 在这篇文章中，我们将探索8个十分有潜力可能发放空投的项目。#1 — Optimism , ArbitrumOptimism和Arbitrum是以太坊上的二层，它们是以太坊上的扩容协议，同时数据保留在以太坊上，保证了数据的安全。 两个项目目前都使用 ETH 作为结算费用，但我们认为未来它们将推出自己的代币来激励链上的使用。 交互方式: 将资金存入Arbitrum和Optimism，并使用其上面的dapp。#2 — ZigZagZigZag 是zksync和starkwareltd上革命性的以太坊 L2 订单簿模式交易所。 交互方式: 使用 Orbiter 将代币跨到ZkSync或者使用ETH上的智能合约桥到ZigZag上交易。#3 — zkMoneyzkMoney 类似于 Tornado Cash，是Azte...]]></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/0641ddc75a48f2a9d469d7c9fe909ee910defde312731deb52d83c01c590cbec.png" alt="Airdrop" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Airdrop</figcaption></figure><p>2021年，我们见证了许多加密货币空投项目:</p><ul><li><p>$PSP</p></li><li><p>$ENS</p></li><li><p>$COW</p></li><li><p>$DYDX</p></li><li><p>$UNI</p></li><li><p>$BANK</p></li></ul><p>据统计，根据使用的交互数量及交互金额，会收到 50,000 - 100,000 美元的空投奖励。</p><p>2022 年，随着行业的不断发展，整个 DeFi 的空投将重新出现。</p><p>在这篇文章中，我们将探索8个十分有潜力可能发放空投的项目。</p><h1 id="h-1-optimism-arbitrum" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">#1 — Optimism , Arbitrum</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/40bdd30ce7e1f05ea01caaa9173a04a9a4f9c23d74f3fe0c7b83cefb04812f33.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><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.optimism.io/">Optimism</a>和<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bridge.arbitrum.io/">Arbitrum</a>是以太坊上的二层，它们是以太坊上的扩容协议，同时数据保留在以太坊上，保证了数据的安全。</p><p>两个项目目前都使用 ETH 作为结算费用，但我们认为未来它们将推出自己的代币来激励链上的使用。</p><p><strong>交互方式:</strong> 将资金存入Arbitrum和Optimism，并使用其上面的dapp。</p><h1 id="h-2-zigzag" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">#2 — ZigZag</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0ab603df42f808c53253753a8c29b7a2c1da9816d1209a437529a64308ae6b02.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><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://trade.zigzag.exchange">ZigZag</a> 是zksync和starkwareltd上革命性的以太坊 L2 订单簿模式交易所。</p><p><strong>交互方式:</strong> 使用 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://stakingbits.medium.com/orbiter-finance-cross-rollup-layer-2-bridge-d55d4768ae9c">Orbiter</a> 将代币跨到ZkSync或者使用ETH上的<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/stakingbits/bridge-eth-from-polygon-and-zksync-with-zigzag-e3b4813d8bdb">智能合约桥</a>到ZigZag上交易。</p><h1 id="h-3-zkmoney" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">#3 — zkMoney</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ce3178b3272fb51af0c956e7ca949ec6dba0c5a8855b801dd48a92d0ad16b196.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><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://zk.money/">zkMoney</a> 类似于 Tornado Cash，是Aztec 旗下的去中心化隐私支付工具。</p><p><strong>交互方式:</strong> 将 ETH 存入 zkMoney， 然后发送到 zkMoney 上的另一个地址，最后再把ETH提到以太坊主网。</p><h1 id="h-4-fujidao" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">#4 — FujiDAO</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/8c318e1b081d9430c88026cf31c77ad4cd4d3fafa4263eed82b7933495e6ee86.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><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.fujidao.org/#/dashboard/init-borrow">Fuji DAO</a> 是一个借贷聚合器，主要是为了优化 DeFi 上的参与者的借贷费用。</p><p><strong>交互方式:</strong> 在Fuji上中借出 ETH, BTC, FTM 然后借出USDC，DAI. Fuji现在支持Ethereum、Fantom。</p><h1 id="h-5-cozy-finance" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">#5 — Cozy Finance</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/8d3b64eba48e1f340c422119f6159da698886a50e856f23a4d728acf5e90d70c.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><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.cozy.finance/protected-invest">Cozy Finance</a> 是一种用于自动化和信任最小化保护市场的开源协议，让加密资产能得到安全保障，投资DeFi时能防止黑客攻击。</p><p><strong>交互方式:</strong> 将资金存入Cozy，体验他们的功能。Cozy Finance 现在支持Ethereum、Arbitrum。</p><h1 id="h-6-orbiter-finance" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">#6 — Orbiter Finance</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/798c7344871015b11a196fb62ee8c3184467ee8488bf697c76234062e9b2502c.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><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/stakingbits/orbiter-finance-cross-rollup-layer-2-bridge-d55d4768ae9c">Orbiter Finance</a> 是一个去中心化跨Rollup桥，在L1、L2之间转移以太坊原生资产</p><p><strong>交互方式:</strong> 使用Orbiter进行跨桥服务。</p><h1 id="h-7-quarry-protocol" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">#7 — Quarry Protocol</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0f196e3badc9ebd243a4f88a39ae71b37c93ef36b30b0df187704a4736fe4158.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><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.quarry.so/">Quarry</a> 是 Solana 上的一个开放协议，用于流动性挖矿。</p><p><strong>交互方式:</strong> 在Quarry上提供流动性或者质押。</p><h1 id="h-8-ondo-finance" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">#8 — Ondo Finance</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/442b32abfc29383c59b2fd2c70056366fbac797306d6262c0ff8d5eac97fa1f9.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><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ondo.finance/markets?status=2">Ondo</a> 是一种 DeFi 协议，它允许投资者更好地平衡风险与回报，同时获得对以太坊上产生收益的加密资产。 Ondo 通过在 Sushiswap 等 DeFi 协议上提供流动性来产生收益，并以固定和可变收益部分向投资者支付回报。</p><p><strong>交互方式:</strong> 在Ondo上提供流动性。</p><p>原帖地址：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/@stakingbits/8-new-airdrops-to-look-out-for-in-2022-4f695a08195c">https://medium.com/@stakingbits/8-new-airdrops-to-look-out-for-in-2022-4f695a08195c</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
        </item>
        <item>
            <title><![CDATA[Kyve 测试网教程 | Cosmos]]></title>
            <link>https://paragraph.com/@liangzmt/kyve-cosmos</link>
            <guid>a5pyKqzBGTlQB3hqNZE9</guid>
            <pubDate>Mon, 04 Apr 2022 13:46:54 GMT</pubDate>
            <description><![CDATA[1.项目介绍KYVE 是建立在Arweave上的一个区块链存储中间件，借助其标准化的验证和归档框架，可以为所有的区块链数据需求提供了统一的解决方案。按照 KYVE 团队的说法，该项目希望帮助各类区块链项目实现便捷的在链上永久存储和读取数据，并且不需要定制和开发工作，从而帮助 Web 3.0 项目实现无限的可扩展性。 4.4号：更新了Cosmos链上的测试网 5.3号：更新了激励测试网 测试网地址： https://www.kyve.network/2.测试操作2.1 链接测试网络首先打开Keplr钱包连接测试网：没有Keplr可以先去Chrome拓展下载一个.2.2 领⽔：Kyve这里有三种方法领水，Twi发文、Dis发消息、抽奖。其中后两个每天都可以领取。2.3 委托节点这里一路Continue到最后，之后注意改一下Gas到400000：这样就成功了.2.4 成为资助者(Funder)这里要说的是资助并不能获取Kyve,一般只要委托即可.2.5 运行节点(可选)这里需要一台云服务器+一些Ar代币.一般来说做前面两个就可以了.当然也有人想要委托~ 我这里用Linux ubuntu...]]></description>
            <content:encoded><![CDATA[<h2 id="h-1" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">1.项目介绍</h2><p>KYVE 是建立在Arweave上的一个区块链存储中间件，借助其标准化的验证和归档框架，可以为所有的区块链数据需求提供了统一的解决方案。按照 KYVE 团队的说法，该项目希望帮助各类区块链项目实现便捷的在链上永久存储和读取数据，并且不需要定制和开发工作，从而帮助 Web 3.0 项目实现无限的可扩展性。</p><p>4.4号：更新了Cosmos链上的测试网</p><p>5.3号：更新了激励测试网</p><p>测试网地址：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.kyve.network/">https://www.kyve.network/</a></p><h2 id="h-2" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2.测试操作</h2><h3 id="h-21" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2.1 链接测试网络</h3><p>首先打开Keplr钱包连接测试网：没有Keplr可以先去Chrome拓展下载一个.</p><h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"></h3><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6fab36d37f1b9e7129e03b450150ff573c277f5b62e3996e9485c73ce94f18c6.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-22-kyve" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2.2 领⽔：Kyve</h3><p>这里有三种方法领水，Twi发文、Dis发消息、抽奖。其中后两个每天都可以领取。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/4e925f2d7f51c233eb1e1536e8734202859ad430576e4c171aa3bd9ea165e963.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-23" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2.3 委托节点</h3><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3a3088d815a0e711682fb9a8d560f34281d7536e00e9922cdca0dcf2cc4ae0ea.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/107ce7ab9634def7e53a1f6017c5fd775a312f0a1fddacbc39f45f45dd8e714d.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/518f481f838ae8bc3fd7613a9c83af5acac14151b3b4f6c933b16492ebd2ac8a.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>这里一路Continue到最后，之后注意改一下Gas到400000：</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/df6f7d7b4aaa52b1688ba516c09b9d7b802f227a2171732084d2852b53884e3c.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/56740b6f6d506ba5411e5204170a76c81abcd346a06e9a9fbe20e1b78b1310a9.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><h3 id="h-24-funder" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2.4 成为资助者(Funder)</h3><p>这里要说的是资助并不能获取Kyve,一般只要委托即可.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2de3ec66b7f67947ffac744a44ee1d8de99874a56130351d28d560d4e83f1c91.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/ef423fe9c6ab93fe7e3a3f3e44b8ec336f637c3a06ddd0e309e3960ca1de9c63.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/aa8820cb0599435b535a6dfc3f86a9387970f9bb5aaad12d2dee946934103ce5.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-25" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2.5 运行节点(可选)</h3><p>这里需要一台云服务器+一些Ar代币.一般来说做前面两个就可以了.当然也有人想要委托~</p><p>我这里用<strong>Linux ubuntu16.04</strong>系统举例.</p><p>因为有很多伙伴直接租用的服务器，没有配置好环境，之类我先把需要的前置软件安装方法说一下:</p><p>1.Git</p><blockquote><p>sudo apt-get install git</p></blockquote><p>2.yarn</p><pre data-type="codeBlock" text="步骤1.添加GPG密钥
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
步骤2.添加Yarn存储库
echo &quot;deb https://dl.yarnpkg.com/debian/ stable main&quot; | sudo tee /etc/apt/sources.list.d/yarn.list
步骤3.更新包列表并安装Yarn
sudo apt update
sudo apt install yarn
如果您的系统上尚未安装 Node.js，则上面的命令将安装它。 
那些使用 nvm 的人可以跳过 Node.js 安装：
sudo apt install --no-install-recommends yarn
步骤4.检查Yarn的版本
要验证 Yarn 是否已成功安装，请运行以下命令以打印 Yarn 版本号：
yarn --version
"><code>步骤<span class="hljs-number">1.</span>添加GPG密钥
curl <span class="hljs-operator">-</span>sS https:<span class="hljs-comment">//dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -</span>
步骤<span class="hljs-number">2.</span>添加Yarn存储库
echo <span class="hljs-string">"deb https://dl.yarnpkg.com/debian/ stable main"</span> <span class="hljs-operator">|</span> sudo tee <span class="hljs-operator">/</span>etc<span class="hljs-operator">/</span>apt<span class="hljs-operator">/</span>sources.list.d/yarn.list
步骤<span class="hljs-number">3.</span>更新包列表并安装Yarn
sudo apt update
sudo apt install yarn
如果您的系统上尚未安装 Node.js，则上面的命令将安装它。 
那些使用 nvm 的人可以跳过 Node.js 安装：
sudo apt install <span class="hljs-operator">-</span><span class="hljs-operator">-</span>no<span class="hljs-operator">-</span>install<span class="hljs-operator">-</span>recommends yarn
步骤<span class="hljs-number">4.</span>检查Yarn的版本
要验证 Yarn 是否已成功安装，请运行以下命令以打印 Yarn 版本号：
yarn <span class="hljs-operator">-</span><span class="hljs-operator">-</span>version
</code></pre><p>安装完毕即可.</p><p>首先去官方下载依赖项,选择你对应的系统.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/KYVENetwork/evm/releases">https://github.com/KYVENetwork/evm/releases</a></p><p>跳到你要运行的目录,然后在命令行运行以下内容：</p><pre data-type="codeBlock" text="git clone https://github.com/KYVENetwork/evm.git
cd evm
"><code>git <span class="hljs-built_in">clone</span> https://github.com/KYVENetwork/evm.git
<span class="hljs-built_in">cd</span> evm
</code></pre><p>查看当前目录,此时你的目录应该有以下文件：</p><p>Dockerfile package.json <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://README.md">README.md</a> src tsconfig.json yarn.lock</p><p>现在运行以下命令来安装依赖项并构建二进制文件</p><pre data-type="codeBlock" text="yarn install
yarn build:binaries
"><code></code></pre><p>运行后应该出现以下界面</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/eaede4c622d7feb887533f91868f2a0d9935b1edea2bf6b0c115913f7b74650c.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/b305bacadeb976721cc075b12013fc548597dcc320481894621d32a705d29a2b.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><pre data-type="codeBlock" text="./out/evm-linux --help
"><code>./out<span class="hljs-operator">/</span>evm<span class="hljs-operator">-</span>linux <span class="hljs-operator">-</span><span class="hljs-operator">-</span>help
</code></pre><p>如果正常安装,你应该能看界面是这样的：</p><pre data-type="codeBlock" text="Usage: @kyve/evm [options]

Options:
  --name &lt;string&gt;           The identifier name of the node. [optional, default = auto generated]
  -p, --poolId &lt;number&gt;     The id of the pool you want to run on.
  -m, --mnemonic &lt;string&gt;   Your mnemonic of your account.
  -k, --keyfile &lt;string&gt;    The path to your Arweave keyfile.
  -n, --network &lt;string&gt;    The chain id of the network. [optional, default = korellia] (default: &quot;korellia&quot;)
  -sp, --space &lt;number&gt;     The size of disk space in bytes the node is allowed to use. [optional, default = 1000000000 (1 GB)] (default: &quot;1000000000&quot;)
  -b, --batchSize &lt;number&gt;  The batch size of fetching items from datasource. For synchronous fetching enter 1. [optional, default = 1] (default: &quot;1&quot;)
  --metrics                 Run Prometheus metrics server. [optional, default = false] (default: false)
  -v, --verbose             Run node in verbose mode. [optional, default = false] (default: false)
  --version                 output the version number
  -h, --help                display help for command
"><code>Usage: @kyve<span class="hljs-operator">/</span>evm [options]

Options:
  <span class="hljs-operator">-</span><span class="hljs-operator">-</span>name <span class="hljs-operator">&#x3C;</span><span class="hljs-keyword">string</span><span class="hljs-operator">></span>           The identifier name of the node. [optional, default <span class="hljs-operator">=</span> auto generated]
  <span class="hljs-operator">-</span>p, <span class="hljs-operator">-</span><span class="hljs-operator">-</span>poolId <span class="hljs-operator">&#x3C;</span>number<span class="hljs-operator">></span>     The id of the pool you want to run on.
  -m, <span class="hljs-operator">-</span><span class="hljs-operator">-</span>mnemonic <span class="hljs-operator">&#x3C;</span><span class="hljs-keyword">string</span><span class="hljs-operator">></span>   Your mnemonic of your account.
  -k, <span class="hljs-operator">-</span><span class="hljs-operator">-</span>keyfile <span class="hljs-operator">&#x3C;</span><span class="hljs-keyword">string</span><span class="hljs-operator">></span>    The path to your Arweave keyfile.
  -n, <span class="hljs-operator">-</span><span class="hljs-operator">-</span>network <span class="hljs-operator">&#x3C;</span><span class="hljs-keyword">string</span><span class="hljs-operator">></span>    The chain id of the network. [optional, default <span class="hljs-operator">=</span> korellia] (default: <span class="hljs-string">"korellia"</span>)
  <span class="hljs-operator">-</span>sp, <span class="hljs-operator">-</span><span class="hljs-operator">-</span>space <span class="hljs-operator">&#x3C;</span>number<span class="hljs-operator">></span>     The size of disk space in <span class="hljs-keyword">bytes</span> the node <span class="hljs-keyword">is</span> allowed to use. [optional, default <span class="hljs-operator">=</span> <span class="hljs-number">1000000000</span> (<span class="hljs-number">1</span> GB)] (default: <span class="hljs-string">"1000000000"</span>)
  <span class="hljs-operator">-</span>b, <span class="hljs-operator">-</span><span class="hljs-operator">-</span>batchSize <span class="hljs-operator">&#x3C;</span>number<span class="hljs-operator">></span>  The batch size of fetching items <span class="hljs-keyword">from</span> datasource. For synchronous fetching enter <span class="hljs-number">1.</span> [optional, default <span class="hljs-operator">=</span> <span class="hljs-number">1</span>] (default: <span class="hljs-string">"1"</span>)
  <span class="hljs-operator">-</span><span class="hljs-operator">-</span>metrics                 Run Prometheus metrics server. [optional, default <span class="hljs-operator">=</span> <span class="hljs-literal">false</span>] (default: <span class="hljs-literal">false</span>)
  <span class="hljs-operator">-</span>v, <span class="hljs-operator">-</span><span class="hljs-operator">-</span>verbose             Run node in verbose mode. [optional, default <span class="hljs-operator">=</span> <span class="hljs-literal">false</span>] (default: <span class="hljs-literal">false</span>)
  <span class="hljs-operator">-</span><span class="hljs-operator">-</span>version                 output the version number
  <span class="hljs-operator">-</span>h, <span class="hljs-operator">-</span><span class="hljs-operator">-</span>help                display help <span class="hljs-keyword">for</span> command
</code></pre><p>安装成功过后,</p><p>输入以下命令，注意要更新参数，ID为池子ID，key为助记词 ./arweave.json是你Ar文件的名称</p><p>./out/evm-linux --poolId <strong>ID</strong> --mnemonic <strong>&quot;key&quot;</strong> --keyfile <strong>./arweave.json</strong> --network korellia -v</p><p>出现以下界面就成功了，但需要去测试网去增加你要质押的Kyve：</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/30b34f230ddfeaf0cde30d01f6f0f15502e0e8a60ea0ef92c91ab6b3110cc2fb.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/3acfad6be7419db4055d46e3c0fa90f6a38343aeffe16c2dc7d49d4743297d47.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/e6b7939d41fcfcc3a5d3520f4e92c4bcac09462f606d7cb67ea1b2c0c03f5962.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/61f2a0bc42b979aa8d9d92a323212bff5bb334a282501a7d161c8f770083c04f.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>Done！</p><h2 id="h-3" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">3.总结</h2><p>Kyve一直是一个我重点关注的项目,希望大家可以关注这个项目发展,肯定不会让你失望的~</p><p><s>同时欢迎质押我的节点：1xvc65lmrj22rn9ccx0e8nhzkxqp36e9thpmzsh</s>，已被快被踢出50节点外</p><p>欢迎关注我的Twiiter：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/liangzmt">https://twitter.com/liangzmt</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
        </item>
        <item>
            <title><![CDATA[Chiliz Scoville 测试指南]]></title>
            <link>https://paragraph.com/@liangzmt/chiliz-scoville</link>
            <guid>eQ5eErOBB8DlRbQCPjQK</guid>
            <pubDate>Sun, 03 Apr 2022 14:36:04 GMT</pubDate>
            <description><![CDATA[1.项目介绍Scoville是第一个专为体育和娱乐行业创建的Layer 1区块链。 体育和娱乐品牌将能够在CC2上铸造 NFT 和粉丝令牌、开发 DeFi 产品和 Play2Earn 游戏，并打造社区活动、建设忠诚度和开发周边，帮助释放 Web3 的巨大潜力。 https://scoville-nft.chiliz.com/2.测试操作2.1 链接测试网络首先在小狐狸钱包里加入测试网的PRC： 网络名称：Chiliz Scoville Testnet 链 ID： 88880 新增 RPC URL: https://scoville-rpc.chiliz.com 货币符号：CHZ 区块浏览器 https://scoville-explorer.chiliz.com测试网络2.2 领⽔：Chz领⽔地址：https://scoville-faucet.chiliz.com/2.3 进测试网铸造NFT铸造地址：https://scoville-nft.chiliz.com/ 总共有5个NFT，每一个NFT都铸造一个。2.4 申请测试⽹WL (可选)链接：https://docs.goog...]]></description>
            <content:encoded><![CDATA[<h2 id="h-1" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">1.项目介绍</h2><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/a8c063f2a2938dabb846cdd4530becb8aa7b42ee039f3f05fdc2582ac936fe14.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>Scoville是第一个专为体育和娱乐行业创建的Layer 1区块链。 体育和娱乐品牌将能够在CC2上铸造 NFT 和粉丝令牌、开发 DeFi 产品和 Play2Earn 游戏，并打造社区活动、建设忠诚度和开发周边，帮助释放 Web3 的巨大潜力。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://scoville-nft.chiliz.com/">https://scoville-nft.chiliz.com/</a></p><h2 id="h-2" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2.测试操作</h2><h3 id="h-21" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2.1 链接测试网络</h3><p>首先在小狐狸钱包里加入测试网的PRC：</p><p>网络名称：Chiliz Scoville Testnet</p><p>链 ID： 88880</p><p>新增 RPC URL: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.co/ZeCOcOQhvG">https://scoville-rpc.chiliz.com</a></p><p>货币符号：CHZ</p><p>区块浏览器 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.co/8Ur2D527t1">https://scoville-explorer.chiliz.com</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/efa315051ea4c8a6a874c6a168bab632fc25439ef97c44989077ea3f83f8ed87.png" alt="测试网络" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">测试网络</figcaption></figure><h3 id="h-22-chz" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2.2 领⽔：Chz</h3><p>领⽔地址：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://scoville-faucet.chiliz.com/">https://scoville-faucet.chiliz.com/</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/edb5228d8cae7f588d4491a90f0e2c971c88b1823a46048387c75211d609517a.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-23-nft" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2.3 进测试网铸造NFT</h3><p>铸造地址：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://scoville-nft.chiliz.com/">https://scoville-nft.chiliz.com/</a></p><p>总共有5个NFT，每一个NFT都铸造一个。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2aee71c48bf8ac9db40560b1a86325070864dfa03752911caddf1f7c4a6dbf01.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-24-wl" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2.4 申请测试⽹WL (可选)</h3><p>链接：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.google.com/forms/d/e/1FAIpQLSe6sXS5gU2o2xmNf6uGNCOHM_jkXRAuSGydUJjkdhkpKdlutw/viewform">https://docs.google.com/forms/d/e/1FAIpQLSe6sXS5gU2o2xmNf6uGNCOHM_jkXRAuSGydUJjkdhkpKdlutw/viewform</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ea25017b04d06d3ff873f4461057613b1a293d6c746b12a6703e4db7ba9b5de2.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><h2 id="h-3" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">3.总结</h2><p>总体来说很流畅，只要领取5个NFT即可，今年体育板块也很可能会迎来一波主升浪。Chz去年作为体育赛事前几龙头很有观察价值。包括像Flow这种体育明星合作很多的公链，我本人也有在Flow上做开发工作，所以对Chz与Flow还是挺期待的。</p><p>欢迎关注我的Twiiter：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/liangzmt">https://twitter.com/liangzmt</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
        </item>
        <item>
            <title><![CDATA[NFT：让人们拥有了互联网]]></title>
            <link>https://paragraph.com/@liangzmt/nft</link>
            <guid>utl0YybhfqNjXYwfqdkY</guid>
            <pubDate>Sat, 02 Apr 2022 15:18:06 GMT</pubDate>
            <description><![CDATA[为什么加密货币正在成为所有互联网媒体的“入口”？我曾是一名音乐艺术家经理。 当我创办这家公司时，我非常坚信音乐行业的一件事：所有权赋予权力。 通常来说，唱片公司对音乐拥有所有权，因此对艺术家有掌握的权利。 我们的目标是帮助艺术家保持他们作品的所有权并独立经营他们的业务，利用网络技术直接与他们的粉丝互动。今天，我们都是网络创作者，所有权继续发挥着重要作用。然而，所有权在网络平台上的作用常常被忽视。 每天都有数十亿的图片、视频、歌曲和更多媒体在社交媒体上共享。 当这些文件被发布时，这些文件的副本会从创建者的设备中取出并粘贴到发送它的平台的服务器上——Facebook、Twitter、YouTube、TikTok 等。 这似乎是一种无足轻重的交互，但在上传时，创作者不是简单地复制文件——他们还将文件的所有权复制粘贴到平台本身。 在这里，我说的是服务条款，它通常会说当文件上传时，其所有权将与平台共享，以便在他们认为合适的情况下获取创作者利益。 平台占据的优势：平台可以提供收入或提供基于广告收入的规模效应。 但是，很显然当今的盈利模式并不总是符合创作者的最大利益。而这就是问题所在。 长期以...]]></description>
            <content:encoded><![CDATA[<h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">为什么加密货币正在成为所有互联网媒体的“入口”？</h2><p>我曾是一名音乐艺术家经理。 当我创办这家公司时，我非常坚信音乐行业的一件事：所有权赋予权力。 通常来说，唱片公司对音乐拥有所有权，因此对艺术家有掌握的权利。</p><p>我们的目标是帮助艺术家保持他们作品的所有权并独立经营他们的业务，利用网络技术直接与他们的粉丝互动。今天，我们都是网络创作者，所有权继续发挥着重要作用。然而，所有权在网络平台上的作用常常被忽视。</p><p>每天都有数十亿的图片、视频、歌曲和更多媒体在社交媒体上共享。 当这些文件被发布时，这些文件的副本会从创建者的设备中取出并粘贴到发送它的平台的服务器上——Facebook、Twitter、YouTube、TikTok 等。</p><p>这似乎是一种无足轻重的交互，但在上传时，创作者不是简单地复制文件——<strong>他们还将文件的所有权复制粘贴到平台本身。</strong></p><p>在这里，我说的是服务条款，它通常会说当文件上传时，其所有权将与平台共享，以便在他们认为合适的情况下获取创作者利益。 平台占据的优势：平台可以提供收入或提供基于广告收入的<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://baike.baidu.com/item/%E8%A7%84%E6%A8%A1%E6%95%88%E5%BA%94/2863379?fromtitle=economies%20of%20scale&amp;fromid=24006385&amp;fr=aladdin">规模效应</a>。 但是，很显然当今的盈利模式并不总是符合创作者的最大利益。而这就是问题所在。 长期以来，平台从创作者创作的内容的所有权中获得了大部分价值。</p><p>与此同时，加密货币正在开辟一条不同的道路--我称之为所有权经济(Ownership Economy)——这是一个更广泛的论点，即下一代互联网平台将由用户直接构建、运营和拥有。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/4d958d731d4fe10a7deedf11a525f6b8ce762fe390a1e7757cba6bcb29bac4ed.png" alt="https://variant.fund/writing/the-ownership-economy-crypto-and-consumer-software" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">https://variant.fund/writing/the-ownership-economy-crypto-and-consumer-software</figcaption></figure><p>在媒体中，NFT即非同质化代币使创作者可以保留其内容的所有权，而不会限制其文件在互联网上的传播。 因此，NFT 有可能颠覆原有媒体的所有权模式——为创作者、粉丝和开发者，提供一个替代方案。</p><p><strong>一个对NFT简单的概念是将他们视为存在在区块链上的文件</strong>。 这意味着它们不能被复制粘贴、编辑、删除或以其他方式操作。</p><p>这些保证源于使加密货币具有价值的相同技术属性：与比特币一样，NFT 是可以买卖、交易的数字代币，其所有权和出处始终由区块链记录。 你的就是你的，这是可以验证的，并且不需要任何第三方来证明该所有权。</p><p><strong>NFT 使拥有数字媒体资产成为可能，就像你拥有比特币等数字货币资产一样。</strong></p><p>对许多人来说，NFT 看起来像是一个新的科技玩具，或是一个即将破灭的泡沫。 虽然花在数字艺术和加密收藏品上的钱确实是快速和表面的，但它们的作用与当今平台使<strong>创作者货币化</strong>的方式截然不同。</p><p>我相信我们正在努力使 <strong>NFT 成为互联网上每一种媒体的“入口”</strong>。 这包括网络的 2D 音频/视频和基于文字的作品，以及未来将涵盖游戏和虚拟世界的元宇宙新兴 3D 作品。</p><p>我相信将推动这一未来发展的事实是，NFT 所支持的商业模式对所涉及的每个利益相关者都更好：<strong>创作者、粉丝和开发者都可以在一个以虚拟货币(BTC\ETH)为基础的经济体系建立的市场中赚更多的钱。</strong></p><p>原文地址：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://variant.mirror.xyz/T8kdtZRIgy_srXB5B06L8vBqFHYlEBcv6ae2zR6Y_eo">https://variant.mirror.xyz/T8kdtZRIgy_srXB5B06L8vBqFHYlEBcv6ae2zR6Y_eo</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
        </item>
        <item>
            <title><![CDATA[什么是加密货币：一个为想要进入加密行业的新人指南]]></title>
            <link>https://paragraph.com/@liangzmt/Q2tWKIgkCdwgN2jh6ZGK</link>
            <guid>Q2tWKIgkCdwgN2jh6ZGK</guid>
            <pubDate>Fri, 01 Apr 2022 07:51:18 GMT</pubDate>
            <description><![CDATA[引言在早期的互联网中,很多学者就已经推测将来可以设计出一种协议，这个协议允许人们交换真正的数字货币. 然而，正如在科学领域经常发生的那样,想法总要花一些时间才能变成现实.实际上在20世纪,人们就曾试图创造各种形式的数字货币,但在2009年比特币发明之前,这种想法一直只是一个梦想. 如今,有许多的人声称自己已经完成了加密货币的初衷或者是他们已经超越这些限制去创造一些全新的东西. 尽管他们有不同的意见,作为一类计算协议,加密货币确实有很多共同之处.例如,它们的诞生是出于人们对于网络隐私的认识,以及不再需要中介来达成交易. 比特币是目前最著名的加密货币，它们都使用了类似的区块链. 加密货币的共性:无边界(Borderless): 你可以在世界上任何地方接收或者是发送加密货币.持久(Durable): 加密货币可以多次使用而不会消失.不可恢复(Irreversible): 交易不能被撤回也不能交易两次.无需权限(Permissionless): 创建钱包,拥有加密货币不需要提供任何信息或者拥有权限.匿名(Pseudonymous): 交易不需要附上个人姓名或身份信息.图片来源: krak...]]></description>
            <content:encoded><![CDATA[<h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">引言</h2><p>在早期的互联网中,很多学者就已经推测将来可以设计出一种协议，这个协议允许人们交换真正的数字货币.</p><p>然而，正如在科学领域经常发生的那样,想法总要花一些时间才能变成现实.实际上在20世纪,人们就曾试图创造各种形式的数字货币,但在2009年比特币发明之前,这种想法一直只是一个梦想.</p><p>如今,有许多的人声称自己已经完成了加密货币的初衷或者是他们已经超越这些限制去创造一些全新的东西.</p><p>尽管他们有不同的意见,作为一类计算协议,加密货币确实有很多共同之处.例如,它们的诞生是出于人们对于网络隐私的认识,以及不再需要中介来达成交易.</p><p>比特币是目前最著名的加密货币，它们都使用了类似的区块链.</p><p>加密货币的共性:</p><ol><li><p><strong>无边界(Borderless)</strong>: 你可以在世界上任何地方接收或者是发送加密货币.</p></li><li><p><strong>持久(Durable)</strong>: 加密货币可以多次使用而不会消失.</p></li><li><p><strong>不可恢复(Irreversible)</strong>: 交易不能被撤回也不能交易两次.</p></li><li><p><strong>无需权限(Permissionless)</strong>: 创建钱包,拥有加密货币不需要提供任何信息或者拥有权限.</p></li><li><p><strong>匿名(Pseudonymous)</strong>: 交易不需要附上个人姓名或身份信息.</p></li></ol><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/792242679b9e3f3f567c717e0c485f9ffdc37cc2be4c5cb8198fa923ddc52db5.png" alt="图片来源: kraken" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">图片来源: kraken</figcaption></figure><hr><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">加密货币起源</h2><p>想要完全理解加密货币,我们需要深入了解实现数字货币的过往的探索历史.</p><p>因为如今加密货币被称为”组合发明”(<em>combinatorial inventions</em>),即使用旧的,建立的作品的组合创造一种新技术.当今所有加密货币的基础在于密码学(用于安全私人通信的技术)和加密(对信息进行编码的过程).</p><hr><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">密码学介绍</h2><p>密码学是创建代码和密码背后的科学技术,它允许人们以私密和安全的方式传输信息.</p><p>已知的最早使用密码学的地方是在公元前1900年左右从<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.zhihu.com/search?q=%E5%9F%83%E5%8F%8A%E5%8F%A4%E7%8E%8B%E5%9B%BD&amp;search_source=Entity&amp;hybrid_search_source=Entity&amp;hybrid_search_extra=%7B%22sourceType%22%3A%22answer%22%2C%22sourceId%22%3A420907052%7D">埃及古王国</a>雕刻到墓葬墙上的非标准象形文字中发现的.</p><p>然而从那时起，密码学得到了广泛的发展，并经历了多次更替来适应时代需求. 例如,在中世纪，消息使用两个字母进行编码,读者需要同时看到这两个字母才能破译消息.</p><p>在 1900 年代初期，密码学主要由军事和间谍机构使用，特别是在战争期间，秘密通信是在岗位之间发送信息的重要方式。 20 世纪早期最著名的密码学家之一是艾伦·图灵，他在二战期间建造了一台帮助解密德国信息的机器.</p><p>今天,当加密传输从一方传输到另一方时,特别是通过互联网,保护加密传输的方法称为加密.</p><hr><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">数字签名</h2><p>在现代密码学中，可以使用私钥对信息或数据进行签名，而且与早期一样，第三方可以验证消息的签名.</p><p>数字签名对完整性和不可否认性都有很好的应用.数字签名是散列和非对称加密的组合.也就是说，信息首先被散列函数计算，并且该散列用发送者的私钥加密。这就组成了签名，与消息一起发送.</p><p>收件人使用发件人的公钥从签名中提取散列，然后对信息进行散列处理以与提取的散列进行比较。如果您确信公钥属于发件人，并且公钥解密成功，那么您可以确信邮件确实来自发件人.如果提取的散列与信息的计算散列匹配，则可以确定消息的完整性.</p><p>请记住，数字签名不一定会使信息保密; 因为有可能签署明文消息。 数字签名将与加密的消息一起工作，但是信息本身的加密必须单独执行.</p><p>加密货币网络使用数字签名来实现加密资产的转移.收件人将其公钥提供给发件人，发件人的私钥签署交易，将资产分配给收件人的公钥.</p><hr><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">比特币与中本聪</h2><p>Satoshi Nakamoto,一名程序员（或一组程序员）发表了白皮书《比特币：一种点对点的电子现金系统》.</p><p>比特币不依靠中心化服务器或数据库来存储交易、账户和余额信息，而是依靠自己的用户网络来提供该服务.</p><p>2009 年初,第一批比特币被开采出来,导致了我们今天所处的加密货币生态系统的发展.</p><p>如果您想了解有关比特币如何运作的更多信息,请关注接下来的文章.</p><hr><p>参考资料:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.kraken.com/learn/what-is-cryptocurrency">https://www.kraken.com/learn/what-is-cryptocurrency</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.zhihu.com/question/281561051">https://www.zhihu.com/question/281561051</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
        </item>
        <item>
            <title><![CDATA[Dragonaire: 下一代P2E游戏 | 项目介绍]]></title>
            <link>https://paragraph.com/@liangzmt/dragonaire-p2e</link>
            <guid>1iPaZEMfmyCjBJd9j4Hz</guid>
            <pubDate>Thu, 31 Mar 2022 03:31:27 GMT</pubDate>
            <description><![CDATA[Dragonaire介绍Dragonaire是一个划时代意义上的具有3D沉浸感的游戏,它使用Web3.0的NFT物品,同时是一款链上游戏(也叫做DragonaireNFT/DragonaireNFTs, 更多信息: dragonairenfts.co) 它源于传统游戏行业，同时巧妙地注入了区块链元素，让各种用户享受这个统一的元宇宙，即聚集了传统玩家、P2E游戏玩家、打金公会、NFT的收藏家和艺术家、造市商和DeFi玩家。相关信息第一款在BSC链上的3A级项目,总花费超过1百万美元🎨 ,其中包括场景渲染和 DragonaireNFT的设计卓越的游戏引擎和智能合约开发能力和优势💻, 由亚洲前 10 大传统游戏开发商和发行商和最大的电子竞技公司发起,致力于在 2022 年第四季度建立一个统一的 GameFi Steam Launchpad 平台🎠;游戏正在调试,并将在3月底进行内测 (最迟在四月中旬) 🌞;Dragonairenfts.co在Web2.0拥有超过 10 万的用户,同时会存在超过 20-50% 的潜在转化率来到Web3.0🎮.游戏剧情曾经，人界和六龙界在库亚特王...]]></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/d8d3ed4f62471fe8a11288239191df3942d4bbd51ceab693b18cc40bd071048e.png" alt="Dragonaire" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Dragonaire</figcaption></figure><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">介绍</h1><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://dragonairenfts.co/">Dragonaire</a>是一个划时代意义上的具有3D沉浸感的游戏,它使用Web3.0的NFT物品,同时是一款链上游戏(<em>也叫做DragonaireNFT/DragonaireNFTs, 更多信息: </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://dragonairenfts.co/"><em>dragonairenfts.co</em></a>)</p><p>它源于传统游戏行业，同时巧妙地注入了区块链元素，让各种用户享受这个统一的元宇宙，即聚集了传统玩家、P2E游戏玩家、打金公会、NFT的收藏家和艺术家、造市商和DeFi玩家。</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">相关信息</h1><ol><li><p>第一款在BSC链上的3A级项目,总花费超过1百万美元🎨 ,其中包括场景渲染和 DragonaireNFT的设计</p></li><li><p>卓越的游戏引擎和智能合约开发能力和优势💻, 由亚洲前 10 大传统游戏开发商和发行商和最大的电子竞技公司发起,致力于在 2022 年第四季度建立一个统一的 GameFi Steam Launchpad 平台🎠;</p></li><li><p>游戏正在调试,并将在3月底进行内测 (最迟在四月中旬) 🌞;</p></li><li><p>Dragonairenfts.co在Web2.0拥有超过 10 万的用户,同时会存在超过 20-50% 的潜在转化率来到Web3.0🎮.</p></li></ol><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">游戏剧情</h1><p>曾经，人界和六龙界在库亚特王国的荣耀下繁荣昌盛👑. 然而，随着黑恶势力,黑暗血统的兴起，王国被毁灭，正义被抛弃，荣耀消失💔. 那个时候,所有不愿屈服于黑暗的灵魂,都跑到到了黑暗世界之外的一片宁静之地……而现在数千年后,过去已成为传奇,荒凉的世界正在等待一个新的 NFT英雄！⚔️</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7417c9277a67493e23027bf648ef39fcdc25a3cdb310eb8cd5c94d527a18cf0a.png" alt="Lore &amp; Plot of Dragonaire" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Lore &amp; Plot of Dragonaire</figcaption></figure><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">治理代币</h1><p>Dragonaire会有两种代币,包含$DEAR (Dragon Evolution Augmented Reality的缩写)+ $DES (Dragonaire Evolutionary Stone的缩写)的双代币经济系统。</p><h1 id="h-nft" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">游戏NFT</h1><p>在Dragonaire生态中,Dragons是目前最具有价值的NFT资产和核心元素,🐲游戏里有数百种龙,他们有三种类型进化.Dragon NFT分为3种品质:史诗(Epic)、传奇(Legendary)和创世(Genesis).也有很多方法可以获得NFT，比如开盒子、市场购买和繁殖系统。</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">游戏玩法</h1><p><strong>🧑🏽‍🤝‍🧑🏽组建一个团队🧑🏽‍🤝‍🧑🏽</strong></p><p>战斗阵容最多由6条龙组成. 发挥您的战略技能,集结一支不可阻挡的军队来和敌人对抗,同时也要注意不同的Buff.团队中同一元素的龙越多,元素Buff就越强.</p><p><strong>🌵PVE🌵</strong></p><p>玩家可以派龙去与 PVE（电脑）战斗,冒险中的每一次胜利都会给你经验和金币,这将帮助他们升级.闯关关卡越高,回报越大. 这是非常简单的模式,也是刚开始时应该花费最多时间的地方.</p><p><strong>🚩探索龙穴🚩</strong></p><p>探索龙穴是获取治理代币$mDEAR很重要的方式,玩家需要完成主线任务来解锁部署位置,才能派出NFT人物去探索龙穴.</p><p>⚔️<strong>PVP</strong>⚔️</p><p>PVP区域会在您完成3-12闯关关卡后解锁,竞技场奖励分为胜利奖励和排名奖励.排名奖励是治理代币$mDEAR,它也可以每天在游戏中的邮箱中定期领取.</p><h1 id="h-" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">发布日期</h1><p>Dragonaire将很快推出代币和NFT预售.在第二季度,将发布V1.0游戏,在正式发布之前,会有一系列测试活动,并且只针对早期的白名单候选人.</p><p>官方动态信息:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/DragonaireNFTs">https://twitter.com/DragonaireNFTs</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/uzy3ngRSuU">https://discord.gg/uzy3ngRSuU</a></p><p>🐲Telegram: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/dragonaire_official">https://t.me/dragonaire_official</a></p><p>🐲Medium: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/@dragonairenfts">https://medium.com/@dragonairenfts</a></p><p>🐲Website: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dragonairenfts.co/">https://dragonairenfts.co/</a></p><p>🐲Youtube: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/channel/UCLyHXL3Ab8LXImC0WCz7Vvw">https://www.youtube.com/channel/UCLyHXL3Ab8LXImC0WCz7Vvw</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
        </item>
        <item>
            <title><![CDATA[怎样在二级市场购买NFT? | Odyssey Dao]]></title>
            <link>https://paragraph.com/@liangzmt/nft-odyssey-dao-3</link>
            <guid>BiapidWJbbhlCfR9WA6T</guid>
            <pubDate>Wed, 30 Mar 2022 05:12:57 GMT</pubDate>
            <description><![CDATA[**如果你错过了最初的铸造, 你可以从二级市场购买NFT. ** 从二级市场购买NFT，你需要:找到你想要的NFT点击下单或者设置一个限价单** **当然，你也可以获得NFT空投NFT市场大多数NFT交易市场:Ethereum + Polygon 上的NFT：OpenSeaSolana NFT：Solanart, Magic Eden, SolSeaEthereum 1/1 NFT：Foundation, Rarible中心化交易所NFT：Coinbase去中心化NFT交易平台：LooksRare点击下单或者设置一个限价单购买NFT，你需要将你的钱包连接到交易市场.在Opensea, 你可以在右上角连接你的钱包: 连接之后，你有两个选择:立即下单 选择你要买的NFT立即下单.出价求购 如果你选择这个选项，NFT卖家可能会选择一个他接受的价格来成交.如果你在Opensea上出家求购，出价求购需要你把ETH换成WETH，你需要去中心化交易所像Uniswap上把你的ETH换成WETH如果你购买成功,你稍后会在你的钱包看到它. 你也可以在链上查到这一笔交易. 请注意,eth上的Gas费十...]]></description>
            <content:encoded><![CDATA[<p>**如果你错过了最初的铸造, 你可以从二级市场购买NFT. **</p><p>从二级市场购买NFT，你需要:</p><ol><li><p>找到你想要的NFT</p></li><li><p>点击下单或者设置一个限价单** **</p></li></ol><p>当然，你也可以获得NFT空投</p><h2 id="h-nft" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">NFT市场</h2><p>大多数NFT交易市场:</p><ul><li><p>Ethereum + Polygon 上的NFT：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opensea.io/">OpenSea</a></p></li><li><p>Solana NFT：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://solanart.io/">Solanart</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://magiceden.io/">Magic Eden</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://solsea.io/">SolSea</a></p></li><li><p>Ethereum 1/1 NFT：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://foundation.app/">Foundation</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rarible.com/">Rarible</a></p></li><li><p>中心化交易所NFT：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.coinbase.com/nft/announce">Coinbase</a></p></li><li><p>去中心化NFT交易平台：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://looksrare.org/">LooksRare</a></p></li></ul><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">点击下单或者设置一个限价单</h2><p>购买NFT，你需要将你的钱包连接到交易市场.在Opensea, 你可以在右上角连接你的钱包:</p><p>连接之后，你有两个选择:</p><ol><li><p><strong>立即下单</strong> 选择你要买的NFT立即下单.</p></li><li><p><strong>出价求购</strong> 如果你选择这个选项，NFT卖家可能会选择一个他接受的价格来成交.如果你在Opensea上出家求购，出价求购需要你把ETH换成WETH，你需要去中心化交易所像Uniswap上把你的ETH换成WETH</p></li></ol><p>如果你购买成功,你稍后会在你的钱包看到它. 你也可以在链上查到这一笔交易.</p><p>请注意,eth上的Gas费十分昂贵,我会在之后的文章中描述如何减少Gas费的产生</p><h2 id="h-nft" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">NFT空投</h2><p>有时，你可以直接获取NFT空投到你的钱包.</p><p>空投固然很吸引人，但领取的时候要十分小心. 许多空投骗局就是用来骗取你的助记词.</p><p>原帖地址：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.odysseydao.com/articles/how-to-buy-nfts-on-secondary">https://www.odysseydao.com/articles/how-to-buy-nfts-on-secondary</a></p><p>By: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/alexfinden">Alex</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/petergyang">Peter</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/cthrin">Catherine</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/f533598fac14137d846a9a707f77ff48c5a68e5186e246323a2e75498b10e858.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[怎样快人一步铸造NFT? | Odyssey Dao]]></title>
            <link>https://paragraph.com/@liangzmt/nft-odyssey-dao-2</link>
            <guid>UKFK6I7Hf61WQi3avnb4</guid>
            <pubDate>Tue, 29 Mar 2022 15:14:19 GMT</pubDate>
            <description><![CDATA[铸造NFT意味着第一次从区块链创建它. 对于大多数NFT项目, 铸造NFT通常会让你以比二级市场低得多的价格获得它. 铸造一个NFT项目, 你需要:进入项目的社区从项目的官网铸造进阶: 从智能合约中铸造进入项目的社区首先，加入项目社区。项目方通常会提前24-48小时宣布铸造相关信息 热门的项目常有白名单机制让你体验铸造. 获取白名单的方式:为社区做贡献以及积极讨论. 在社区公告栏参与抽奖.拥有这个项目相关的NFT. 忽略其他人的任何DM——它们很可能是骗局。从项目的官网铸造在铸造之前，你应该:了解它在哪一个公链上铸造 ( Ethereum, Polygon, Solana).确保你的钱包有足够的代币去铸造(不要忘了Gas). 大多数项目都是从官方上铸造. 你通常需要:连接钱包点击铸造按钮付款如果您对一个项目有信心，可以考虑铸造多个nft 通过这种方式，你可以出售一些以获得利润， 同时持有其余部分以获得长期收益进阶: 从智能合约中铸造如果项目非常火热，可能在铸造期间网站很卡 如果这样，你可以直接从智能合约中去铸造:找到合约地址. 它一般会写在社区里将你的钱包与合约连接起来. 在ET...]]></description>
            <content:encoded><![CDATA[<p><strong>铸造NFT意味着第一次从区块链创建它.</strong></p><p>对于大多数NFT项目, 铸造NFT通常会让你以比二级市场低得多的价格获得它.</p><p>铸造一个NFT项目, 你需要:</p><ol><li><p>进入项目的社区</p></li><li><p>从项目的官网铸造</p></li><li><p>进阶: 从智能合约中铸造</p></li></ol><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">进入项目的社区</h2><p>首先，加入项目社区。项目方通常会提前24-48小时宣布铸造相关信息</p><p>热门的项目常有白名单机制让你体验铸造.</p><p>获取白名单的方式:</p><ol><li><p>为社区做贡献以及积极讨论. </p></li><li><p>在社区公告栏参与抽奖.</p></li><li><p>拥有这个项目相关的NFT.</p></li></ol><br><p>忽略其他人的任何DM——它们很可能是骗局。</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">从项目的官网铸造</h2><p>在铸造之前，你应该:</p><ol><li><p>了解它在哪一个公链上铸造 ( Ethereum, Polygon, Solana).</p></li><li><p>确保你的钱包有足够的代币去铸造(不要忘了Gas).</p></li></ol><br><p>大多数项目都是从官方上铸造. 你通常需要:</p><ol><li><p>连接钱包</p></li><li><p>点击铸造按钮</p></li><li><p>付款</p></li></ol><p>如果您对一个项目有信心，可以考虑铸造多个nft</p><p>通过这种方式，你可以出售一些以获得利润，</p><p>同时持有其余部分以获得长期收益</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">进阶: 从智能合约中铸造</h2><p>如果项目非常火热，可能在铸造期间网站很卡</p><p>如果这样，你可以直接从智能合约中去铸造:</p><ol><li><p><strong>找到合约地址.</strong> 它一般会写在社区里</p></li><li><p><strong>将你的钱包与合约连接起来.</strong> 在ETH上，你应该会看见“Contract” 标签, 然后点击“Write Contract” 按钮, 之后连接进你的钱包</p></li><li><p><strong>找到铸造(Mint)函数.</strong> 你可以看到一个和Mint相似的名字的函数</p></li><li><p><strong>填写参数.</strong> Price 是你铸造的价格. 如果你不知道价格，你可以尝试猜猜. 如果你给的价格过低，你会看见非常高的Gas在你确认交易的时候. 如果你的价格过高，多余的资金会回到你的钱包. 除了价格，您还需要输入数量(价格乘以商品数量)和您的钱包地址(以接收NFT)。每个项目可能有稍微不同的参数，所以你可以尝试从项目社区中寻求帮助</p></li></ol><p>一旦你执行了这个函数，你可以在链上查询这个交易来确保成功。</p><p>如果你错过了铸造时间，你仍可以通过二级市场获得它.</p><p>原帖地址：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.odysseydao.com/articles/how-to-mint-nfts">https://www.odysseydao.com/articles/how-to-mint-nfts</a></p><p>By: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://twitter.com/eric3000">Eric</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/petergyang">Peter</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/5218f73fbafcc6c544fccc9e610716936fe267e9caa832dad85c33c7fdaf9500.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[如何找到有价值的NFT？ | Odyssey Dao]]></title>
            <link>https://paragraph.com/@liangzmt/nft-odyssey-dao</link>
            <guid>wh5SCNPGr2EmdK10eOov</guid>
            <pubDate>Mon, 28 Mar 2022 10:17:33 GMT</pubDate>
            <description><![CDATA[要想要找到好的NFT项目，你需要花费大量的时间去理解市场 以下并不是投资建议，只是我们推荐你这样做:确定目标寻找项目做好研究动手下单确定目标在你购买一个NFT之前, 仔细考虑你为什么需要买它:如果你想要学习, 你可以考虑购买L2上的NFT，比如Polygon或者除了ETH以外的L1赛道比如Solona来节约你的Gas费.如果你仅仅想要知道艺术家或单纯喜欢这个作品, 也许你现在已经有了喜欢的作品，那么下单吧. 如果你想要投资, 请记住NFT的风险非常大. 许多 “蓝筹” 项目十分昂贵, 同时许多项目已经消失归零. 因此, NFT 投资者必须花费大量的时间寻找alpha项目. (比如：你必须获取项目的最新信息).寻找项目这里有一些找到NFT项目的方式:寻找热门项目. 你可以在 OpenSea, CryptoSlam, NonFungible 上看到最近的热门项目. 你也可以使用付费工具，比如 Icy.tools, Nansen, Moby.gg.关注NFT收藏家. 顶级的NFT收藏家常常通过NFT交易非常大的交易额同时他们也经常是热门项目的首位发现者. 像Moby.gg这种工具可以让...]]></description>
            <content:encoded><![CDATA[<p><strong>要想要找到好的NFT项目，你需要花费大量的时间去理解市场</strong></p><p>以下并不是投资建议，只是我们推荐你这样做:</p><ol><li><p>确定目标</p></li><li><p>寻找项目</p></li><li><p>做好研究</p></li><li><p>动手下单</p></li></ol><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">确定目标</h2><p>在你购买一个NFT之前, 仔细考虑你为什么需要买它:</p><ol><li><p><strong>如果你想要学习,</strong> 你可以考虑购买L2上的NFT，比如Polygon或者除了ETH以外的L1赛道比如Solona来节约你的Gas费.</p></li><li><p><strong>如果你仅仅想要知道艺术家或单纯喜欢这个作品,</strong> 也许你现在已经有了喜欢的作品，那么下单吧. </p></li><li><p><strong>如果你想要投资</strong>, 请记住NFT的风险非常大. 许多 “蓝筹” 项目十分昂贵, 同时许多项目已经消失归零. 因此, NFT 投资者必须花费大量的时间寻找alpha项目. (比如：你必须获取项目的最新信息).</p></li></ol><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">寻找项目</h2><p>这里有一些找到NFT项目的方式:</p><ol><li><p><strong>寻找热门项目.</strong> 你可以在 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opensea.io/rankings">OpenSea</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cryptoslam.io/">CryptoSlam</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://nonfungible.com/">NonFungible</a> 上看到最近的热门项目. 你也可以使用付费工具，比如 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://icy.tools/">Icy.tools</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.nansen.ai/">Nansen</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://moby.gg/">Moby.gg</a>.</p></li><li><p><strong>关注NFT收藏家.</strong> 顶级的NFT收藏家常常通过NFT交易非常大的交易额同时他们也经常是热门项目的首位发现者. 像Moby.gg这种工具可以让你看到一些收藏家最近的交易.你也可以在Twitter上关注一些NFT收藏夹 (可以从关注<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/i/topics/1369311988040355840">NFT 话题</a>开始).</p></li><li><p><strong>加入一个NFT社区.</strong> 您可以加入NFT爱好者的社区来获取项目的最新信息.</p></li></ol><p><strong>如果有人通过Discord 向你DM关于NFT的信息，请忽视它.</strong></p><p>这个人很可能是一个骗子，他想通过网络钓鱼来获取你钱包中的助记词。</p><p>当你加入新服务器时关闭Discord的私信，并阅读避免诈骗指南。</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">做好研究</h2><p>在你找到项目后, 尝试访问他们的网站, 官推动态, 社区互动:</p><ol><li><p><strong>目标:</strong> 这个项目是做什么的? 他要做的事是否有打动你?</p></li><li><p><strong>团队</strong>: 这个项目的核心团队是谁? 你有尝试和他们互动吗(Twitter/Discord…)? 他们有足够的能力吗(比如, 艺术家, 开发者, 社区管理员)? 他们有什么经历吗?</p></li><li><p><strong>路线图:</strong> 随着项目发展，他们有关于这个项目的任何打算吗？比如，他们是否打算为NFT持有者提供任何新的权益</p></li><li><p><strong>社区</strong>: 核心团队有在社区活跃吗? 社区成员是对项目的路线图感兴趣并参与讨论，还是只是在猜测地板价格? 社区里有多少人是活跃的?</p></li><li><p><strong>社交媒体:</strong> 是不是很多NFT圈的人都在谈论? 如果你在Twitter上搜索项目名称，你会发现什么?</p></li></ol><p>如果一个NFT项目已经铸造结束, 你可以去NFT市场看看他们情况:<strong>‍</strong></p><ol><li><p><strong>认证(Verification):</strong> 这个项目是否已经被认证? 有时骗子会用相同的名字制作一个假项目<strong>‍</strong></p></li><li><p><strong>持有者(Owners)</strong>: 每个持有者有多少个? 如果每个持有者基本持有2-3个是一个好的信号，这保证了不被少数人囤积.<strong>‍</strong></p></li><li><p><strong>地板价(Floor Price):</strong> 地板价出售的是否很多? 如果有很多地板价，那就是人们想要急于出售这个项目的信号。</p></li><li><p><strong>稀有度(Rarity)</strong>: 稀有度是判断一个NFT是否稀有的信号. 有些人会去购买最稀有的那一个. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rarity.tools/">rarity.tools</a> 、<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://howrare.is/">howrare.is</a> 可以用于查询Ethereum、Solana NFT的稀有度.</p></li></ol><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">动手下单</h2><p>一旦你做好了调查，你就准备好决定是否要买NFT了. </p><p>你可以通过以下方式购买:</p><ol><li><p>第一时间铸造NFT</p></li><li><p>从二级市场购买NFT</p></li></ol><p>如果您对一个项目有信心，那么你可能想要购买多个NFT，以便之后获利出售一部分。</p><p>原帖地址：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.odysseydao.com/articles/how-to-find-and-evaluate-nft-projects">https://www.odysseydao.com/articles/how-to-find-and-evaluate-nft-projects</a></p><p>By: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/jakeywan">Jake</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/petergyang">Peter</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://twitter.com/eric3000">Eric</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/0f923d61f30547399d9139d72b259f3234dbcd0f7bf0a8dfe1a2b5e6abb0fb2a.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[NFT 工具推荐 | Q1 2022]]></title>
            <link>https://paragraph.com/@liangzmt/nft-q1-2022</link>
            <guid>4uqGYS6lYmc7JdUletaT</guid>
            <pubDate>Sun, 27 Mar 2022 10:00:58 GMT</pubDate>
            <description><![CDATA[挑选一个适合的工具 (Q1 2022)Q1 2022分析工具Flips — 一个专门监控下架NFT异动、地板价格异动、交易额异动的NFT分析中心Nansen — 一个分析NFT与DEFI的网站, 对NFT的新项目可以有很好的观察其发售时的售卖情况，提供7天的免费试用和一些监控信息。 比如：Gas 监测图片来源：flips.finance建设Artiva — 一个无需编程即可构建NFT平台的网站Dework — Web3项目管理工具Drips — 一个用于获取定期性的收入，它支持订阅和 NFT 会员资格Midwit — 为智能合约生成UI界面, 让你无需搭建网站即可进入Mint的界面MultiRaffle — 一个NFT抽奖发售形式NFT DAOsDAO.NEW — 一个定制的开源工具，通过成员持有其社区NFT来进行管理自治Tally — Tally 赋能用户自己的社区，增加了对NFT DAO支持的治理监控系统DeFi x NFTsCharged Particles — 一个让人们可以将ERC-20或者NFT放入NFT中。例如，你可以将这些当作一个礼物NFT送给别人NFTX Inv...]]></description>
            <content:encoded><![CDATA[<h1 id="h-q1-2022" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">挑选一个适合的工具 (Q1 2022)</h1><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/38861c807a88b257468efe0a39b1139f195fda70ba331e816ad97cbba0067c65.png" alt="Q1 2022" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Q1 2022</figcaption></figure><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">分析工具</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.flips.finance/"><strong>Flips</strong></a> — 一个专门监控下架NFT异动、地板价格异动、交易额异动的NFT分析中心</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.nansen.ai/"><strong>Nansen</strong></a> — 一个分析NFT与DEFI的网站, 对NFT的新项目可以有很好的观察其发售时的售卖情况，提供7天的免费试用和一些监控信息。 比如：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://pro.nansen.ai/gas-tracker">Gas 监测</a></p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/33acf2d12c0e4d8062cd2964d75e36742b8ba9b776d179bb907efbf5041b5ae3.png" alt="图片来源：flips.finance" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">图片来源：flips.finance</figcaption></figure><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">建设</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://artiva.app/"><strong>Artiva</strong></a> — 一个无需编程即可构建NFT平台的网站</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dework.xyz/"><strong>Dework</strong></a> — Web3项目管理工具</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.drips.network/explore"><strong>Drips</strong></a> — 一个用于获取定期性的收入，它支持订阅和 NFT 会员资格</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/viamirror/status/1491863895220404232"><strong>Midwit</strong></a> — 为智能合约生成UI界面, 让你无需搭建网站即可进入Mint的界面</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/Anish-Agnihotri/MultiRaffle"><strong>MultiRaffle</strong></a> — 一个NFT抽奖发售形式</p></li></ul><h2 id="h-nft-daos" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">NFT DAOs</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.dao.new/"><strong>DAO.NEW</strong></a> — 一个定制的开源工具，通过成员持有其社区NFT来进行管理自治</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.withtally.com/"><strong>Tally</strong></a> — Tally 赋能用户自己的社区，增加了对NFT DAO支持的治理监控系统</p></li></ul><h2 id="h-defi-x-nfts" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DeFi x NFTs</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charged.fi/go"><strong>Charged Particles</strong></a> — 一个让人们可以将ERC-20或者NFT放入NFT中。例如，你可以将这些当作一个礼物NFT送给别人</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.nftx.io/introducing-nftx-inventory-staking/"><strong>NFTX Inventory Staking</strong></a> — 让人们通过质押NFT获取收益</p></li></ul><h2 id="h-and" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">探索 &amp; 社交</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://context.app/"><strong>Context</strong></a> — 追踪某人ETH钱包账户里NFT的变动工具</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://hyy.pe/"><strong>Hyype</strong></a> — 一个NFT社区</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.watchtower.cc/pulse"><strong>Watchtower</strong></a> — 一个发布NFT信息和NFT分析的网站</p></li></ul><h2 id="h-yuan" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">元宇宙</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://landworks.xyz/all"><strong>LandWorks</strong></a> — 一个提供虚拟土地借贷服务的NFT平台</p></li></ul><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">铸造</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://studio.manifold.xyz/"><strong>Manifold Studio</strong></a> — 为艺术家创建NFT铸造的智能合约</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/tryShowtime/status/1478140441455259648"><strong>Showtime</strong></a> — 一个在Matic上的提供无gas的NFT铸造平台</p></li></ul><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">稀有度分析</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rarity.guide/"><strong>Rarity Guide</strong></a> — 聚焦在Art Blocks NFTs上的NFT稀有度分析</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://raritysniper.com/"><strong>Rarity Sniper</strong></a> — NFT稀有度排行榜</p></li></ul><hr><p>原帖地址：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://metaversal.banklesshq.com/p/cool-nft-tools-q1-2022?s=r">https://metaversal.banklesshq.com/p/cool-nft-tools-q1-2022?s=r</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/0fb006bc7b56dc9433d67f29f85a5890461b7d1e5ff05e4ccf4e66a253200be4.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[DAO :一份初学者指南]]></title>
            <link>https://paragraph.com/@liangzmt/dao</link>
            <guid>5M3h110eAIL6J1XZIQvb</guid>
            <pubDate>Sat, 26 Mar 2022 08:59:56 GMT</pubDate>
            <description><![CDATA[什么是 DAO？去中心化自治组织 (Decentralized Autonomous Organization) 是围绕某一目标而组织在一起的一个团体，一种基于区块链的组织结构形式，即它通过智能合约保持运转的，围绕着一个共同目标，进行创造、获取并分配价值，其价值尺度可以是其自定义的ERC-20代币或者是ERC-721(NFT)形式的代币。DAO的组织结构形式使其成为Web3.0的不可或缺组成要素。DAO的优势DAO是透明的。DAO 的主要好处之一是它们比传统公司更透明，因为任何人都可以查看 DAO 中的所有行动和资金。这大大降低了腐败和审查的风险。上市公司必须提供独立审计的财务报表，但股东只能及时了解组织的财务状况。DAO 的资产负债表存在于区块链上，它在任何时候的每一笔交易都是完全透明的。DAO是去中心化的。在传统组织中，通常有一个层次结构：正式的董事会、高管或高层管理人员决定结构并有权做出改变。DAO组织没有管理它的董事长、也没有你的老板，即它没有典型的层次结构，这意味着它们不受个人或实体的管理，每个 DAO 的规则和治理都通过代码运行在区块链上的智能合约中，除非由 DAO ...]]></description>
            <content:encoded><![CDATA[<blockquote><h2 id="h-dao" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">什么是 DAO？</h2></blockquote><p>去中心化自治组织 (<strong>D</strong>ecentralized <strong>A</strong>utonomous <strong>O</strong>rganization) 是围绕某一目标而组织在一起的一个团体，一种基于区块链的<strong>组织结构形式</strong>，即它通过智能合约保持运转的，围绕着一个共同目标，进行创造、获取并分配价值，其价值尺度可以是其自定义的ERC-20代币或者是ERC-721(NFT)形式的代币。<strong>DAO的组织结构形式使其成为Web3.0的不可或缺组成要素。</strong></p><blockquote><h2 id="h-dao" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DAO的优势</h2></blockquote><ul><li><p>DAO是<strong>透明的</strong>。DAO 的主要好处之一是它们比传统公司更透明，因为任何人都可以查看 DAO 中的所有行动和资金。这大大降低了腐败和审查的风险。上市公司必须提供独立审计的财务报表，但股东只能及时了解组织的财务状况。DAO 的资产负债表存在于区块链上，它在任何时候的每一笔交易都是完全透明的。</p></li><li><p>DAO是<strong>去中心化的</strong>。在传统组织中，通常有一个层次结构：正式的董事会、高管或高层管理人员决定结构并有权做出改变。DAO组织没有管理它的董事长、也没有你的老板，即它没有典型的层次结构，这意味着它们不受个人或实体的管理，每个 DAO 的规则和治理都通过代码运行在区块链上的智能合约中，除非由 DAO 成员投票通过，否则无法更改。</p></li><li><p>DAO是<strong>平等的</strong>。每个 DAO 的成员可以共同对决策进行投票，而不是少数人拥有多数发言权，通常是在平等的基础上进行投票。</p></li></ul><blockquote><h2 id="h-dao" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DAO所面临的问题</h2></blockquote><ul><li><p>社区参与度。人是DAO动力的源泉。热心帮助的Discord 管理员，编写文档帮助新成员的志愿者，负责信息收集的核心成员。如果一个社区中许多有价值的工作没有引起人们的注意和回报，那么会渐渐失去对组织的兴趣，社区将慢慢演变成一个不活跃的群聊。</p></li><li><p>安全问题。DAO 的资产（ERC-721 和 ERC-20）存储在区块链上的智能合约中。通常，该合约是由受信任的社区成员控制的多重签名钱包。要提取资产，一般需要达到一半以上的人数，即多人使用他们的加密钱包签署交易以对其进行授权。这可以防止其中一位某一个人破坏社区。或者，如果一个签名者丢失了他们的私钥，DAO系统中应该有足够的应对措施，交易仍然可以被签名和提交。同时如果遇到合约安全方面的问题，扁平化结构比较分散并且运作缓慢，在黑客攻击漏洞的时候，往往需要半数以上的人同意才能够更新这个安全问题。又或者当社区有分歧时，很多可能形成大的分裂。</p></li><li><p>国库破产。当NFT价值剧烈波动时，如何确保DAO资金的价值？这是一个真正的风险。DAO 可以将 ETH 转换为 USDC 或 DAI 等稳定币，以防止 ETH 波动。最好DAO拥有链上现金流和有效的成本结构，使他们能够度过熊市。</p></li><li><p>如何正确分配利益。这与社区参与度息息相关，如果一个DAO只给核心成员而不给普通成员任何利益，他将会迅速衰败。但如果每个成员都享有利益，如何确定每个人的价值贡献？</p></li><li><p>绝对透明的问题。完全透明带来了一些严重的挑战，威胁到 DAO 作为生产性工具的发展，特别是在内部治理、人才获取和创新方面。例如如果没有匿名投票过程的程序，外部各方可以针对单个利益相关者来影响整个决策过程（行贿）。DAO 之间的隐私与透明度将存在于一个范围内，但如果没有将两者结合起来，某些组织的进展可能会停滞不前。</p></li></ul><blockquote><h2 id="h-daodao" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">我们如何使用DAO，DAO有哪些应用场景？</h2></blockquote><p>现在，DAO有许多的应用场景，<strong>例如投资、慈善、筹款、借贷、社区等</strong>，所有这些都没有都第三方参与，它们通过区块链完美的记录在链上。</p><p>例如，一个慈善DAO可以接受来自世界各地的人们的捐赠，成员们可以决定如何使用捐赠；</p><p>一个投资DAO的成员们可以决定如何使用资金,一个社区DAO可以让成员们将信息收集起来高效处理…</p><p>更多的关于DAO组织详细内容我将在以后的章节介绍中放出，这不是我们今天讨论的重点…</p><blockquote><h2 id="h-dao" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">如何加入DAO？</h2></blockquote><p>现在，去中心化组织已经在很多地方出现，他们多数以社区的形式来组织。与公司相比，DAO 通常有全球化、低门槛的特点。加入一家公司，你可能要多年的工作经验，过硬的学历，而且还要有良好的人际交往….</p><p>社区 DAO 是线上社区的下一个演变，最好的方式是积极贡献与学习。</p><p>以下是我会对想要加入DAO组织的一些建议：</p><ul><li><p>加入 3 到 5 个 Discord 服务器，感受不同的氛围</p></li><li><p>在频道中介绍自己并阅读其他介绍以了解社区中的成员</p></li><li><p>找到与您最相关的两三个频道，常提问，回答问题，相互鼓励。</p></li><li><p>了解社区的宗旨以及他们如何做出决策</p></li><li><p>参加语音聊天，了解他们的想法</p></li><li><p>之后选择你最喜欢的一两个社区 DAO，然后*尽心尽力帮助，*关注它们</p></li><li><p>现在是时候参与一个项目，担任重要角色了！</p></li><li><p>尝试使用 Community DAO 的代币获得奖励，以调整激励并真正成为社区的所有者</p></li><li><p>日常反思，再重复以上的步骤</p></li></ul><p>DAO对人才的需求绝对远远超过供应，如果您有兴趣，请不要犹豫，现在就可以开始。</p><p>一些可以参考的Discord社区:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/2TqgbMw73r">https://discord.gg/2TqgbMw73r</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/zpEG6EpES5">https://discord.gg/zpEG6EpES5</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/AUQQk62fMS">https://discord.gg/AUQQk62fMS</a></p><blockquote><h2 id="h-dao" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DAO还有哪些？</h2></blockquote><p>关于这个问题，我会说还有很多。例如DAO运作的工具有哪些、DAO是如何演变的、什么是DAO国家、具体的DAO分类有哪些？</p><p>这些都是我将在下一个篇章阐述的。同时，DAO的一些问题我们也会有所接触：</p><p>社区DAO的进入资格应该是具有可出售的，还是非营利性的？</p><p>成员是否可以投票其他成员的去留？</p><p>区块链应该是工作量证明、股权证明又或是基于声誉？</p><p>DAO 应该尝试使用的其他货币，还是应该只通过发行自己的内部代币来进行奖励？</p><p>这些都是难题，我们才刚刚开始触及它们的表面。</p><p>参考文档：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.ethereum.org/2014/05/06/daos-dacs-das-and-more-an-incomplete-terminology-guide/">https://blog.ethereum.org/2014/05/06/daos-dacs-das-and-more-an-incomplete-terminology-guide/</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://p.mirror.xyz/cVN3KOss0uqpZwxHQKtC4Syvn1RfXaxofFKHJuKLWS4">https://p.mirror.xyz/cVN3KOss0uqpZwxHQKtC4Syvn1RfXaxofFKHJuKLWS4</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/530bcf14b4d2be40fe40ba1f7674a446ee4d7c140f696f5ebb8a34fa03646a25.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[为什么Web3.0很重要?]]></title>
            <link>https://paragraph.com/@liangzmt/web3-0</link>
            <guid>m0mbpVWNuvOxgaVPaLuD</guid>
            <pubDate>Wed, 23 Mar 2022 10:03:04 GMT</pubDate>
            <description><![CDATA[互联网的发展历史Web1 (1990-2005) 是一个关于去中心化和社区管理的开放社区，大多数有价值的信息积累在网络的浏览器上 — 此时大多是用户分享资讯。 Web2 (2005-2020) 是关于由公司运营的孤立、集中的服务。 大部分价值都归于Google、Apple、腾讯、阿里等少数公司。 而现在，我们现在处于 web3 时代的开始，它将 web1 的去中心化、社区管理的精神与 web2 的先进、现代功能集于一身。 Web3属于建设者和用户，他们的贡献由代币决定。同时Web3.0有着到来的三个前提： 1、博客技术为代表，围绕网民互动及个性体验的互联网应用技术的完善和发展。 2、虚拟货币的普及和普遍，以及虚拟货币的兑换成为现实。 3、大家对网络财富的认同，以及网络财务安全的解决方案。为什么 web3 很重要首先，让我们看看中心化平台的问题。 中心化平台具有一种可预测的生命周期。起初，他们尽其所能招募用户和第三方补充，如创作者、开发者和企业。 他们这样做是为了加强他们的网络效应。随着平台按照着S型曲线上升，同时对用户和第三方的影响力也在稳步增长。S型曲线当他们达到 S 曲线的顶...]]></description>
            <content:encoded><![CDATA[<h3 id="h-" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">互联网的发展历史</h3><p>Web1 (1990-2005) 是一个关于去中心化和社区管理的开放社区，大多数有价值的信息积累在网络的浏览器上 — 此时大多是用户分享资讯。</p><p>Web2 (2005-2020) 是关于由公司运营的孤立、集中的服务。 大部分价值都归于Google、Apple、腾讯、阿里等少数公司。</p><p>而现在，我们现在处于 web3 时代的开始，它将 web1 的去中心化、社区管理的精神与 web2 的先进、现代功能集于一身。</p><p>Web3属于建设者和用户，他们的贡献由代币决定。同时Web3.0有着到来的三个前提：</p><p>1、博客技术为代表，围绕网民互动及个性体验的互联网应用技术的完善和发展。</p><p>2、虚拟货币的普及和普遍，以及虚拟货币的兑换成为现实。</p><p>3、大家对网络财富的认同，以及网络财务安全的解决方案。</p><h3 id="h-web3" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">为什么 web3 很重要</h3><p>首先，让我们看看中心化平台的问题。</p><p>中心化平台具有一种可预测的生命周期。起初，他们尽其所能招募用户和第三方补充，如创作者、开发者和企业。</p><p>他们这样做是为了加强他们的<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://wiki.mbalib.com/wiki/%E7%BD%91%E7%BB%9C%E6%95%88%E5%BA%94">网络效应</a>。随着平台按照着S型曲线上升，同时对用户和第三方的影响力也在稳步增长。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/8e84c446d39d6700fa0c77590d55a65889e10acd70983dc793200f795b042bdf.png" alt="S型曲线" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">S型曲线</figcaption></figure><p>当他们达到 S 曲线的顶部时，他们与网络参与者的关系从正和变为零和。要想继续增长，需要从用户那里提取数据并与（前）合作伙伴竞争。</p><p>这方面的著名例子是微软与网景、谷歌与 Yelp、Facebook 与 Zynga、Twitter 与第三方客户以及 Epic 与苹果。</p><p>对于第三方来说，从合作到竞争的转变感觉就像一个诱导转向的过程。随着时间的推移，最优秀的企业家、开发商和投资者已经学会了不在中心化平台上建设。</p><p>这无疑是扼杀了人们的创新。</p><p>现在让我们谈谈 web3。在 web3 中，所有权和控制权是去中心化的。用户和建设者可以通过拥有非同质化代币 (NFT) 和同质化代币来拥有互联网服务。</p><p>代币赋予了用户财产权：获取部分互联网服务的能力。</p><p>NFT 使用户真正能够拥有东西，这些东西可以是艺术品、照片、代码、音乐、文本、游戏物品、凭证、治理权、访问通行证，以及人们接下来梦想的任何其他东西。</p><p>NFT 存在于以太坊等区块链之上。以太坊是一种去中心化的全球计算机，被使用ETH的用户拥有和操作。</p><p>区块链是任何人都可以访问但没有一个人完全拥有的特殊计算机。</p><p>以太坊由同质化代币 ETH 提供支持，同时ETH 代币是用于激励那些为ETH网络做出贡献的人(即矿工)。</p><p>ETH 也是系统用于交易的原生货币，例如 NFT 购买。</p><p>用户可以通过多种方式获得同质化代币和非同质化代币。您可以购买它们，但同时也有赚取它们的方法。</p><p>Uniswap 著名的追溯性协议，向早期用户空投了 15% 的治理代币。像这样的社区赠款在 web3 中已经很常见，作为建立美好愿景和激励方式。</p><p>您还可以通过创作和创业活动赚取代币。例如，人们每天通过出售 NFT 赚取大约 1 亿美元的 ETH。</p><p>代币使网络参与者为共同的目标而共同努力——网络的发展和代币的升值(the growth of the network and the appreciation of the token.)。</p><p>这解决了中心化网络的核心问题，即价值由一家公司积累，然后最终要公司与自己的用户和合作伙伴竞争。</p><p>在 web3 之前，用户和建设者必须在 web1 的有限功能下合作或 web2 的企业中心化管理之间做出选择。</p><p>Web3 提供了一种新方式，它结合了以前时代的最佳方面。而现在，是这场运动的早期阶段，也是参与其中的好时机。</p><p>原文：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://future.a16z.com/why-web3-matters/">https://future.a16z.com/why-web3-matters/</a></p>]]></content:encoded>
            <author>liangzmt@newsletter.paragraph.com (Liangzmt)</author>
        </item>
    </channel>
</rss>