# Setting up a Taiko node with proposer/prover functionality

By [Arixon](https://paragraph.com/@arixon) · 2024-01-27

---

**Introduction**
================

Welcome to this tutorial, where I will guide you through the process of setting up your initial Taiko node and even become an active participant in the network, either as a proposer or a prover. In case you need assistance with anything, reach out to our community members on our [Discord](https://discord.gg/taikoxyz) server.

Happy tinkering :)

**Prerequisites**
-----------------

Before you start, ensure you have the following ready:

*   **Docker:** [Installed](https://docs.docker.com/engine/install/) and running on your system.
    
*   **Git:** Also [installed](https://github.com/git-guides/install-git/) on your system.
    
*   **Terminal Setup for Windows Users:** If you're on Windows, it's recommended to use Git BASH or Windows Subsystem for Linux (WSL) as your terminal.
    
*   **Hardware Requirements:** Make sure your system meets the Geth [minimum hardware requirements](https://github.com/ethereum/go-ethereum#hardware-requirements). Note that the storage requirement for Taiko nodes is less demanding compared to Geth.
    

**Step-by-Step Guide to Setting Up a Node**
-------------------------------------------

### **Step 1: Install the Simple Taiko Node Tool**

The most straightforward method to set up a node is by using the [STN](https://github.com/d1onys1us/stn/) tool from [Dave](https://twitter.com/indraynor). To install this tool, run the following command in your terminal:

    curl --proto '=https' --tlsv1.2 -LsSf https://github.com/d1onys1us/stn/releases/download/v0.1.30/stn-installer.sh | sh
    

### **Step 2: Install the Taiko Node**

Next, install the actual Taiko node with this command:

### **Step 3: Set Up an L1 Holesky RPC**

You need to configure an L1 Holesky RPC for your node. You have two options:

*   **Local RPC:** Set up a local RPC (guide available [here](https://docs.taiko.xyz/guides/run-a-holesky-node/)).
    
*   **External RPC:** Use a service like [BlockPi](https://blockpi.io/). _Note: Free external RPC services will likely impose rate limits._
    

Assuming you choose BlockPi, sign up and request a Holesky RPC to receive HTTPS and WSS URLs.

### **Step 4: Input RPC URLs into the Configuration**

Start the configuration process and input your RPC URLs:

    stn config
    

### **Step 5: Start Your Taiko Node**

Finally, launch your Taiko node:

On the first run, this command will download the necessary Docker containers. Then, your node will start syncing to the chain head.

**Setting Up the Proposer Functionality**
-----------------------------------------

After your node is done syncing you are ready to set up the proposer functionality. It's a pretty straightforward process.

### **Step 1: Prepare a Test Wallet**

**Important Reminder:** Use a test wallet for this purpose. Do not use a wallet that contains funds. Create a new wallet dedicated to this task if you don't have a test wallet.

### **Step 2: Acquire ETH on Holesky**

To function as a proposer, you'll need some ETH on Holesky, for this we will use a [faucet](https://faucetlink.to/holesky).

### **Step 3: Configure the Proposer**

Run the following command to start the proposer configuration:

    stn config proposer
    

This command initiates the configuration process for the proposer role.

During the configuration, you'll be asked to input your private key. Enter the private key for your test wallet. **Do not include the '0x' prefix when entering the key.**

### **Step 4: Verify the Configuration**

To check if everything is set up correctly, use the following command:

This command displays the logs for the proposer, allowing you to verify that the configuration is correct.

### **Note on Block Proposing**

You may notice that your blocks aren't getting proposed. This can happen because the node is configured to use a public prover from the market. Currently, there might be a substantial load on the public prover due to its high demand, affecting the proposing process.

---

*Originally published on [Arixon](https://paragraph.com/@arixon/setting-up-a-taiko-node-with-proposer-prover-functionality)*
