They’ve raised $7.5M in funding rounds and are still in the testnet phase. The simplest way to earn $BRN is to make a transaction, receiving 1 $BRN for each.
We will elevate our efforts by running the node to earn $BRN directly.
This is the continuation of the Twitter post.
I believe you have already downloaded the Terminus app or software, as well as your VPS is ready.
open the Terminus app or software and click on "new host". Paste the IP address you obtained from pq hosting in the “IP or Hostname“ box, then enter "root" as the username. Use the password you set in the PQ hosting dashboard when you were getting your VPS.
If you're confused about your VPS password, navigate to your dashboard and click on the three dots next to the purchased VPS. Then, select "to panel."
You will be taken to the next page. Once there, click on the three dots and select "Change password." This will allow you to change your VPS password.
Once you are connected to your VPS, you will see something similar to this on your screen.
Now, 50% of the work is completed, All you need to do is paste each command individually, and your node will be operational.
So, copy the following codes (The three of them at once) and paste them into your VPS:
sudo apt update
sudo apt install build-essential
sudo apt install git -y
Once it has finished running, you will see something similar to root@t3rn: It indicates that the next command can now be pasted. So, copy and paste:
sudo apt install screen
Immediately followed by:
screen -S t3rn
So, now copy and paste:
wget https://github.com/t3rn/executor-release/releases/download/v0.27.0/executor-linux-v0.27.0.tar.gz
So, copy and paste:
tar -xvzf executor-linux-v0.27.0.tar.gz
Followed by:
cd executor/executor/bin
Next, copy and paste the following:
export NODE_ENV=testnet
Immediately followed by (Copy the two codes below at once and paste):
export LOG_LEVEL=debug
export LOG_PRETTY=false
Immediately followed by (Copy the two codes below at once and paste):
export EXECUTOR_PROCESS_ORDERS=true
export EXECUTOR_PROCESS_CLAIMS=true
Now, read this carefully, obtain the private key of the wallet you wish to use, or have testnet funds in any wallet you have been using, such as metamask.
Now you see the code below; see where it says =YOUR_PRIVATE_KEY
your private key should be what is there, so remove that YOUR_PRIVATE_KEY
and put your private key there before you paste the code into your VPS
export PRIVATE_KEY_LOCAL=YOUR_PRIVATE_KEY
After you have done that, copy and paste the following:
export ENABLED_NETWORKS='arbitrum-sepolia,base-sepolia,optimism-sepolia,l1rn'
Immediately followed by:
export EXECUTOR_PROCESS_PENDING_ORDERS_FROM_API=false
And finally,
./executor
Press CTRL + A + D together as usual to exit your screen.
That’s all the easy steps you need to do to run the node.