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