<?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>Mike653</title>
        <link>https://paragraph.com/@mike653</link>
        <description>个人博客，比较随意，想到哪里写到哪里</description>
        <lastBuildDate>Thu, 21 May 2026 10:49:40 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Mike653</title>
            <url>https://storage.googleapis.com/papyrus_images/dddfa2b266f52bd367f33eb889a67cfbfe870abc8758650d2ed0c6befba0563f.jpg</url>
            <link>https://paragraph.com/@mike653</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Dune链上查询-合约交互唯一地址]]></title>
            <link>https://paragraph.com/@mike653/dune-2</link>
            <guid>fzCo1peEst5TgZx4IBFR</guid>
            <pubDate>Fri, 04 Oct 2024 12:48:48 GMT</pubDate>
            <description><![CDATA[目标： 查询与某个智能合约进行交互的唯一地址（去重） 标准： 查询时间单位，以周（week）为单位 语句： 用到的SQL语句-----DISTINCT 独特的查询语句查询结果生成的柱状图链上分析 | 量化 | 二级市场 推特：比特火锅@BitHot515 https://web.telegram.org/k/]]></description>
            <content:encoded><![CDATA[<p>目标：</p><p>查询与某个智能合约进行交互的唯一地址（去重）</p><p>标准：</p><p>查询时间单位，以周（week）为单位</p><p>语句：</p><p>用到的SQL语句-----DISTINCT 独特的</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/330266dcbfbc0e25732bfe2b86c05a425bd0d753538a7d8d20c608f145bf6703.png" alt="查询语句" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">查询语句</figcaption></figure><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/eba4019ad4fc93f466d36b9577adc7920011cb8cdeea97e9d69899bba5a83b49.png" alt="查询结果" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">查询结果</figcaption></figure><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/622ae335dc1953386f370fef2ab8b1dc35a5904baf79c7424c305520cdcb4fd5.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><p>推特：比特火锅@BitHot515</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://web.telegram.org/k/">https://web.telegram.org/k/</a></p>]]></content:encoded>
            <author>mike653@newsletter.paragraph.com (Mike653)</author>
        </item>
        <item>
            <title><![CDATA[Dune链上查询-根据合约地址查询交易笔数]]></title>
            <link>https://paragraph.com/@mike653/dune</link>
            <guid>2m8ghfccXhfeUPJ8P3mi</guid>
            <pubDate>Fri, 04 Oct 2024 01:35:06 GMT</pubDate>
            <description><![CDATA[目标： 根据智能合约地址查询某个合约发生的交易笔数 结果： 总交易笔数 延展： 按照天/月计算 按照时间段（区块链时间戳） 生成图表，柱状图bar chart, area chart 等 SQL语句语法 基本结构： 从某表格中，按照某个标准，查询某个字段 SELECT FROM -----从某个表格（table）查询 某个字段 SELECT AS ----- 给计数结果起一个描述性的别名 WHERE -----按照某个标准过滤，如日期大于小于，如智能合约的地址等于 GROUP BY -------将具有相同值的行分组到汇总行中,比如将1天内所有的交易笔数汇总，返回1个行结果，比如某一天一共交易多少笔 ORDER BY --------将结果进行排序，升序或降序 SQL代码：代码查询结果：查询结果数据汇总查询结果生成柱状图链上分析 | 量化 | 二级市场 推特：@BitHot515 Telegram： https://t.me/c/1725390658/1]]></description>
            <content:encoded><![CDATA[<p>目标：</p><p>根据智能合约地址查询某个合约发生的交易笔数</p><p>结果：</p><p>总交易笔数</p><p>延展：</p><p>     按照天/月计算</p><p>     按照时间段（区块链时间戳）</p><p>     生成图表，柱状图bar chart, area chart 等</p><p>SQL语句语法</p><p>     基本结构：</p><p>          从某表格中，按照某个标准，查询某个字段</p><p>     SELECT FROM -----从某个表格（table）查询 某个字段</p><p>     SELECT AS ----- 给计数结果起一个描述性的别名</p><p>     WHERE -----按照某个标准过滤，如日期大于小于，如智能合约的地址等于</p><p>     GROUP BY -------将具有相同值的行分组到汇总行中,比如将1天内所有的交易笔数汇总，返回1个行结果，比如某一天一共交易多少笔</p><p>     ORDER BY --------将结果进行排序，升序或降序</p><p>SQL代码：</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/aa809af616271e834984f429eb9715a1cc53885038afbed93c4c0274890278fa.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/6e777cb1557cc28c293810c7c06894b6ecebe36cca47a9a56e38939b1e43bc05.jpg" alt="查询结果数据汇总" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">查询结果数据汇总</figcaption></figure><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e537e6f4383142adcaebb438803fcd40b5f9323e93c7c7d9ddd2466a793b14f4.jpg" 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><p>推特：@BitHot515</p><p>Telegram：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/c/1725390658/1">https://t.me/c/1725390658/1</a></p>]]></content:encoded>
            <author>mike653@newsletter.paragraph.com (Mike653)</author>
        </item>
        <item>
            <title><![CDATA[Dune Analytics 入门笔记]]></title>
            <link>https://paragraph.com/@mike653/dune-analytics</link>
            <guid>N1DDdtiWs7CKShNv612s</guid>
            <pubDate>Tue, 10 Sep 2024 10:13:42 GMT</pubDate>
            <description><![CDATA[声明：所有内容为个人理解，不保障严谨性和正确性，关于Dune的解释，以Dune官方发布文档为准。 这篇文章包括，什么是Dune，Dune可以做什么，个人根据入门教程的体会 1.什么是Dune Analytics Dune是一个区块链数据分析工具，可以把区块链链上原始数据（raw data）按照使用者需要提取整理处理成需要的表格table，图表chart等样式，方便创建者和其他人查询使用分析。 2.Dune可以做什么 （下面的截图为dune社区用户@hildobby根据链上数据做出的Bitcoin ETF统计图表，如流入流出数据，不同的资管公司持仓的比例，ETF占当前比特币供应量的比例等） 可以统计 比如某天，某个地址，某个公链（dune支持的）上的交易信息，像交易笔数，交易的代币数量，交易金额（美元计价）。 可以展示 用趋势线，饼状图等样式直观一目了然去展示链上的数据和趋势百分比这样的信息。 可以创建和分享 这是一个官方和用户都可以创建、分享、查看图表的平台。 3.根据登链社区翻译的dune入门教程的学习体会 这篇学习dune的教程笔记来自登链社区翻译的初学者指南（链接如下） h...]]></description>
            <content:encoded><![CDATA[<p>声明：所有内容为个人理解，不保障严谨性和正确性，关于Dune的解释，以Dune官方发布文档为准。</p><p>这篇文章包括，什么是Dune，Dune可以做什么，个人根据入门教程的体会</p><p>1.什么是Dune Analytics</p><p>     Dune是一个区块链数据分析工具，可以把区块链链上原始数据（raw data）按照使用者需要提取整理处理成需要的表格table，图表chart等样式，方便创建者和其他人查询使用分析。</p><p>2.Dune可以做什么</p><p>（下面的截图为dune社区用户@hildobby根据链上数据做出的Bitcoin ETF统计图表，如流入流出数据，不同的资管公司持仓的比例，ETF占当前比特币供应量的比例等）</p><p>     可以统计</p><p>          比如某天，某个地址，某个公链（dune支持的）上的交易信息，像交易笔数，交易的代币数量，交易金额（美元计价）。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/319425dbc3a7eeda65dd7de8e33ad0b4f6c2d17a720dbc610329d0d5ad267eac.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/5a416e799472a4a50ff9e88dab53d632c023c2693a025d3e94a3046ef74d118d.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>          用趋势线，饼状图等样式直观一目了然去展示链上的数据和趋势百分比这样的信息。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/4f07f097a6e4d1d88084d090ff8035d0b1cb507c90931ef7af875e4d6839c7dd.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/61e9406f8675599d025f01edb43fded56fc3b5bb81574126b325221bbd68fa04.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>          这是一个官方和用户都可以创建、分享、查看图表的平台。</p><br><p>3.根据登链社区翻译的dune入门教程的学习体会</p><p>这篇学习dune的教程笔记来自登链社区翻译的初学者指南（链接如下）</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://learnblockchain.cn/article/4808#%E6%9F%A5%E8%AF%A22b:%20%E4%BB%A5%E8%B4%AD%E4%B9%B0%E6%97%B6ETH%E4%BB%B7%E5%80%BC%E8%AE%A1%E7%AE%97%E7%9A%84%E7%BE%8E%E5%85%83%E7%AD%B9%E9%9B%86%E7%9A%84%E8%B5%84%E9%87%91">https://learnblockchain.cn/article/4808#%E6%9F%A5%E8%AF%A22b:%20%E4%BB%A5%E8%B4%AD%E4%B9%B0%E6%97%B6ETH%E4%BB%B7%E5%80%BC%E8%AE%A1%E7%AE%97%E7%9A%84%E7%BE%8E%E5%85%83%E7%AD%B9%E9%9B%86%E7%9A%84%E8%B5%84%E9%87%91</a></p><p>这篇教程用的是案例教学的方式，教程的目录很清晰，通过循序渐进的查询一个NFT智能合约，逐渐掌握dune的使用。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3232322bee2c57fb0ef7846b51b86f7bac017c033ab86fd3555667a9366948a0.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>，每一步都有详细的截图提示、SQL查询语句，保姆级教程，初学者上手没有太大压力。</p><p>我在的过程中还是遇到一些挑战，需要注意的是</p><p>1.这个教程发布的时间在22年9月28日，dune的用户菜单相对那个时间之后做了更新迭代，有一些菜单可能找不到或者改变到新的菜单里，不过不太影响学习。</p><p>2.案例中给出的一些查询语句可能不能跑通“run”，可能是因为语法规则有变化，按照给出的报错信息做修改，或者借助chatGPT这样的AI辅助排错还是可以解决。</p><p>3.dune的使用有不同级别的收费方案，free，plus，premium，学习上手用free足够，缺点是相对慢一些，不能做特别大的数据的搜索，比如教程里的案例做了搜索时间范围的限制。</p><p>web3学习研究：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/AVVnJhUCfH">https://discord.gg/AVVnJhUCfH</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/c/1725390658/1">https://t.me/c/1725390658/1</a></p>]]></content:encoded>
            <author>mike653@newsletter.paragraph.com (Mike653)</author>
        </item>
        <item>
            <title><![CDATA[Share my thoughts in a  decentralized way]]></title>
            <link>https://paragraph.com/@mike653/share-my-thoughts-in-a-decentralized-way</link>
            <guid>TnHqN5dyrb5Ow25UwhGF</guid>
            <pubDate>Tue, 08 Mar 2022 02:31:13 GMT</pubDate>
            <description><![CDATA[Hi, there: This is mike here. In 2016, the first time I heard about bitcoin and blockchain, then dived into this exciting journey. Since 2021 I begin to learn blockchain development . Using solidity to develop smart contract and use brownie ,this is a framework based on python,so I am learning python also. I will share my thoughts here and nice to meet you !]]></description>
            <content:encoded><![CDATA[<p>Hi, there:</p><p>This is mike here.</p><p>In 2016, the first time I heard about bitcoin and blockchain, then dived into this exciting journey.</p><p>Since 2021 I begin to learn blockchain development .</p><p>Using solidity to develop smart contract and use brownie ,this is a framework based on python,so I am learning python also.</p><p>I will share my thoughts here and nice to meet you !</p>]]></content:encoded>
            <author>mike653@newsletter.paragraph.com (Mike653)</author>
        </item>
    </channel>
</rss>