<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>shooter (知推机（知识推土机）)</title>
    <link>https://soldev.cn/shooter</link>
    <description>x.com/liushooter     solana 技术爱好者  资浅（尝辄止）前端</description>
    <language>en-us</language>
    <item>
      <title>Solana 网络节点通信 —— Gossip 协议</title>
      <description>&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/17066" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/17066&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/17067" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/17067&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Fri, 20 Jun 2025 11:01:18 +0800</pubDate>
      <link>https://soldev.cn/topics/190</link>
      <guid>https://soldev.cn/topics/190</guid>
    </item>
    <item>
      <title>Solana 程序执行底层原理：从 Rust 代码到 SBF 字节码</title>
      <description>&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/16821" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/16821&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Thu, 12 Jun 2025 12:19:35 +0800</pubDate>
      <link>https://soldev.cn/topics/187</link>
      <guid>https://soldev.cn/topics/187</guid>
    </item>
    <item>
      <title>Alpenglow——Solana 新节点共识机制</title>
      <description>&lt;p&gt;“Alpenglow”的名称源自德语“Alpenglühen”，意为“阿尔卑斯山的霞光”，指日出或日落时分山峰呈现的夺目光影，也暗合该协议的起源来自瑞士&lt;/p&gt;

&lt;p&gt;白皮书 &lt;a href="https://drive.google.com/file/d/1y_7ddr8oNOknTQYHzXeeMD2ProQ0WjMs/view" rel="nofollow" target="_blank"&gt;https://drive.google.com/file/d/1y_7ddr8oNOknTQYHzXeeMD2ProQ0WjMs/view&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/15643" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/15643&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/15647" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/15647&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Mon, 02 Jun 2025 20:16:27 +0800</pubDate>
      <link>https://soldev.cn/topics/183</link>
      <guid>https://soldev.cn/topics/183</guid>
    </item>
    <item>
      <title>Nonce account</title>
      <description>&lt;p&gt;持久性随机数（durable nonces）是一种便捷的工具，可以用来避免交易过期。&lt;/p&gt;

&lt;p&gt;随机数是在一次使用中用到的数字。在 Solana 的上下文中，随机数是用来防止重放攻击的数字。重放攻击是指交易被拦截后重新发送到网络的情况。&lt;/p&gt;

&lt;p&gt;典型的 Solana 交易在交易数据中包含一个最近的区块哈希，以便运行时可以验证交易的唯一性。为了限制运行时需要双重检查的历史数量，Solana 只查看最后 150 个区块。这意味着如果在 150 个区块内发送了两个相同的交易，第二个交易将失败。这也意味着过时的交易（超过 150 个区块）将会失败。&lt;/p&gt;

&lt;p&gt;&lt;a href="https://solana.com/zh/developers/guides/advanced/introduction-to-durable-nonces" rel="nofollow" target="_blank"&gt;https://solana.com/zh/developers/guides/advanced/introduction-to-durable-nonces&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/11207" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/11207&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.quicknode.com/guides/solana-development/transactions/how-to-send-offline-tx" rel="nofollow" target="_blank"&gt;https://www.quicknode.com/guides/solana-development/transactions/how-to-send-offline-tx&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dune.com/queries/4336294" rel="nofollow" target="_blank"&gt;https://dune.com/queries/4336294&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Tue, 27 May 2025 14:40:19 +0800</pubDate>
      <link>https://soldev.cn/topics/180</link>
      <guid>https://soldev.cn/topics/180</guid>
    </item>
    <item>
      <title>litesvm</title>
      <description>&lt;p&gt;&lt;a href="https://github.com/LiteSVM/litesvm" rel="nofollow" target="_blank" title=""&gt;Litesvm&lt;/a&gt; 是一个快速轻量级的库，专为测试 Solana 程序而设计。它创建了一个针对开发人员优化的进程内 Solana VM，与 solana-program-test 和 solana-test-validator 等替代方案相比，显着加快了测试和编译过程。它还具有符合人体工程学的 API，具有合理的默认值和广泛的可配置性。&lt;/p&gt;

