<?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>Alpha Road</title>
        <link>https://paragraph.com/@alpha-road</link>
        <description>web3 summary</description>
        <lastBuildDate>Mon, 20 Jul 2026 00:11:07 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Alpha Road</title>
            <url>https://storage.googleapis.com/papyrus_images/8a47330a758928bcc1b711e06b0453fe1d7086828948c7a60de42a537690f6d0.jpg</url>
            <link>https://paragraph.com/@alpha-road</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Taiko NodeRunner (Ubuntu)]]></title>
            <link>https://paragraph.com/@alpha-road/taiko-noderunner-ubuntu</link>
            <guid>SMdlXXf6BG47wwLg8rsj</guid>
            <pubDate>Thu, 29 Dec 2022 19:44:58 GMT</pubDate>
            <description><![CDATA[Attention. Not to use your main wallet with assets.The first step, hopefully, won’t catch you off guard, and you’ll have a dedicated mediumwell server.Attention. Not to use your main wallet with assets.So, first of all, connect to virtual machine and enter the following commands which will allow us to install docker without any problems.sudo apt-get update sudo apt-get install \ ca-certificates \ curl \ gnupg \ lsb-releasesudo mkdir -p /etc/apt/keyrings curl -fsSL https://download.docker.com/...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e06e28f77c77f493c0ae6c3865ed6f4a781c25b3e3aafdeec389fc002e4f1c96.png" alt="Attention. Not to use your main wallet with assets." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Attention. Not to use your main wallet with assets.</figcaption></figure><p>The first step, hopefully, won’t catch you off guard, and you’ll have a dedicated medium<s>well</s> server.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b0ec75e81d7c92f96aa559c749b94a401343c10f60a34c14674a20bf51df03d3.png" alt="Attention. Not to use your main wallet with assets." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Attention. Not to use your main wallet with assets.</figcaption></figure><h2 id="h-so-first-of-all-connect-to-virtual-machine-and-enter-the-following-commands-which-will-allow-us-to-install-docker-without-any-problems" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">So, first of all, connect to virtual machine and enter the following commands which will allow us to install docker without any problems.</h2><ol><li><p><code>sudo apt-get update sudo apt-get install \ ca-certificates \ curl \ gnupg \ lsb-release</code></p></li><li><p><code>sudo mkdir -p /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg</code></p></li><li><p><code>echo \ &quot;deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) stable&quot; | sudo tee /etc/apt/sources.list.d/docker.list &gt; /dev/null</code></p></li><li><p><code>sudo apt-get update</code></p><p><em>If you get a GPG error at this step, use the solutions below:</em></p><p><code>sudo chmod a+r /etc/apt/keyrings/docker.gpg sudo apt-get update</code></p></li><li><p><code>sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin</code></p></li><li><p>Complete. Make sure that the docker is working well:</p><p><code>sudo docker run hello-world</code></p><p>or</p><p><code>docker compose version</code></p><h2 id="h-now-lets-take-a-look-at-taikos-official-guide-to-launching-the-node" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Now let&apos;s take a look at Taiko&apos;s official guide to launching the node.</h2></li><li><p><code>git clone https://github.com/taikoxyz/simple-taiko-node.git cd simple-taiko-node</code></p></li><li><p><code>cp .env.sample .env</code></p></li><li><p>Substitute the correct values in the .env file that we copied in the previous step. To do this, activate the nano editor.</p><p><code>nano .env</code></p><p>At the bottom you will see three values that you need to change. I put them in bold:</p><p>ENABLE_PROPOSER=<strong>true</strong> L1_PROPOSER_PRIVATE_KEY=<strong>your private key</strong> L2_SUGGESTED_FEE_RECIPIENT=<strong>your wallet address</strong></p><p>e.g. <code>ENABLE_PROPOSER=true L1_PROPOSER_PRIVATE_KEY=d8d8c71ncvjdn388dfnq3zvn45757gnduirfy473274hfuasdfgzh23hjbcjdf L2_SUGGESTED_FEE_RECIPIENT=0x2ce9fd0eb115cd0ee9gc03241a362d0452ff172e</code></p></li><li><p>You are great. Let&apos;s get the node up and running.</p><p><code>docker compose up</code></p></li></ol><h3 id="h-helpful-commands" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Helpful commands:</h3><p>Run node in the background: <code>docker compose up -d</code> Stop node: <code>docker compose down</code> Uninstall node: <code>docker compose down -v</code> <code>rm -f .env</code> Check logs: <code>docker compose logs</code></p><p>Be well.</p><h3 id="h-links" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Links</h3><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/taikoxyz/simple-taiko-node">https://github.com/taikoxyz/simple-taiko-node</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/taikoxyz">Taiko Discord</a> <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mobile.twitter.com/taikoxyz">Taiko Twitter</a></p><p><em>by </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mobile.twitter.com/0xalpharoad"><em>Alpha Road</em></a></p>]]></content:encoded>
            <author>alpha-road@newsletter.paragraph.com (Alpha Road)</author>
        </item>
    </channel>
</rss>