<?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>0x01</title>
        <link>https://paragraph.com/@dancewithwolf</link>
        <description>since web3</description>
        <lastBuildDate>Sun, 14 Jun 2026 02:57:38 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>0x01</title>
            <url>https://storage.googleapis.com/papyrus_images/1aca479b52089aca94294c37ef15a96246e0d3ad318d9cdde685fb67460c49ee.jpg</url>
            <link>https://paragraph.com/@dancewithwolf</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Ubuntu-Trojan 安装与配置]]></title>
            <link>https://paragraph.com/@dancewithwolf/ubuntu-trojan</link>
            <guid>5ROFnRDt5wmHfLxF2jAD</guid>
            <pubDate>Sat, 20 May 2023 14:37:02 GMT</pubDate>
            <description><![CDATA[安装sudo apt-get install trojan systemctl enable trojan systemctl start trojan 服务端配置{ "run_type": "server", "local_addr": "0.0.0.0", "local_port": 443, "remote_addr": "127.0.0.1", "remote_port": 80, "password": [ "password1", "password2" ], "log_level": 1, "ssl": { "cert": "/path/to/aaa.pem", "key": "/path/to/bbb.key", "key_password": "", "cipher": "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:E...]]></description>
            <content:encoded><![CDATA[<h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">安装</h2><pre data-type="codeBlock" text="sudo apt-get install trojan
systemctl enable trojan
systemctl start trojan
"><code>sudo apt<span class="hljs-operator">-</span><span class="hljs-keyword">get</span> install trojan
systemctl enable trojan
systemctl <span class="hljs-keyword">start</span> trojan
</code></pre><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">服务端配置</h2><pre data-type="codeBlock" text="{
&quot;run_type&quot;: &quot;server&quot;,
&quot;local_addr&quot;: &quot;0.0.0.0&quot;,
&quot;local_port&quot;: 443,
&quot;remote_addr&quot;: &quot;127.0.0.1&quot;,
&quot;remote_port&quot;: 80,
&quot;password&quot;: [
&quot;password1&quot;,
&quot;password2&quot;
],
&quot;log_level&quot;: 1,
&quot;ssl&quot;: {
&quot;cert&quot;: &quot;/path/to/aaa.pem&quot;,
&quot;key&quot;: &quot;/path/to/bbb.key&quot;,
&quot;key_password&quot;: &quot;&quot;,
&quot;cipher&quot;: &quot;ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384&quot;,
&quot;cipher_tls13&quot;: &quot;TLS_AES_128_GCM_SHA256:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_256_GCM_SHA384&quot;,
&quot;prefer_server_cipher&quot;: true,
&quot;alpn&quot;: [
&quot;http/1.1&quot;
],
&quot;alpn_port_override&quot;: {
&quot;h2&quot;: 81
},
&quot;reuse_session&quot;: true,
&quot;session_ticket&quot;: false,
&quot;session_timeout&quot;: 600,
&quot;plain_http_response&quot;: &quot;&quot;,
&quot;curves&quot;: &quot;&quot;,
&quot;dhparam&quot;: &quot;&quot;
},
&quot;tcp&quot;: {
&quot;prefer_ipv4&quot;: false,
&quot;no_delay&quot;: true,
&quot;keep_alive&quot;: true,
&quot;reuse_port&quot;: false,
&quot;fast_open&quot;: false,
&quot;fast_open_qlen&quot;: 20
},
&quot;mysql&quot;: {
&quot;enabled&quot;: false,
&quot;server_addr&quot;: &quot;127.0.0.1&quot;,
&quot;server_port&quot;: 3306,
&quot;database&quot;: &quot;trojan&quot;,
&quot;username&quot;: &quot;trojan&quot;,
&quot;password&quot;: &quot;&quot;,
&quot;key&quot;: &quot;&quot;,
&quot;cert&quot;: &quot;&quot;,
&quot;ca&quot;: &quot;&quot;
}
}
"><code><span class="hljs-punctuation">{</span>
<span class="hljs-attr">"run_type"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"server"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"local_addr"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"0.0.0.0"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"local_port"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">443</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"remote_addr"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"127.0.0.1"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"remote_port"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">80</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"password"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">[</span>
<span class="hljs-string">"password1"</span><span class="hljs-punctuation">,</span>
<span class="hljs-string">"password2"</span>
<span class="hljs-punctuation">]</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"log_level"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">1</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"ssl"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">{</span>
<span class="hljs-attr">"cert"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"/path/to/aaa.pem"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"key"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"/path/to/bbb.key"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"key_password"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"cipher"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"cipher_tls13"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"TLS_AES_128_GCM_SHA256:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_256_GCM_SHA384"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"prefer_server_cipher"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">true</span></span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"alpn"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">[</span>
<span class="hljs-string">"http/1.1"</span>
<span class="hljs-punctuation">]</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"alpn_port_override"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">{</span>
<span class="hljs-attr">"h2"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">81</span>
<span class="hljs-punctuation">}</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"reuse_session"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">true</span></span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"session_ticket"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">false</span></span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"session_timeout"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">600</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"plain_http_response"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"curves"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"dhparam"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span>
<span class="hljs-punctuation">}</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"tcp"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">{</span>
<span class="hljs-attr">"prefer_ipv4"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">false</span></span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"no_delay"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">true</span></span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"keep_alive"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">true</span></span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"reuse_port"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">false</span></span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"fast_open"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">false</span></span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"fast_open_qlen"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">20</span>
<span class="hljs-punctuation">}</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"mysql"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">{</span>
<span class="hljs-attr">"enabled"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">false</span></span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"server_addr"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"127.0.0.1"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"server_port"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">3306</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"database"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"trojan"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"username"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"trojan"</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"password"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"key"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"cert"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span><span class="hljs-punctuation">,</span>
<span class="hljs-attr">"ca"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span>
<span class="hljs-punctuation">}</span>
<span class="hljs-punctuation">}</span>
</code></pre><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">客户端配置</h2><pre data-type="codeBlock" text="{
    &quot;run_type&quot;: &quot;client&quot;,
    &quot;local_addr&quot;: &quot;127.0.0.1&quot;,
    &quot;local_port&quot;: 1080,
    &quot;remote_addr&quot;: &quot;www.demo.com&quot;,
    &quot;remote_port&quot;: 443,
    &quot;password&quot;: [
        &quot;password1&quot;
    ],
    &quot;log_level&quot;: 1,
    &quot;ssl&quot;: {
        &quot;verify&quot;: true,
        &quot;verify_hostname&quot;: true,
        &quot;cert&quot;: &quot;&quot;,
        &quot;cipher&quot;: &quot;ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA:AES128-SHA:AES256-SHA:DES-CBC3-SHA&quot;,
        &quot;cipher_tls13&quot;: &quot;TLS_AES_128_GCM_SHA256:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_256_GCM_SHA384&quot;,
        &quot;sni&quot;: &quot;&quot;,
        &quot;alpn&quot;: [
            &quot;h2&quot;,
            &quot;http/1.1&quot;
        ],
        &quot;reuse_session&quot;: true,
        &quot;session_ticket&quot;: false,
        &quot;curves&quot;: &quot;&quot;
    },
    &quot;tcp&quot;: {
        &quot;no_delay&quot;: true,
        &quot;keep_alive&quot;: true,
        &quot;reuse_port&quot;: false,
        &quot;fast_open&quot;: false,
        &quot;fast_open_qlen&quot;: 20
    }
}
"><code><span class="hljs-punctuation">{</span>
    <span class="hljs-attr">"run_type"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"client"</span><span class="hljs-punctuation">,</span>
    <span class="hljs-attr">"local_addr"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"127.0.0.1"</span><span class="hljs-punctuation">,</span>
    <span class="hljs-attr">"local_port"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">1080</span><span class="hljs-punctuation">,</span>
    <span class="hljs-attr">"remote_addr"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"www.demo.com"</span><span class="hljs-punctuation">,</span>
    <span class="hljs-attr">"remote_port"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">443</span><span class="hljs-punctuation">,</span>
    <span class="hljs-attr">"password"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">[</span>
        <span class="hljs-string">"password1"</span>
    <span class="hljs-punctuation">]</span><span class="hljs-punctuation">,</span>
    <span class="hljs-attr">"log_level"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">1</span><span class="hljs-punctuation">,</span>
    <span class="hljs-attr">"ssl"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">{</span>
        <span class="hljs-attr">"verify"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">true</span></span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"verify_hostname"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">true</span></span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"cert"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"cipher"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA:AES128-SHA:AES256-SHA:DES-CBC3-SHA"</span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"cipher_tls13"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">"TLS_AES_128_GCM_SHA256:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_256_GCM_SHA384"</span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"sni"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"alpn"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">[</span>
            <span class="hljs-string">"h2"</span><span class="hljs-punctuation">,</span>
            <span class="hljs-string">"http/1.1"</span>
        <span class="hljs-punctuation">]</span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"reuse_session"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">true</span></span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"session_ticket"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">false</span></span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"curves"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">""</span>
    <span class="hljs-punctuation">}</span><span class="hljs-punctuation">,</span>
    <span class="hljs-attr">"tcp"</span><span class="hljs-punctuation">:</span> <span class="hljs-punctuation">{</span>
        <span class="hljs-attr">"no_delay"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">true</span></span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"keep_alive"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">true</span></span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"reuse_port"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">false</span></span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"fast_open"</span><span class="hljs-punctuation">:</span> <span class="hljs-literal"><span class="hljs-keyword">false</span></span><span class="hljs-punctuation">,</span>
        <span class="hljs-attr">"fast_open_qlen"</span><span class="hljs-punctuation">:</span> <span class="hljs-number">20</span>
    <span class="hljs-punctuation">}</span>
