<?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>Code LorD</title>
        <link>https://paragraph.com/@code-lord</link>
        <description>A proven blockchain validator &amp; infra-service provider</description>
        <lastBuildDate>Thu, 23 Apr 2026 13:53:42 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Code LorD</title>
            <url>https://storage.googleapis.com/papyrus_images/ccb03aa9b07001390fefba60c87c44d3ba6d07fee869d6c92d9cfc672b5fdb05.jpg</url>
            <link>https://paragraph.com/@code-lord</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[A Leap into the Future with SD]]></title>
            <link>https://paragraph.com/@code-lord/a-leap-into-the-future-with-sd</link>
            <guid>uU0wycLlcT74WLyEvLVC</guid>
            <pubDate>Fri, 13 Sep 2024 12:04:12 GMT</pubDate>
            <description><![CDATA[The SD token has transformed from a simple governance token into a crucial element within the decentralized finance (DeFi) ecosystem. Initially designed for voting on platform changes, SD now powers key aspects of the ecosystem&apos;s growth. With over $500M in total value locked (TVL), it has become a driving force behind new DeFi innovations and partnerships. In a move to strengthen its tokenomics, Stader has initiated significant updates, including the burn of 30 million SD tokens and quar...]]></description>
            <content:encoded><![CDATA[<p>The SD token has transformed from a simple governance token into a crucial element within the decentralized finance (DeFi) ecosystem. Initially designed for voting on platform changes, SD now powers key aspects of the ecosystem&apos;s growth. With over $500M in total value locked (TVL), it has become a driving force behind new DeFi innovations and partnerships.</p><p>In a move to strengthen its tokenomics, Stader has initiated significant updates, including the burn of 30 million SD tokens and quarterly buybacks. These strategic decisions help maintain token scarcity while increasing its value over time. SD also plays a growing role in ensuring the safety and security of Ethereum node operators through its innovative insurance programs.</p><p>Partnerships with industry leaders such as Aave and Ledger further highlight the token&apos;s expanding influence across the DeFi space. These collaborations foster an environment of trust and efficiency, encouraging more users and developers to engage with the ecosystem. As a result, the SD token is becoming indispensable for various DeFi services.</p><p>Looking ahead, the SD community continues to shape the token&apos;s future. Through active participation and governance decisions, users can influence the direction of SD’s development. This community-driven approach ensures that the platform evolves in ways that align with its users&apos; needs, keeping SD at the forefront of DeFi innovation.</p>]]></content:encoded>
            <author>code-lord@newsletter.paragraph.com (Code LorD)</author>
        </item>
        <item>
            <title><![CDATA[ZeroGravity. Validator Node]]></title>
            <link>https://paragraph.com/@code-lord/zerogravity-validator-node</link>
            <guid>4VIMeY2MTp15T77nT3ZJ</guid>
            <pubDate>Thu, 15 Aug 2024 19:40:19 GMT</pubDate>
            <description><![CDATA[1. PrerequisitesHardware Requirements: You’ll need a server or virtual machine with sufficient computing power. Ensure the following general specs:CPU: 4+ coresRAM: 8 GB or moreDisk: 500 GB SSD (adjust based on network requirements)Network: Stable, high-speed internet connection with low latency.Software Requirements:Operating System: Linux-based systems (Ubuntu 20.04 LTS or higher recommended).Install Git: sudo apt install gitInstall Docker: Most blockchain validator nodes use Docker for con...]]></description>
            <content:encoded><![CDATA[<h3 id="h-1-prerequisites" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1. <strong>Prerequisites</strong></h3><ul><li><p><strong>Hardware Requirements</strong>: You’ll need a server or virtual machine with sufficient computing power. Ensure the following general specs:</p><ul><li><p><strong>CPU</strong>: 4+ cores</p></li><li><p><strong>RAM</strong>: 8 GB or more</p></li><li><p><strong>Disk</strong>: 500 GB SSD (adjust based on network requirements)</p></li><li><p><strong>Network</strong>: Stable, high-speed internet connection with low latency.</p></li></ul></li><li><p><strong>Software Requirements</strong>:</p><ul><li><p><strong>Operating System</strong>: Linux-based systems (Ubuntu 20.04 LTS or higher recommended).</p></li><li><p><strong>Install Git</strong>: <code>sudo apt install git</code></p></li><li><p><strong>Install Docker</strong>: Most blockchain validator nodes use Docker for containerization. Install Docker via:</p></li></ul><pre data-type="codeBlock" text="sudo apt update
sudo apt install docker.io
"><code>sudo apt update
sudo apt install docker.io
</code></pre><h3 id="h-2-install-node-software" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2. <strong>Install Node Software</strong></h3><p>Check the 0G documentation for the exact commands, but typically, you’ll clone the project repository from GitHub or the official 0G system.</p><p>Example:</p><pre data-type="codeBlock" text="git clone https://github.com/0G-Network/0g-node
cd 0g-node
"><code>git <span class="hljs-built_in">clone</span> https://github.com/0G-Network/0g-node
<span class="hljs-built_in">cd</span> 0g-node
</code></pre><p>After cloning, follow the build and installation instructions provided in the documentation.</p><h3 id="h-3-generate-node-keys" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">3. <strong>Generate Node Keys</strong></h3><p>Validators usually need a unique set of cryptographic keys. These keys are used to sign transactions and validate blocks.</p><p>If 0G uses a CLI tool for this, the command might look like:</p><pre data-type="codeBlock" text="./0g-cli generate-keys
"><code>./0g<span class="hljs-operator">-</span>cli generate<span class="hljs-operator">-</span>keys
</code></pre><p>Make sure to save these keys securely, as losing them may prevent you from operating your node.</p><h3 id="h-4-configure-the-node" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">4. <strong>Configure the Node</strong></h3><p>There should be a configuration file where you define important settings like your node&apos;s identity, RPC endpoints, and peer addresses.</p><p>Example:</p><pre data-type="codeBlock" text="nano config.toml
"><code>nano config.toml
</code></pre><p>In this configuration file, you will:</p><ul><li><p>Set your validator node&apos;s IP address.</p></li><li><p>Adjust consensus parameters if necessary.</p></li><li><p>Provide any other network or chain-specific configurations.</p></li></ul><h3 id="h-5-staking-and-bonding" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">5. <strong>Staking and Bonding</strong></h3><p>Most blockchain networks require validator nodes to lock up tokens in a staking or bonding process. You may need to send a transaction to the network to register your validator node.</p><p>Commands for staking could look like this:</p><pre data-type="codeBlock" text="./0g-cli stake --amount 1000tokens --validator-address YOUR_NODE_ADDRESS
"><code>./0g<span class="hljs-operator">-</span>cli stake <span class="hljs-operator">-</span><span class="hljs-operator">-</span>amount 1000tokens <span class="hljs-operator">-</span><span class="hljs-operator">-</span>validator<span class="hljs-operator">-</span><span class="hljs-keyword">address</span> YOUR_NODE_ADDRESS
</code></pre><p>Check the specific 0G documentation for staking mechanics, including minimum staking amounts.</p><h3 id="h-6-start-the-validator-node" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">6. <strong>Start the Validator Node</strong></h3><p>Once everything is configured, you’ll start the node. Most setups use either Docker or a systemd service to ensure the node runs in the background.</p><ul><li><p><strong>Using Docker</strong>:</p></li></ul><pre data-type="codeBlock" text="docker-compose up -d
"><code>docker<span class="hljs-operator">-</span>compose up <span class="hljs-operator">-</span>d
</code></pre><ul><li><p><strong>Using Systemd</strong>: Create a service file in <code>/etc/systemd/system/</code>:</p></li></ul><pre data-type="codeBlock" text="sudo nano /etc/systemd/system/0g-validator.service
"><code>sudo nano <span class="hljs-operator">/</span>etc<span class="hljs-operator">/</span>systemd<span class="hljs-operator">/</span>system<span class="hljs-operator">/</span>0g<span class="hljs-operator">-</span>validator.service
</code></pre><p>Example service file:</p><pre data-type="codeBlock" text="[Unit] Description=0G Validator Node After=network.target
"><code>[Unit] Description<span class="hljs-operator">=</span>0G Validator Node After<span class="hljs-operator">=</span>network.target
</code></pre><pre data-type="codeBlock" text="[Service] User=root ExecStart=/usr/bin/0g-node start Restart=always
"><code>[Service] User<span class="hljs-operator">=</span>root ExecStart<span class="hljs-operator">=</span><span class="hljs-operator">/</span>usr<span class="hljs-operator">/</span>bin<span class="hljs-operator">/</span>0g<span class="hljs-operator">-</span>node start Restart<span class="hljs-operator">=</span>always
</code></pre><pre data-type="codeBlock" text="[Install] WantedBy=multi-user.target
"><code>[Install] WantedBy<span class="hljs-operator">=</span>multi<span class="hljs-operator">-</span>user.target
</code></pre><p>Then, start and enable the service:</p><pre data-type="codeBlock" text="curl http://localhost:26657/status
"><code>curl http://localhost:26657/status
</code></pre><h3 id="h-7-monitoring" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">7. <strong>Monitoring</strong></h3><p>Use monitoring tools like Prometheus or Grafana to keep an eye on your node’s health. The 0G system may provide an API or endpoint for monitoring node status.</p><p>Example:</p><pre data-type="codeBlock" text="curl http://localhost:26657/status
"><code>curl http://localhost:26657/status
</code></pre><ol><li><p>Security Best Practices Firewall: Ensure only necessary ports are open, and configure your firewall accordingly. Backups: Regularly back up your node’s keys and important data. Updates: Stay updated with network changes and node software versions. Regular updates are essential to maintaining network security.</p></li><li><p>Join the Network You may need to submit your validator node details to a specific URL or smart contract to join the active validator set.</p></li></ol></li></ul>]]></content:encoded>
            <author>code-lord@newsletter.paragraph.com (Code LorD)</author>
        </item>
        <item>
            <title><![CDATA[FOCG Summer Co-Hosted by 0G Labs, Blade Games, and Blockbooster]]></title>
            <link>https://paragraph.com/@code-lord/focg-summer-co-hosted-by-0g-labs-blade-games-and-blockbooster</link>
            <guid>TsUCwFaozLSZLLvVNcRW</guid>
            <pubDate>Thu, 15 Aug 2024 18:40:45 GMT</pubDate>
            <description><![CDATA[Greetings, fellow gamers and validators, it’s Code Lord here. I’m excited to walk you through the FOCG Summer, an event co-hosted by 0G Labs, Blade Games, and Blockbooster. This is your chance to dive into on-chain games, rack up points, and maybe even snag some rewards. Starting from Tuesday, July 23rd, the games and the points system will be live, running until August 20th. Here’s everything you need to know to get started. What’s FOCG Summer All About? FOCG Summer kicked off on July 8th, a...]]></description>
            <content:encoded><![CDATA[<p>Greetings, fellow gamers and validators, it’s Code Lord here. I’m excited to walk you through the FOCG Summer, an event co-hosted by 0G Labs, Blade Games, and Blockbooster. This is your chance to dive into on-chain games, rack up points, and maybe even snag some rewards.</p><p>Starting from Tuesday, July 23rd, the games and the points system will be live, running until August 20th. Here’s everything you need to know to get started.</p><p><strong>What’s FOCG Summer All About?</strong></p><p>FOCG Summer kicked off on July 8th, and the response has been phenomenal—over 25,000 participants joined our social quests, gearing up for the Game Launch on Testnet. Now, as of July 23rd, we’re rolling out the official points system along with three collaborative games on the test network. Check out the chain details below.</p><p><strong>How to Earn Points</strong></p><p>There are two main ways to stack up points:</p><ol><li><p><strong>Play Games and Use the Points System Website</strong>: The point system website goes live on July 23rd. Log in, bind your socials and wallets, share your invitation code, and complete tasks. But the best way to earn points? Get gaming!</p></li><li><p><strong>Participate in Social Quests</strong>: Follow the official X accounts of 0G, Blade Games, and Blockbooster, or join our community to stay updated on the latest activities. We’ve launched events on Galxe and Taskon—each one offers a chance to earn points.</p></li></ol><p><strong>Introducing the Point System</strong></p><p>Before diving into the games, make sure to add Arbitrum L3 to your wallet:</p><ul><li><p><strong>RPC Link</strong>: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rpc-nitro.0g.ai">https://rpc-nitro.0g.ai</a></p></li><li><p><strong>ChainID</strong>: 55213348826</p></li><li><p><strong>Currency Symbol</strong>: A0GI</p></li></ul><p><strong>Login and Identity Creation</strong></p><p>Head over to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://focg.0g.ai/">https://focg.0g.ai/</a> to log in. You can use your crypto wallet or X, but I highly recommend binding both to your account once logged in.</p><p><strong>Referral Code System</strong></p><p>Every time your referral code is used, you earn 10 points. If you use someone else’s code, you get an additional 5 points. As you accumulate points, you can refresh your referral code, but the more it’s used, the more points you’ll earn with each use.</p><p><strong>Daily Bonus</strong></p><p>Don’t forget to check in daily—just doing that will net you 10 points!</p><p><strong>Blade Games NFT</strong></p><p>You can mint a Dune Factory Pioneer NFT by clicking “Mint.” Note that this will be on Arbitrum One Mainnet (different from the test network used for games). This NFT is tied to Blade Games tasks and rewards. Holding it might bring potential airdrops and extra points in certain Blade Games tasks. To mint, complete any of the 5 tasks in FOCG Summer.</p><p><strong>Game Guides</strong></p><p>Here’s a quick overview of the games you can dive into:</p><ul><li><p><strong>Dune Factory</strong>: A provable tower defense game powered by ZKP, developed by Blade Games. Check out the video guide here.</p></li><li><p><strong>Project Mirage</strong>: An on-chain island-building game from DayDream Labs. Here’s the guide: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.google.com/document/d/1IyQOluOSx-DrfTYfYHp4Xk07mcNR896GdXkrcSS_N-Y/edit#heading=h.fmk3nzyw2vui">Project Mirage Guide</a>.</p></li><li><p><strong>Coinpups</strong>: The first meme incentivized casual game on Telegram, where you can earn memecoins and airdrop rewards. Check out the guide <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.google.com/document/d/1ZlR2RvGasB-u2arnjBR6ff3YBty5YAqzNMSqgtSDou4/edit#heading=h.187dysba96mq">here</a>.</p></li></ul><p><strong>About FOCG Summer</strong></p><p>FOCG Summer is an on-chain gaming event co-hosted by 0G, Blade Games, and Blockbooster. From early July to August 2024, several on-chain gaming partners have been invited to deploy and open game testing on the 0G Testnet. This is a prime opportunity to join the 0G Testnet, experience fun and engaging on-chain games, witness high data availability in action, and explore the latest in blockchain technology.</p>]]></content:encoded>
            <author>code-lord@newsletter.paragraph.com (Code LorD)</author>
        </item>
    </channel>
</rss>