&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/15133#Litesvm" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/15133#Litesvm&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Wed, 14 May 2025 11:16:50 +0800</pubDate>
      <link>https://soldev.cn/topics/176</link>
      <guid>https://soldev.cn/topics/176</guid>
    </item>
    <item>
      <title>surfpool 利器</title>
      <description>&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/15294" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/15294&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/14946" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/14946&lt;/a&gt;&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;&lt;a href="https://cloud.txtx.run/" rel="nofollow" target="_blank"&gt;https://cloud.txtx.run/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://127.0.0.1:8900/gpl/console" rel="nofollow" target="_blank"&gt;http://127.0.0.1:8900/gpl/console&lt;/a&gt;&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/playlist?list=PL0FMgRjJMRzO1FdunpMS-aUS4GNkgyr3T" rel="nofollow" target="_blank"&gt;https://www.youtube.com/playlist?list=PL0FMgRjJMRzO1FdunpMS-aUS4GNkgyr3T&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="/uploads/photo/shooter/0fda5aad-1001-4382-b344-475d49f9483c.png!large" title="" alt=""&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Tue, 13 May 2025 16:50:02 +0800</pubDate>
      <link>https://soldev.cn/topics/175</link>
      <guid>https://soldev.cn/topics/175</guid>
    </item>
    <item>
      <title>Gill：现代 Solana JavaScript 客户端库</title>
      <description>&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/15101" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/15101&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Tue, 29 Apr 2025 17:49:20 +0800</pubDate>
      <link>https://soldev.cn/topics/172</link>
      <guid>https://soldev.cn/topics/172</guid>
    </item>
    <item>
      <title>详解 Solana eBPF 虚拟机</title>
      <description>&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/12126" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/12126&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Wed, 26 Mar 2025 16:21:00 +0800</pubDate>
      <link>https://soldev.cn/topics/160</link>
      <guid>https://soldev.cn/topics/160</guid>
    </item>
    <item>
      <title>用 Lighthouse 断言保护 Solana 交易</title>
      <description>&lt;p&gt;&lt;a href="https://learnblockchain.cn/article/11959" rel="nofollow" target="_blank"&gt;https://learnblockchain.cn/article/11959&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Thu, 20 Mar 2025 18:23:35 +0800</pubDate>
      <link>https://soldev.cn/topics/158</link>
      <guid>https://soldev.cn/topics/158</guid>
    </item>
    <item>
      <title>提问的智慧</title>
      <description>&lt;p&gt;&lt;a href="https://ruby-china.org/topics/24325" rel="nofollow" target="_blank"&gt;https://ruby-china.org/topics/24325&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Thu, 27 Feb 2025 15:25:01 +0800</pubDate>
      <link>https://soldev.cn/topics/152</link>
      <guid>https://soldev.cn/topics/152</guid>
    </item>
    <item>
      <title>solana 合约框架 pinocchio</title>
      <description>&lt;p&gt;&lt;a href="https://github.com/anza-xyz/pinocchio" rel="nofollow" target="_blank"&gt;https://github.com/anza-xyz/pinocchio&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Mon, 24 Feb 2025 14:54:28 +0800</pubDate>
      <link>https://soldev.cn/topics/148</link>
      <guid>https://soldev.cn/topics/148</guid>
    </item>
    <item>
      <title>Streamflow：一個全面的代幣生命周期管理平台</title>
      <description>&lt;p&gt;&lt;a href="https://streamflow.finance/" rel="nofollow" target="_blank"&gt;https://streamflow.finance/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.gate.io/zh-tw/blog/5609/Streamflow-A-Comprehensive-Token-Lifecycle-Management-Platform" rel="nofollow" target="_blank"&gt;https://www.gate.io/zh-tw/blog/5609/Streamflow-A-Comprehensive-Token-Lifecycle-Management-Platform&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Tue, 11 Feb 2025 16:28:39 +0800</pubDate>
      <link>https://soldev.cn/topics/143</link>
      <guid>https://soldev.cn/topics/143</guid>
    </item>
    <item>
      <title>Jupiter API</title>
      <description>&lt;p&gt;&lt;a href="https://www.quicknode.com/guides/solana-development/3rd-party-integrations/jupiter-api-trading-bot" rel="nofollow" target="_blank"&gt;https://www.quicknode.com/guides/solana-development/3rd-party-integrations/jupiter-api-trading-bot&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Thu, 16 Jan 2025 22:04:16 +0800</pubDate>
      <link>https://soldev.cn/topics/136</link>
      <guid>https://soldev.cn/topics/136</guid>
    </item>
    <item>
      <title>pump-fun-sniper-bot</title>
      <description>&lt;p&gt;&lt;a href="https://github.com/1fge/pump-fun-sniper-bot" rel="nofollow" target="_blank"&gt;https://github.com/1fge/pump-fun-sniper-bot&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.mikem.codes/if-you-aint-first-youre-last-2/" rel="nofollow" target="_blank"&gt;https://www.mikem.codes/if-you-aint-first-youre-last-2/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.mikem.codes/if-you-aint-first-youre-last-reverse-engineering-a-leading-pump-fun-sniper-bot-part-2/" rel="nofollow" target="_blank"&gt;https://www.mikem.codes/if-you-aint-first-youre-last-reverse-engineering-a-leading-pump-fun-sniper-bot-part-2/&lt;/a&gt; &lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Fri, 06 Dec 2024 18:44:10 +0800</pubDate>
      <link>https://soldev.cn/topics/114</link>
      <guid>https://soldev.cn/topics/114</guid>
    </item>
    <item>
      <title>群友踩坑实录</title>
      <description>&lt;p&gt;&lt;img src="/uploads/photo/shooter/741b1257-094f-4d4a-a471-08dd728e2b84.jpg!large" title="" alt=""&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Mon, 25 Nov 2024 14:50:03 +0800</pubDate>
      <link>https://soldev.cn/topics/106</link>
      <guid>https://soldev.cn/topics/106</guid>
    </item>
    <item>
      <title>solana cli </title>
      <description>&lt;h2 id="solana-genesis"&gt;solana-genesis&lt;/h2&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;solana-genesis
