Installation
Manual node setup
Update and upgrade
sudo apt update && sudo apt upgrade -yInstall GO
if ! [ -x "$(command -v go)" ]; then
ver="1.19.3"
cd $HOME
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile
source ~/.bash_profile
fiInstall node
cd $HOME
rm -rf umee
git clone https://github.com/umee-network/umee.git
cd umee
git checkout v
make installSetting up vars
Configure your node
Initialize your node
Download genesis & addrbook
(OPTIONAL) Set custom ports
Set seeds and peers
Config pruning
Set minimum gas price and null indexer
Create Service
Reset blockchain info and restart your node
(OPTIONAL) Use State Sync
Starting a validator
2. Create validator
Set up Price-feeder
Install price-feeder
Add price-feeder key
Fund price-feeder wallet
Set up variables
Export variables
Set up price-feeder config
Create price-feeder service
Delegate price-feeder
Start price-feeder
Last updated