Binary Setup of Iond

Clone the repository

cd $HOME
git clone https://github.com/IDEP-network/SanfordV2.git
sudo rm -rf /usr/local/bin/iond && cp -r ${HOME}/SanfordV2/iond /usr/local/bin/
sudo chmod a+x /usr/local/bin/iond

Update the libraries

go get -u github.com/CosmWasm/wasmvm@v1.0.0-beta4
cd $HOME/go/pkg/mod/github.com/\!cosm\!wasm/wasmvm@v1.0.0-beta4/api
chmod +x libwasmvm.so
cp -r $HOME/go/pkg/mod/github.com/\!cosm\!wasm/wasmvm@v1.0.0-beta4/api/libwasmvm.so /usr/lib/

Check the Iond Version.

iond version

Replace the <nickname> conditional variable with the desired nickname, expanding the quotes.

echo "export NICKNAME="<nickname>"" >> ~/.bash_profile

For the variable to load, you need to reload '.bash_profile'.

source ~/.bash_profile

Check the value of the variable by displaying it

echo $NICKNAME

Last updated