RSS3 Documentation

Deploy a VSL RPC

Learn how to run a VSL RPC node.

This tutorial will walk you through the process of using Docker to run a VSL RPC Node.

This is different from an RSS3 DSL Node.

Prerequisites

Setup

  1. Clone the VSL repository:
git clone https://github.com/RSS3-Network/VSL-RPC-Node.git
cd VSL-RPC-Node && cp .env.example .env

Configuration

replace OP_NODE_L1_ETH_RPC to "your_l1_rpc_url" in .env

OP_NODE_L1_ETH_RPC="https://cloudflare-eth.com/" #use your own l1 rpc endpoint

For the initial deployment, generate the secret files:

bash gen-secret.sh

Run

Start the node

docker compose up -d

Check the logs

docker compose logs -f --tail 100

Stop the node

docker compose down

On this page