&lt;/code&gt;&lt;/pre&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;solana program extend &amp;lt;PROGRAM_ID&amp;gt; &amp;lt;MORE_BYTES&amp;gt;
&lt;span class="c"&gt;# https://stackoverflow.com/a/77950613&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;solana leader-schedule &lt;span class="nt"&gt;-u&lt;/span&gt; m
&lt;span class="c"&gt;# 查看 leader&lt;/span&gt;

338254975       JupRhwjrF5fAcs6dFhLH59r3TJFvbcyLP2NRM8UGH9H
338254979       EkvdKhULbMFqjKBKotAzGi3kwMvMpYNDKJXXQQmi6C1f
338255996       ACvL73V4GNnxPVfZ7K89jCrYurLyzpEuE9qirjvh2Xmi
&lt;/code&gt;&lt;/pre&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;solana transaction-count &lt;span class="nt"&gt;-u&lt;/span&gt; m &lt;span class="c"&gt;# m mainet&lt;/span&gt;
&lt;span class="c"&gt;# 总交易数量&lt;/span&gt;

solana supply &lt;span class="nt"&gt;-u&lt;/span&gt; m
&lt;span class="c"&gt;# 总供应量&lt;/span&gt;

solana inflation &lt;span class="nt"&gt;-u&lt;/span&gt; m
&lt;span class="c"&gt;# 通胀率&lt;/span&gt;

solana block-production &lt;span class="nt"&gt;-u&lt;/span&gt; m

solana stake-history &lt;span class="nt"&gt;-u&lt;/span&gt; m

solana validator-info get &lt;span class="nt"&gt;-u&lt;/span&gt; m
solana gossip &lt;span class="nt"&gt;-u&lt;/span&gt; m
solana catchup
solana catchup &lt;span class="nt"&gt;--our-localhost&lt;/span&gt; 8899
&lt;/code&gt;&lt;/pre&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;solana live-slots &lt;span class="nt"&gt;-u&lt;/span&gt; m

&lt;span class="c"&gt;# 当前 slots 的进度信息&lt;/span&gt;

|&amp;lt;&lt;span class="nt"&gt;---&lt;/span&gt; 309885573 &amp;lt;- … &amp;lt;- 309885610 &amp;lt;- 309885611   &lt;span class="o"&gt;(&lt;/span&gt;prev&lt;span class="o"&gt;)&lt;/span&gt;
|&amp;lt;&lt;span class="nt"&gt;---&lt;/span&gt; 309885573 &amp;lt;- … &amp;lt;- 309885610 &amp;lt;- 309885611   &lt;span class="o"&gt;(&lt;/span&gt;prev&lt;span class="o"&gt;)&lt;/span&gt;
|  &lt;span class="s1"&gt;'- 309885580 &amp;lt;- … &amp;lt;- 309885611 &amp;lt;- 309885612   (next)

SlotInfo { slot: 309885640, parent: 309885639, root: 309885608 } | root slot advancing at 2.60 slots/second
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;solana validators &lt;span class="nt"&gt;-u&lt;/span&gt; m
&lt;span class="c"&gt;# 验证节点信息&lt;/span&gt;

