Installation

Auto install

Updated Soon..!

Manual Installation

Install depedencies

sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y

Install GO

sudo rm -rf /usr/local/go
curl -L https://go.dev/dl/go1.21.6.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> $HOME/.bash_profile
source .bash_profile

Sett Vars

echo "export WALLET="Your wallet name"" >> $HOME/.bash_profile
echo "export MONIKER="Your Moniker name"" >> $HOME/.bash_profile
echo "export XRPL_CHAIN_ID="xrplevm_1449000-1"" >> $HOME/.bash_profile
echo "export XRPL_PORT="31"" >> $HOME/.bash_profile
source $HOME/.bash_profile

make sure you change "Wallet="with your own wallet name"" MONIKER="with your own name"" this indicate your node name XRPL_PORT="with you want"" if your server is not have any node u can keep that at port 31 or sett to deffault port, the deffault port is 26.

Download The Binary

Initialize Node

Download Genesis and Addrbook

Sett Seed and Peer

Sett custom port in app.toml

Sett custom port in config.toml

Configure Prunning

Sett minimum gas price, enable prometheus and disable indexing

Create Service

Enable and Start Service

Last updated