var img = document.createElement('img'); img.src = "https://terradocs.matomo.cloud//piwik.php?idsite=2&rec=1&url=https://feather.terra.money" + location.pathname; img.style = "border:0"; img.alt = "tracker"; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(img,s);
Skip to main content

Building Binaries

User binary​

Build the chain binary with user-only commands. To write the binary to the /bin folder:


make build

To write the binary to the $GOPATH/bin folder:


make install

Dev binary​

Build the chain binary with additional dev-only commands (eg. autoapprover), useful for debugging purposes. To write the binary to the /bin folder:


make build-dev

To write the binary to the $GOPATH/bin folder:


make install-dev