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
gitto retrieve the Xion repository, whose default branch contains the latest and greatest code.
$ git clone https://github.com/burnt-labs/xion.gitIf you want a specific stable version, refer to the Releases page.
$ git clone https://github.com/burnt-labs/xion.git -b vX.Y.ZBuild 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 makeWe provide a
Makefilewith several targets common to projects in the Cosmos ecosystem.
$ cd xion
$ make installVerify that the Binary was installed
Assuming everything went well, the binary is now available in your
$PATH
$ xiond version
$ xiond version --long
$ xiond --helpLast updated
Was this helpful?