Page cover

T3RN NODE

Install Kali linux on Microsoft Store for Linux Shell

t3rn/executor-release/releases/ | Install Latest Package Version

Link: https://github.com/t3rn/executor-release/releases/

How to Install Ubuntu?

Search on your PC Micosoft Store

Search Ubuntu Install Ubuntu 22.04.5 LTS

Once you Installed

How to Enable WSL and Subsystem Linux

Step 1 - Enable the Windows Subsystem for Linux

You must first enable the "Windows Subsystem for Linux" optional feature before installing any Linux distributions on Windows.

  • Enable Windows Subsystem Linux for Linux

Run Open PowerShell as Administrator (Start menu > PowerShell > right-click > Run as Administrator) and enter this command:

Copy This Command

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart

Download the latest package:

  1. Run the update package downloaded in the previous step. (Double-click to run - you will be prompted for elevated permissions, select ‘yes’ to approve this installation.)

Set WSL 2 as your default version

Open PowerShell and run this command to set WSL 2 as the default version when installing a new Linux distribution:

wsl --set-default-version 2

Setup Guide

Go to executor

executor/executor

executor/executor/bin

CRTL + SHIFT + RIGHT CLICK |

  • Ope Linux Shell here

Copy this Code below:

export NODE_ENV=testnet
export LOG_LEVEL=debug
export LOG_PRETTY=false
export EXECUTOR_PROCESS_ORDERS=true
export EXECUTOR_PROCESS_CLAIMS=true

Set Your PRIVATE_KEY_LOCAL variable of your Executor, which is the private key of the wallet you will use. The example below is a fake generated key that should/cannot not be used:

export PRIVATE_KEY_LOCAL=

Example:

export PRIVATE_KEY_LOCAL=dead93c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56dbeef

How to find Your Private Key? | OKX WEB3 WALLET

Click Backup > Select your Wallet > Ethereum Network > Copy your Private Key

Go back in Terminal

Example Code: Hit Enter

export PRIVATE_KEY_LOCAL= your Private Key
export ENABLED_NETWORKS='arbitrum-sepolia,base-sepolia,optimism-sepolia,blast-sepolia,l1rn'
export EXECUTOR_PROCESS_PENDING_ORDERS_FROM_API=false

Start

./executor

Last updated