Installation (Axelar-testnet+mainnet)

Automatic Installation

source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/axelar)

Manual Installation

# Update the repositories
apt update && apt upgrade -y
# Install developer packages
sudo apt -qy install curl git jq lz4 build-essential
#INSTALL GO
if [ "$(go version)" != "go version go1.20.5 linux/amd64" ]; then \
ver="1.20.5" && \
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" >> $HOME/.bash_profile && \
source $HOME/.bash_profile ; \
fi
go version

Testnet

Wallet

The wallet has been created. In the last line there will be a phrase that must be written down

Fill out the form

Mainnet

Wallet

The wallet has been created. In the last line there will be a phrase that must be written down

Fill out the form

Last updated

Was this helpful?