Stake By Version:
2.2.0   -    4 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.12%&lt;span class="o"&gt;)&lt;/span&gt;
2.1.7   -    2 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.03%&lt;span class="o"&gt;)&lt;/span&gt;
2.1.6   -    1 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.01%&lt;span class="o"&gt;)&lt;/span&gt;
2.1.4   -    1 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.00%&lt;span class="o"&gt;)&lt;/span&gt;   1 delinquent validators &lt;span class="o"&gt;(&lt;/span&gt; 0.00%&lt;span class="o"&gt;)&lt;/span&gt;
2.1.0   -    0 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.00%&lt;span class="o"&gt;)&lt;/span&gt;   3 delinquent validators &lt;span class="o"&gt;(&lt;/span&gt; 0.00%&lt;span class="o"&gt;)&lt;/span&gt;
2.0.22  -    1 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.01%&lt;span class="o"&gt;)&lt;/span&gt;
2.0.21  -    1 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.01%&lt;span class="o"&gt;)&lt;/span&gt;
2.0.20  -   18 current validators &lt;span class="o"&gt;(&lt;/span&gt; 2.93%&lt;span class="o"&gt;)&lt;/span&gt;   2 delinquent validators &lt;span class="o"&gt;(&lt;/span&gt; 0.01%&lt;span class="o"&gt;)&lt;/span&gt;
2.0.19  - 1216 current validators &lt;span class="o"&gt;(&lt;/span&gt;64.60%&lt;span class="o"&gt;)&lt;/span&gt;  15 delinquent validators &lt;span class="o"&gt;(&lt;/span&gt; 0.06%&lt;span class="o"&gt;)&lt;/span&gt;
2.0.18  -  107 current validators &lt;span class="o"&gt;(&lt;/span&gt;24.76%&lt;span class="o"&gt;)&lt;/span&gt;   6 delinquent validators &lt;span class="o"&gt;(&lt;/span&gt; 0.02%&lt;span class="o"&gt;)&lt;/span&gt;
2.0.17  -    4 current validators &lt;span class="o"&gt;(&lt;/span&gt; 1.64%&lt;span class="o"&gt;)&lt;/span&gt;   3 delinquent validators &lt;span class="o"&gt;(&lt;/span&gt; 0.00%&lt;span class="o"&gt;)&lt;/span&gt;
2.0.16  -   11 current validators &lt;span class="o"&gt;(&lt;/span&gt; 2.65%&lt;span class="o"&gt;)&lt;/span&gt;
2.0.15  -   35 current validators &lt;span class="o"&gt;(&lt;/span&gt; 1.97%&lt;span class="o"&gt;)&lt;/span&gt;
2.0.14  -    2 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.34%&lt;span class="o"&gt;)&lt;/span&gt;
1.18.26 -    1 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.04%&lt;span class="o"&gt;)&lt;/span&gt;
0.302.20104 -    2 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.15%&lt;span class="o"&gt;)&lt;/span&gt;
0.202.20016 -    1 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.00%&lt;span class="o"&gt;)&lt;/span&gt;
0.101.20106 -    3 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.63%&lt;span class="o"&gt;)&lt;/span&gt;
unknown -    1 current validators &lt;span class="o"&gt;(&lt;/span&gt; 0.00%&lt;span class="o"&gt;)&lt;/span&gt;  11 delinquent validators &lt;span class="o"&gt;(&lt;/span&gt; 0.01%&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;solana ping &lt;span class="nt"&gt;-u&lt;/span&gt; d &lt;span class="c"&gt;#d devnet&lt;/span&gt;

✅ 1 lamport&lt;span class="o"&gt;(&lt;/span&gt;s&lt;span class="o"&gt;)&lt;/span&gt; transferred: &lt;span class="nb"&gt;seq&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;0   &lt;span class="nb"&gt;time&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt; 660ms &lt;span class="nv"&gt;signature&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;2nVYj7b81oS13pv2AzPLPN8Aht8iprRYBRKrqSNZ3SXSSgThV78meyWiosq288Gus2iMtx4Yq841Nmidc7e62LfZ
✅ 2 lamport&lt;span class="o"&gt;(&lt;/span&gt;s&lt;span class="o"&gt;)&lt;/span&gt; transferred: &lt;span class="nb"&gt;seq&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;1   &lt;span class="nb"&gt;time&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt; 659ms &lt;span class="nv"&gt;signature&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;4mnqYEJgfq6ahhQXoWfVdg7LiXmXq4pD2rnQzneY4hcR3NFsq2PK3mfgY3KRYicAWzSK3Mk6jqFDLMGYot8Ei2xF
✅ 3 lamport&lt;span class="o"&gt;(&lt;/span&gt;s&lt;span class="o"&gt;)&lt;/span&gt; transferred: &lt;span class="nb"&gt;seq&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;2   &lt;span class="nb"&gt;time&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;1530ms &lt;span class="nv"&gt;signature&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;2LohS7y8LXQxHvhKZBdTgrFS3VLSw5cju54Wp2aeXYyFrVVyWkbVS98ytNjbyUUu7m8xiCUqR4ZKYqqo6b9JQZ4v

&lt;span class="nt"&gt;---&lt;/span&gt; transaction statistics &lt;span class="nt"&gt;---&lt;/span&gt;
3 transactions submitted, 3 transactions confirmed, 0.0% transaction loss
confirmation min/mean/max/stddev &lt;span class="o"&gt;=&lt;/span&gt; 659/950/1530/503 ms
&lt;/code&gt;&lt;/pre&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;solana account  So11111111111111111111111111111111111111112

Public Key: So11111111111111111111111111111111111111112
Balance:
Owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
Executable: &lt;span class="nb"&gt;false
&lt;/span&gt;Rent Epoch: 18446744073709551615
Length: 82 &lt;span class="o"&gt;(&lt;/span&gt;0x52&lt;span class="o"&gt;)&lt;/span&gt; bytes
0000:   00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00   ................
0010:   00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00   ................
0020:   00 00 00 00  00 00 00 00  00 00 00 00  09 01 00 00   ................
0030:   00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00   ................
0040:   00 00 00 00  00 00 00 00  00 00 00 00  00 00 00 00   ................
0050:   00 00                                                ..
&lt;/code&gt;&lt;/pre&gt;
&lt;hr&gt;

&lt;p&gt;Ref:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://qiita.com/shooter/items/3419d60c1a3268c29f70" rel="nofollow" target="_blank"&gt;https://qiita.com/shooter/items/3419d60c1a3268c29f70&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Sun, 10 Nov 2024 12:04:38 +0800</pubDate>
      <link>https://soldev.cn/topics/97</link>
      <guid>https://soldev.cn/topics/97</guid>
    </item>
    <item>
      <title>Sol Incinerator</title>
      <description>&lt;p&gt;&lt;a href="https://sol-incinerator.com/" rel="nofollow" target="_blank"&gt;https://sol-incinerator.com/&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Fri, 08 Nov 2024 18:17:41 +0800</pubDate>
      <link>https://soldev.cn/topics/96</link>
      <guid>https://soldev.cn/topics/96</guid>
    </item>
    <item>
      <title>metaplex 发布 nft 优化技术</title>
      <description>&lt;p&gt;metaplex 发布了新的技术 可以减少 nft 占用空间  把多余的 sol 发回个人账号&lt;/p&gt;

&lt;p&gt;半年后  metaplex 会主动做这些操作 到时候 sol 会发到 metaplex 账号&lt;/p&gt;

&lt;p&gt;详细信息请看：&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/metaplex/status/1828142818440663304" rel="nofollow" target="_blank"&gt;https://x.com/metaplex/status/1828142818440663304&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/SlorgoftheSlugs/status/1854198087046099321" rel="nofollow" target="_blank"&gt;https://x.com/SlorgoftheSlugs/status/1854198087046099321&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Thu, 07 Nov 2024 19:11:08 +0800</pubDate>
      <link>https://soldev.cn/topics/94</link>
      <guid>https://soldev.cn/topics/94</guid>
    </item>
    <item>
      <title>Velos: Lightweight Solana client</title>
      <description>&lt;p&gt;&lt;a href="https://github.com/hexishq/velos" rel="nofollow" target="_blank"&gt;https://github.com/hexishq/velos&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Velos: Lightweight Solana client for fast, efficient data streaming with minimal compute power.&lt;/p&gt;

&lt;p&gt;Velos is a specialized data streaming client for Solana that dramatically reduces infrastructure costs through efficient decoupling of the data reception layer.&lt;/p&gt;

&lt;p&gt;By focusing solely on processing shreds, verifying them, constructing entries, and receiving gossip votes for commitment tracking, Velos provides a lightweight solution that can run on minimal hardware while maintaining full data parity.&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Thu, 07 Nov 2024 12:36:58 +0800</pubDate>
      <link>https://soldev.cn/topics/92</link>
      <guid>https://soldev.cn/topics/92</guid>
    </item>
    <item>
      <title>SolPump API</title>
      <description>&lt;p&gt;Sol-pump is your gateway to the fastest and most developer-friendly trading API on the market, designed with a web3 mindset for unparalleled performance.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://solpump.gitbook.io/solpump-api" rel="nofollow" target="_blank"&gt;https://solpump.gitbook.io/solpump-api&lt;/a&gt;&lt;/p&gt;</description>
      <author>shooter</author>
      <pubDate>Thu, 07 Nov 2024 12:32:34 +0800</pubDate>
      <link>https://soldev.cn/topics/91</link>
      <guid>https://soldev.cn/topics/91</guid>
    </item>
  </channel>
</rss>
