Skip to content

Downloads

The repository currently ships Windows binaries in Releases/:

FilePurpose
bootstrap-v1.0.exeBootstrap node
peer-node-v1.0.exePeer CLI
bootstrap-v1.1.exeUpdated bootstrap node
peer-v1.1.exeUpdated peer CLI
gui-v1.1.exeFyne desktop client

These are the files to mirror or package when you want to distribute the current builds.

Loading live data from GitHub...

Repository

Name: -

Description: -

Stars: -

Language: -

Last push: -

Open Issues

Count: -

    Open Milestones

    Count: -

      From Network/:

      Terminal window
      go build -o bootstrap ./cmd/bootstrap
      go build -o peer ./cmd/peer
      go build -o gui ./cmd/gui

      The repository also has a Makefile:

      Terminal window
      make bootstrap
      make peer

      And a Windows build script:

      Terminal window
      powershell -File build.ps1 -OutDir ./bin -v 1.1

      That script builds every package in cmd/ and names the output name-version.exe. The GUI build uses the Windows GUI subsystem flag.

      • bootstrap asks for a name, prints multiaddrs, and writes bs-nodes
      • peer reads bs-nodes, joins the network, and runs discovery
      • gui opens a desktop window and wraps the same shared node package

      Build from source when you want to:

      • change the node package
      • test the current branch instead of a published release
      • produce your own platform-specific binaries

      The current published artifacts are Windows executables. If you need macOS or Linux builds, compile them locally from Network/ with your target Go toolchain and build tags.