Install the WAX Blockchain
The GitHub WAX Blockchain Source Code Repository downloads to the wax-blockchain directory. The download and build process can take several minutes to several hours, depending on your Internet connection, operating system, and hardware specifications.
To download the WAX Blockchain Source Code Repository:
From the command line, clone the Git repository.
shellgit clone https://github.com/worldwide-asset-exchange/wax-blockchain.git
Change the directory to wax-blockchain.
shellcd wax-blockchain
Update Git submodules.
shellgit submodule update --init --recursive
Build the WAX Blockchain
If you're using our Docker images, you do not need to complete these steps.
To build the WAX Blockchain from source, you can use the following steps. If you have a previous version installed, you'll need to uninstall it first. Refer to Uninstall WAX for more information.
WARNING
Important: Refer to Known Issues if you encounter an issue with the build or use our Docker Images instead (recommended). Building from source is not supported.
Run the build script and set the installation directory.
shell./wax_build.sh -i ~/wax-blockchain
TIP
This installs Blockchain Tools to the wax-blockchain/bin directory.
Install WAX to the directory you set in Step 4.
shell./wax_install.sh
Optional. Add the blockchain tools directory to your path.
shellecho "export PATH=~/wax-blockchain/bin:$PATH" >> ~/.bashrc && source ~/.bashrc