XRPL
XRPL Node Guild
Recommended Hardware Requirements
OS: Linux (AMD64)
CPU: 8x
RAM: 32GB
Storage: 1TB Cloud Storage (AWS), SSD or NVMe
Network: 100MbpsInstall Go and Cosmovisor
Install Go
We will use Go v1.23.4 as example here
sudo rm -rvf /usr/local/go/
wget https://golang.org/dl/go1.23.4.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.23.4.linux-amd64.tar.gz
rm go1.23.4.linux-amd64.tar.gzConfigure Go
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/binInstall Cosmovisor
Using Cosmovisor v1.0.0
Install Node
Configure Node
Initialize Node
Please replace YOUR_MONIKER with your own moniker.
Install WASMVM
Config port, pruning, minimum gas price, enable prometheus and disable indexing
Configure Seed
Download Genesis
Configure addrbook
Launch Node
Configure Cosmovisor Folder
Create Cosmovisor folders and load the node binary.
Create Service File
Download snapshot
Start Node Service
Last updated