Fullnode Installation Guide
Chain ID: mayachain-mainnet-v1 | Current Node Version: v1.124.1
Install Go and other requirements
# Remove any existing Go installation
rm -rf ~/.go
# Download and extract Go
wget https://golang.org/dl/go1.23.4.linux-amd64.tar.gz
tar -C ~/ -xzf go1.23.4.linux-amd64.tar.gz
mv ~/go ~/.go
rm go1.23.4.linux-amd64.tar.gzexport GOROOT=$HOME/.go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:$HOME/.go/bin:$HOME/go/bin# For bash
source ~/.bash_profile
# For zsh
source ~/.zshrcInstall Node
Other Considerations
Troubleshooting
Last updated
Was this helpful?