<?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>TinyHill</title>
        <link>https://paragraph.com/@tinyhill</link>
        <description>undefined</description>
        <lastBuildDate>Sun, 17 May 2026 11:32:01 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>TinyHill</title>
            <url>https://storage.googleapis.com/papyrus_images/723084f2edaab6c77d6bc07598c853a142e9af8271a350f5a51b9aec0a47d842.png</url>
            <link>https://paragraph.com/@tinyhill</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[关于ENU网络现状]]></title>
            <link>https://paragraph.com/@tinyhill/enu</link>
            <guid>v38mFD5Yk8s8oxCc784Y</guid>
            <pubDate>Tue, 29 Mar 2022 14:29:05 GMT</pubDate>
            <description><![CDATA[最新好像有个enu社区的nft项目，大家可以自己去搜索。 很多人好奇enu还活着么，答案是，还活着。 我简单说一下现在还有的基础设施：交易所aex.com钱包麦子钱包，似乎只有安卓版还能用，感谢麦子！ https://mathwallet.org/enumivo-wallet/cn/ 官方钱包，enugui，需要更换api：http://enu.blockeden.cn https://github.com/enumivo/enugui/releases/tag/0.7.4浏览器https://enumivo.world/最后我自己都不知道，为什么还要维护着么一个归零币的节点和浏览器，只是如果我关掉节点，那这个链就死了，我不知道该怎么办，大家说呢？]]></description>
            <content:encoded><![CDATA[<p>最新好像有个enu社区的nft项目，大家可以自己去搜索。</p><p>很多人好奇enu还活着么，答案是，还活着。</p><p>我简单说一下现在还有的基础设施：</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">交易所</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.aex.com/">aex.com</a></p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">钱包</h2><p>麦子钱包，似乎只有安卓版还能用，感谢麦子！</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mathwallet.org/enumivo-wallet/cn/">https://mathwallet.org/enumivo-wallet/cn/</a></p><p>官方钱包，enugui，需要更换api：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://enu.blockeden.cn">http://enu.blockeden.cn</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/enumivo/enugui/releases/tag/0.7.4">https://github.com/enumivo/enugui/releases/tag/0.7.4</a></p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">浏览器</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://enumivo.world/">https://enumivo.world/</a></p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">最后</h2><p>我自己都不知道，为什么还要维护着么一个归零币的节点和浏览器，只是如果我关掉节点，那这个链就死了，我不知道该怎么办，大家说呢？</p>]]></content:encoded>
            <author>tinyhill@newsletter.paragraph.com (TinyHill)</author>
        </item>
        <item>
            <title><![CDATA[我被黑了]]></title>
            <link>https://paragraph.com/@tinyhill/uC0xs0lcvdTKjlZAxpMC</link>
            <guid>uC0xs0lcvdTKjlZAxpMC</guid>
            <pubDate>Sat, 06 Nov 2021 02:50:01 GMT</pubDate>
            <description><![CDATA[今天我在heco上的套利合约被人黑了，损失大概是53000美金。 合约的漏洞大致是：合约中有approve 给router的操作router是输入传的黑客传入自己的合约作为router，但是实际在他的router.swap的逻辑中不做任何操作，所以approve给他的金额没有消费掉给我转小额，通过我的余额检查从我的逻辑中退出后，因为approve给他的限额没有消费掉，现在可以从我的合约里直接转钱走了其实，合约的检查可以更仔细，但是之前考虑到合约不对外且不开源，为了方便，没有加一下验证。这次是真的被迫涨记性了 通过这次的被盗，至少有一下几点心得：合约不开源是可以反编译的，solidity反编译的可读性相对较高套利合约，是容易被人盯上的sender和tx.origin的检查不能少逻辑结束的时候，除了余额检查，应该取消所有approve哎]]></description>
            <content:encoded><![CDATA[<p>今天我在heco上的套利合约被人黑了，损失大概是53000美金。</p><p>合约的漏洞大致是：</p><ul><li><p>合约中有approve 给router的操作</p></li><li><p>router是输入传的</p></li><li><p>黑客传入自己的合约作为router，但是实际在他的router.swap的逻辑中不做任何操作，所以approve给他的金额没有消费掉</p></li><li><p>给我转小额，通过我的余额检查</p></li><li><p>从我的逻辑中退出后，因为approve给他的限额没有消费掉，现在可以从我的合约里直接转钱走了</p></li></ul><p>其实，合约的检查可以更仔细，但是之前考虑到合约不对外且不开源，为了方便，没有加一下验证。这次是真的被迫涨记性了</p><p>通过这次的被盗，至少有一下几点心得：</p><ul><li><p>合约不开源是可以反编译的，solidity反编译的可读性相对较高</p></li><li><p>套利合约，是容易被人盯上的</p></li><li><p>sender和tx.origin的检查不能少</p></li><li><p>逻辑结束的时候，除了余额检查，应该取消所有approve</p></li></ul><p>哎</p>]]></content:encoded>
            <author>tinyhill@newsletter.paragraph.com (TinyHill)</author>
        </item>
        <item>
            <title><![CDATA[焦虑与自我]]></title>
            <link>https://paragraph.com/@tinyhill/OcmNZI3gYrBXlYaduana</link>
            <guid>OcmNZI3gYrBXlYaduana</guid>
            <pubDate>Sun, 10 Oct 2021 02:58:30 GMT</pubDate>
            <description><![CDATA[今天看到一段内容，人的焦虑与自我意识的形成有很大的关系。焦虑往往来自于对比，而每个人都是独特的。确实是这样。 今天是农历的生日，我自己都没有记得，是爸妈发来了祝福。 在这个焦虑无处不在的行业，做一天自己，不焦虑。 123]]></description>
            <content:encoded><![CDATA[<p>今天看到一段内容，人的焦虑与自我意识的形成有很大的关系。焦虑往往来自于对比，而每个人都是独特的。确实是这样。</p><p>今天是农历的生日，我自己都没有记得，是爸妈发来了祝福。</p><p>在这个焦虑无处不在的行业，做一天自己，不焦虑。</p><p>123</p>]]></content:encoded>
            <author>tinyhill@newsletter.paragraph.com (TinyHill)</author>
        </item>
    </channel>
</rss>