Build the Xion Daemon
How to build the xiond binary
If you want to build the xiond
binary yourself, this section will show you how.
Fetch the Source Code
Use
git
to retrieve the Xion repository, whose default branch contains the latest and greatest code.
$ git clone https://github.com/burnt-labs/xion.git
If you want a specific stable version, refer to the Releases page.
$ git clone https://github.com/burnt-labs/xion.git -b vX.Y.Z
Build the Binary
# If on windows run the following
sudo apt update && sudo apt install coreutils
# check if make is already installed
make --version
# if it's not installed run
sudo apt install make
We provide a
Makefile
with several targets common to projects in the Cosmos ecosystem.
$ cd xion
$ make install
Verify that the Binary was installed
Assuming everything went well, the binary is now available in your
$PATH
$ xiond version
$ xiond version --long
$ xiond --help
Last updated
Was this helpful?