Skip to content

Clarify macOS and API port setup for blockchain node quickstart#272

Open
Devpen787 wants to merge 1 commit into
logos-co:mainfrom
Devpen787:fix/node-quickstart-macos-port-notes
Open

Clarify macOS and API port setup for blockchain node quickstart#272
Devpen787 wants to merge 1 commit into
logos-co:mainfrom
Devpen787:fix/node-quickstart-macos-port-notes

Conversation

@Devpen787
Copy link
Copy Markdown

Summary

  • add the macOS Apple silicon release path to the node quickstart
  • add matching macOS download commands for the node and circuits assets
  • keep the Linux x86_64 example release links consistent with release 0.1.2
  • add a small API port collision check before running the local verification commands

Related to #213.

Why

I dogfooded the headless Logos Blockchain node quickstart from logos-co/logos-docs#213.

On an Apple silicon Mac, the latest 0.1.2 release includes runnable macos-aarch64 node and circuits assets, but the quickstart prerequisites only mention Linux x86_64 and Raspberry Pi. The macOS binary ran locally, init generated user_config.yaml, and --check-config passed.

I also hit a local port collision on 8080. The node logged that it could not bind the API server, but the process continued running. Because another local service was already listening on 8080, the guide's curl localhost:8080/... checks returned a response from the wrong service. After changing api.backend.listen_address to 127.0.0.1:18080, the documented API checks worked with the adjusted port.

Evidence

  • Release checked: logos-blockchain/logos-blockchain latest release 0.1.2
  • Downloaded and extracted:
    • logos-blockchain-circuits-v0.4.2-macos-aarch64.tar.gz
    • logos-blockchain-node-macos-aarch64-0.1.2.tar.gz
  • Ran:
    • ./logos-blockchain-node --version
    • ./logos-blockchain-node --help
    • ./logos-blockchain-node init ...
    • ./logos-blockchain-node --check-config user_config.yaml
    • ./logos-blockchain-node user_config.18080.yaml
    • curl -s http://localhost:18080/cryptarchia/info
    • curl -s http://localhost:18080/network/info

./logos-blockchain-node --version output:

logos-blockchain-node 0.1.2
commit:  05f84a5 (tag 0.1.2)
target:  aarch64-apple-darwin
profile: release
rustc:   rustc 1.94.0 (4a4ef493e 2026-03-02)

Observed API output after using port 18080:

{
  "lib": "646088a81f76e6a6ae35b3cc87f33c9081c12b02932604eee427593251f72bec",
  "lib_slot": 0,
  "tip": "646088a81f76e6a6ae35b3cc87f33c9081c12b02932604eee427593251f72bec",
  "slot": 0,
  "height": 0,
  "mode": "Bootstrapping"
}
{
  "listen_addresses": [
    "/ip4/127.0.0.1/udp/3000/quic-v1",
    "/ip4/192.168.1.4/udp/3000/quic-v1"
  ],
  "peer_id": "12D3KooWAqVd6dspmppz6Zu7988avyfoBqPB7tCwT7Yyauq6LWg1",
  "n_peers": 4,
  "n_connections": 4,
  "n_pending_connections": 0
}

Notes

I did not continue to faucet/token steps because the guide says to wait until the node reaches Online mode first.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant