Files
atomic-swap/docs/build.md
2022-08-19 20:31:50 -04:00

708 B

Building the project

  1. Install Golang

On Ubuntu, the easiest way to keep up-to-date with the latest stable version of Go is with snap:

sudo snap install go --classic

On other systems or in docker, use the directions here: https://go.dev/doc/install. Summary for X86-64 Linux:

wget https://go.dev/dl/go1.18.3.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.18.3.linux-amd64.tar.gz
echo "export PATH=$PATH:/usr/local/go/bin" >> .profile
source .profile
  1. Clone the repo:
git clone https://github.com/athanorlabs/atomic-swap.git
cd atomic-swap
  1. Finally, build the repo:
make build

This creates the binaries swapd and swapcli.