<span class="hljs-punctuation">}</span>
</code></pre>]]></content:encoded>
            <author>dancewithwolf@newsletter.paragraph.com (0x01)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/f8042b4dcae367692e18e7a00625eb3231964823adcf18a52df6c8299cd65e57.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[加密市场的机器人投资]]></title>
            <link>https://paragraph.com/@dancewithwolf/JUCWdFvjHHlCsJPZKpYi</link>
            <guid>JUCWdFvjHHlCsJPZKpYi</guid>
            <pubDate>Sat, 09 Jul 2022 07:13:37 GMT</pubDate>
            <description><![CDATA[撰写：Jake Pahor 编译：TechFlow intern 我对加密货币和股票的投资规则都遵循相同的框架，但方法略有不同。一篇文章来分解我的一些加密货币投资规则和原则，以帮助你征服下一个牛市！! 我喜欢把投资决策看作是如果、或者和然后这些词语（像编程代码一样）。以下是我的6条加密货币规则。 1.了解宏观状况 花时间分析市场和我们在周期中的位置，有句话说得好 "不要与美联储对抗"。if，中央银行正在提高利率，出售资产以对抗通胀，那么我们处于典型的避险市场-then，防守，拿着更多现金，专注于拥有正现金流或背景强大的基础加密项目if，中央银行正在降低利率、购买资产并促进通胀，那么我们处于典型的风险市场then，您可以专注于一些具有更高风险/回报的更大的加密项目创建市场观察列表/扫描 保持习惯，在 Coingecko 上创建观察列表，列出所有你感兴趣的项目。@thedefiedge 的精彩帖子解释了他评估代币的框架 ，以下是您需要注意的关键研究点：-他们是否产生了收入？ -协议的国库里有什么？ -锁定的资金？ -效用和使用案例？ -路线图？ -团队及其资金？择时购买 我有 3 个...]]></description>
            <content:encoded><![CDATA[<p><em>撰写：Jake Pahor</em></p><p><em>编译：TechFlow intern</em></p><p>我对加密货币和股票的投资规则都遵循相同的框架，但方法略有不同。一篇文章来分解我的一些加密货币投资规则和原则，以帮助你征服下一个牛市！!</p><p>我喜欢把投资决策看作是如果、或者和然后这些词语（像编程代码一样）。以下是我的6条加密货币规则。</p><p>1.了解宏观状况 花时间分析市场和我们在周期中的位置，有句话说得好 &quot;不要与美联储对抗&quot;。</p><ul><li><p>if，中央银行正在提高利率，出售资产以对抗通胀，那么我们处于典型的避险市场</p></li></ul><p>-then，防守，拿着更多现金，专注于拥有正现金流或背景强大的基础加密项目</p><ul><li><p>if，中央银行正在降低利率、购买资产并促进通胀，那么我们处于典型的风险市场</p></li><li><p>then，您可以专注于一些具有更高风险/回报的更大的加密项目</p></li></ul><ol><li><p>创建市场观察列表/扫描 保持习惯，在 Coingecko 上创建观察列表，列出所有你感兴趣的项目。@thedefiedge 的精彩帖子解释了他评估代币的框架 ，以下是您需要注意的关键研究点：</p></li></ol><p>-他们是否产生了收入？</p><p>-协议的国库里有什么？</p><p>-锁定的资金？</p><p>-效用和使用案例？</p><p>-路线图？</p><p>-团队及其资金？</p><ol><li><p>择时购买 我有 3 个简单的步骤来确定我是否应该购买代币。</p></li></ol><p>该项目是否通过了第二步的所有检查（是否符合我的投资标准）</p><p>从技术分析的角度看图表，您可以使用您喜欢的技术分析方法。</p><p>只投入你能承受的仓位，买入！</p><p>4.何时离场 出售你的代币可能是非常困难的——尤其是在欣欣向荣的牛市中。在你购买之前，制定一些规则和目标价格是至关重要的。</p><p>对于$BTC和$ETH(中等风险)，这里有一个关于 BTC 的一个简单示例：</p><p>初始投资 = 10 万美元（2 万美元的平均买入价买进5个BTC）</p><p>价格目标 1 (2x) = 4 万美元 -&gt; 卖出 1.25 BTC（初始的 25%）</p><p>价格目标 2 (4x) = 8 万美元 -&gt; 卖出 1.25 BTC（初始的 25%）</p><p>总利润 = 10 万美元，这是您的初始投资回报。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2517bb46b88a63ccc79dca6957edfc25f0e4994675f28ca9f06590e20e36090e.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>由于我对 BTC 和 ETH 的长期前景充满信心，一旦我收回了我的初始成本，我很乐意持有剩余的。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/11702fac8251041be4f8b68a0da9f595d1121d9961d6dd23f70af9b8969d073d.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><ul><li><p>初始投资 = 10 万美元（平均买入价 20 美元买进5000个）</p></li><li><p>价格目标 1 (2x) = 40 美元 -&gt; 卖出 2500 个 ALTS（初始的 50%）</p></li><li><p>价格目标 2 (4x) = 80 美元 -&gt; 卖出 1000 个 ALTS（初始的 20%）</p></li><li><p>价格目标 3 (6x) = 120 美元 -&gt; 卖出 500 个 ALTS（初始投资的 10%）</p></li><li><p>价格目标 4 (8x) = 160 美元 -&gt; 卖出 300 个 ALTS（初始投资的 6%）</p></li></ul><p>总利润 = 202,000 美元，这是您最初投资的两倍！ 由于风险，我更倾向于在山寨币上获利了结。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/4991b8360298c855ad2749e2843a72ea60f3aab529999e1e35dff3be0ac3f52c.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><ol><li><p>多样化和规模化 重要的是不要把所有的鸡蛋都放在一个篮子里，所以这里有一些简单的规则来控制你的投资组合：</p></li></ol><ul><li><p>BTC 或 ETH 在您投资组合中占比不超过的 35%</p></li><li><p>任何单一的山寨币不能代表你投资组合的 15%</p></li><li><p>在多个板块进行分散投资（L1、GameFi、NFT、Defi等）</p></li><li><p>Degen 代币限制在 3-5% 左右</p></li></ul><ol><li><p>重新审视你的规则 这是最重要的一步，投资是一段旅程，随着您的成长和经验的积累，您还需要调整您的投资规则。 由于加密货币的发展快速，您需要保持敏捷，不要陷入特定的思维模式。</p></li></ol><p>总结 这些是我根据自己的投资风格、财务状况和风险承受能力制定的。每个人都是不同的，所以定义属于自己的规则十分重要！！！</p>]]></content:encoded>
            <author>dancewithwolf@newsletter.paragraph.com (0x01)</author>
        </item>
        <item>
            <title><![CDATA[六个方法，在NFT交易中获利更多]]></title>
            <link>https://paragraph.com/@dancewithwolf/nft</link>
            <guid>5LVp3NdGp0pMiAKwk0to</guid>
            <pubDate>Fri, 22 Apr 2022 17:12:09 GMT</pubDate>
            <description><![CDATA[技巧1：避免有路线图的虽然听起来不可思议，但事实就是如此。有路线图的项目售罄的可能性会低8.5%，7 天后，它们比Mint价格上涨 9.8%……但 28 天后，它们又比Mint价格下跌 5%。为什么？太多的项目承诺过高，结果就是以失败告终。技巧2：避免衍生品（除了Apes）加密朋克的衍生品售罄的可能性降低 3.7%，28 天后，它们比Mint价格低了 65.8%。有一个例外是无聊猿衍生品，铸造的可能性要高出 5.3%，而且在28 天后，它们比Mint价上涨了 1,256%。技巧3：避免3D艺术虽然3DNFT比普通NFT高出2.2%的可能被铸造完，但一个月后，它们的价格整体下降了 23%！3D艺术能迅速吸引注意力，但似乎无法保持。技巧4：抓住动画和音乐项目虽然铸造动画项目的可能性比普通NFT低了 5.3%，但 28 天后，它们比铸造价高了38%。而有音乐项目，人们有 7.7% 的可能性将其收藏，28 天后，它们的价格比发售价高 71.5%。技巧5：注意推特上的艺术家们研究表明艺术家收藏品售罄的可能性要高出 6.1%，28 天后，这些NFT比它们的发售价上涨了 72.2%。 研究还显...]]></description>
            <content:encoded><![CDATA[<h3 id="h-1" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">技巧1：避免有路线图的</h3><p>虽然听起来不可思议，但事实就是如此。有路线图的项目售罄的可能性会低8.5%，7 天后，它们比Mint价格上涨 9.8%……但 28 天后，它们又比Mint价格下跌 5%。为什么？太多的项目承诺过高，结果就是以失败告终。</p><h3 id="h-2apes" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">技巧2：避免衍生品（除了Apes）</h3><p>加密朋克的衍生品售罄的可能性降低 3.7%，28 天后，它们比Mint价格低了 65.8%。有一个例外是无聊猿衍生品，铸造的可能性要高出 5.3%，而且在28 天后，它们比Mint价上涨了 1,256%。</p><h3 id="h-33d" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">技巧3：避免3D艺术</h3><p>虽然3DNFT比普通NFT高出2.2%的可能被铸造完，但一个月后，它们的价格整体下降了 23%！3D艺术能迅速吸引注意力，但似乎无法保持。</p><h3 id="h-4" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">技巧4：抓住动画和音乐项目</h3><p>虽然铸造动画项目的可能性比普通NFT低了 5.3%，但 28 天后，它们比铸造价高了38%。而有音乐项目，人们有 7.7% 的可能性将其收藏，28 天后，它们的价格比发售价高 71.5%。</p><h3 id="h-5" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">技巧5：注意推特上的艺术家们</h3><p>研究表明艺术家收藏品售罄的可能性要高出 6.1%，28 天后，这些NFT比它们的发售价上涨了 72.2%。</p><p>研究还显示了另外两件事：</p><p>**1、**经验丰富的交易者在交易NFT同一个系列时获得了 43.5% 的更高回报。</p><p>**2.、**经验丰富的交易者在交易完全相同的 NFT 时获得高出 39.5% 的回报。</p><p>这怎么可能？？？看看技巧 6。</p><h3 id="h-6" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">技巧6：持有时间更短</h3><p>有经验的交易者持有NFT的时间要短得多，他们信奉低价买入，高价卖出。来自作者的建议：</p><p>&quot;有经验的投资者倾向于卖出表现良好的NFT，而没有经验的投资者则倾向于持有它们&quot;。</p>]]></content:encoded>
            <author>dancewithwolf@newsletter.paragraph.com (0x01)</author>
        </item>
        <item>
            <title><![CDATA[在加密领域，能提高你赚钱概率的8件事]]></title>
            <link>https://paragraph.com/@dancewithwolf/8</link>
            <guid>QeWno5ZIdPkTnIbCFdJd</guid>
            <pubDate>Fri, 22 Apr 2022 17:04:49 GMT</pubDate>
            <description><![CDATA[一、Crypto 是一场概率游戏，但大多数人却将其视为赌博让我们做一个非常简单的 excercise，来说明如何在自己的投资中获得正向期望值 (+EV)。 首先是考虑长期投资 BTC，让我们设立下面 4 个场景：BTC 将在今年创造新高BTC 将在 2022 年继续横盘整理，但在 2023 年创造新高BTC 已经完成了它的历史作用，它将下跌并保留在一个位置BTC 今年会走低，但在 2023 年创造新高现在，让我们为每个结果做一些概率分析：概率：20%概率：40%概率：20%概率：20%目前，BTC 的价格为 42,000 美元，考虑到这 4 种情况，现在最好的交易是什么？买买卖买在 80% 的情况下，购买是最好的结果。20% 的概率上涨 65%+长期上涨超过 65% 的概率为 40%BTC 永远不会涨回 ATH 的概率为 20%20% 的概率我们会在短期内亏钱，65% 以上的概率会在长期内盈利。对于第 3 点，您可以将止损设为 30%。换句话说，如果 BTC 跌破 2 万 9 千美元，你就卖出。总而言之，你有 80% 的概率获得 +65% 的回报，只有 20% 的概率损失 30%...]]></description>
            <content:encoded><![CDATA[<ul><li><p>一、Crypto 是一场概率游戏，但大多数人却将其视为赌博</p></li></ul><p>让我们做一个非常简单的 excercise，来说明如何在自己的投资中获得正向期望值 (+EV)。</p><p>首先是考虑长期投资 BTC，让我们设立下面 4 个场景：</p><ol><li><p>BTC 将在今年创造新高</p></li><li><p>BTC 将在 2022 年继续横盘整理，但在 2023 年创造新高</p></li><li><p>BTC 已经完成了它的历史作用，它将下跌并保留在一个位置</p></li><li><p>BTC 今年会走低，但在 2023 年创造新高</p></li></ol><p>现在，让我们为每个结果做一些概率分析：</p><ol><li><p>概率：20%</p></li><li><p>概率：40%</p></li><li><p>概率：20%</p></li><li><p>概率：20%</p></li></ol><p>目前，BTC 的价格为 42,000 美元，考虑到这 4 种情况，现在最好的交易是什么？</p><ol><li><p>买</p></li><li><p>买</p></li><li><p>卖</p></li><li><p>买</p></li></ol><p>在 80% 的情况下，购买是最好的结果。</p><ol><li><p>20% 的概率上涨 65%+</p></li><li><p>长期上涨超过 65% 的概率为 40%</p></li><li><p>BTC 永远不会涨回 ATH 的概率为 20%</p></li><li><p>20% 的概率我们会在短期内亏钱，65% 以上的概率会在长期内盈利。</p></li></ol><p>对于第 3 点，您可以将止损设为 30%。换句话说，如果 BTC 跌破 2 万 9 千美元，你就卖出。总而言之，你有 80% 的概率获得 +65% 的回报，只有 20% 的概率损失 30%。挺值得冒险的，不是吗？</p><p>当然这是一个非常简单的例子，你可能不同意这些场景和概率，但我只是想向你展示如何在投资中思考。</p><ul><li><p>二、如何使用概率思维？</p></li></ul><p>请记住，市场保持非理性的时间可能比你能保持偿付能力的时间要长。在 Crypto 中，任何事情都可能发生。这就是为什么你要为自己制定严格的规则。</p><p>比如说，下面是关于何时投资 LUNA 的一些硬性规则的示例：</p><ol><li><p>BTC 有横向/向上的趋势时</p></li><li><p>UST 市值正在增加时</p></li><li><p>当势头比较明显时（新协议、更多用户、看涨消息等）</p></li><li><p>当 Anchor 储蓄产生正向收益时</p></li><li><p>当 Anchor TVL 增加时（通常情况下，可以跟踪 Anchor 发生的一切，因为超过 70% 的 UST 市值都锁在那里）</p></li><li><p>在 4 小时、1 日、1 月时间范围内的技术分析看起来不错时</p></li></ol><p>个人认为只要具备以上 6 个因素，LUNA 就有很好的风险/回报比，简单来说，UST 市值上涨就等于 LUNA 价格上涨。</p><ul><li><p><strong>三、注意头寸大小，永远不要超过你能承受的范围</strong></p></li></ul><p>当你遇到对你有利的赔率时，你当然会想下大注，但即使是有正向期望值的投资最终也可能会失败。要记住，一切都是为了生存，这就是为什么你应该及时止损，并且每笔交易的风险永远不要超过 1～3%。</p><p>再举个例子，假设：</p><ol><li><p>总投资组合价值：10,000 美元</p></li><li><p>每笔交易有 2% 的风险，当损失 7% 时止损。</p></li><li><p>头寸大小：(10,000 x 0.02) / 0.07 = $2,857</p></li></ol><p>这个头寸相当于你投资组合的 28.5%，但由于你在 7% 的位置设置了止损，这意味着你的损失不会超过 200 美元，即你总投资组合的 2%。头寸大小和止损在交易中非常重要，如果你过度打开了自己的资金敞口，迟早会有一天你会把自己的帐户给亏光。</p><ul><li><p><strong>四、搞清楚你的优势是什么？</strong></p></li></ul><p>如果你试图成为所有事情的大师，那你终将一事无成。你必须找到自己最适应的市场。</p><p>你可以先思考，自己最感兴趣的是什么？交易、NFT 还是 DeFi？但即使是交易也太大了。微型股、小型股、L1、市值前 100 名，更别说时间框架、波段交易、黄牛交易等……</p><p>对于 NFT，你会关注哪个生态系统？我确实花了几天时间在 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://rarity.tools">http://rarity.tools</a> 网站好好研究了地板价。对于 DeFi，你的专长是什么？毕竟在各 L1 公链上持续跟进最新状态太难了。</p><p>你必须弄清楚，自己是聪明钱的观察者、低市值宝藏的发现者、能比其他人更早看到 NFT 趋势的人，还是撸羊毛专家或 DeFi 收益农场主？在弄清楚这一点后，你就可以加倍努力，而不是学习所有东西。</p><ul><li><p><strong>五、能够承认自己错了，并停下来</strong></p></li></ul><p>这是在加密行业成功的重要因素。不管是交易、NFT 还是 DeFi，在你购买之前，你需要一个论点和一个失效点。</p><p>问问自己，「如果我错了怎么办？」</p><p>继续举例：</p><p>以 79 美元的价格购买 AVAX，失效点可能就是生态系统发生根本性变化，止损点则应该在 10% 左右。</p><p>我写这篇文章的原因，是因为赌博比你所想象的更难情绪化。你有多少次没有迫使自己在某个价格卖出，而是说：「如果再跌 5%，那我就卖出」。然后继续损失 5% 后…</p><p>所以说，尊重你的规则。</p><ul><li><p><strong>六、寻找「回声室」</strong></p></li></ul><p>如果你在 Twitter 的加密圈里花了足够长的时间，就会发现有很多子社区，比如 ETH maxis、LUNAtics、FTM degen、ATOM believers 等。</p><p>虽然你绝对应该加入其中的一个或几个社区，但你也应该始终保持批判的眼光。不要在没有做出自己判断的情况下就盲目地接收信息。</p><p>说到底，这是一场 PvP 游戏（玩家对玩家），即使你觉得自己是加密 Twitter 上一个大社区的一员，但你还是孤身人，不要假设其他人都在为你的最大利益着想。</p><ul><li><p><strong>七、保持耐心</strong></p></li></ul><p>你不必一直保持满仓，也可以选择用稳定币进行 DeFi 耕种，或者持有一定现金。不必总是进行交易，而是让交易来找你。</p><p>尝试等待大崩盘和代际购买机会的出现，以帮助你实现心中的理想目标（这事儿说起来容易，做起来难）。</p><p>我想说的点是，要学会等待良好的交易时机。在下跌趋势中，也不要试图过度杀跌。请记住，当前市值前 100 的项目，大多数在 4 年后都会消失。</p><ul><li><p><strong>八、一些 DeFi 技巧</strong></p></li></ul><ol><li><p>在 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://coindix.com">http://coindix.com</a> 上查看收益，找不到的信息可以在 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://defiLlama.com">http://defiLlama.com</a> 上进行补充。</p></li><li><p>除非你非常有经验（微型股猎户），否则请坚持使用具有高 TVL 的 Staking 或者 yield-farm 机会。</p></li><li><p>如果您使用杠杆，请持续监控自己的头寸。</p></li><li><p>尝试接触推特上的大 V，他们中的很多人拥有大多数人不知道的信息。</p></li><li><p>APR 越高，你成为收益来源的可能性就越高。</p></li><li><p>尽量避免 BNB 链，上面的很多项目都会拉地毯。</p></li><li><p>为一些重要的 Twitter 帐户打开通知提醒，比如 Peck Shield 就提供了一些很好的做空机会。或者当 Andre Cronje 发布自己将在三月份「退休」的消息时，就是一个轻松的做空机会。现在，我认为只要消息一出，USN 算稳的消息就会影响 NEAR 生态中的市场。</p></li><li><p>永远不要把所有的钱都花在一个 DeFi 协议上</p></li><li><p>第一次尝试新平台时一定要保持低额成本</p></li><li><p>尝试专注于一两个生态系统，以抓住最大的机会</p></li><li><p>观察顶级钱包的钱都去了哪里（你可以查看 DeBank）</p></li></ol>]]></content:encoded>
            <author>dancewithwolf@newsletter.paragraph.com (0x01)</author>
        </item>
    </channel>
</rss>