docs: add prebuilt seid binary install option (node ops + CLI pages)#44
Conversation
Each sei-chain release now attaches a statically linked linux/amd64 seid with checksums. Add it as the recommended install path on the node operations guide and the seid CLI page, alongside build-from-source and Docker. Includes checksum verification and the amd64/Ledger caveats. Asset filenames omit the leading v from the version tag, handled via shell substitution in the examples.
PR SummaryLow Risk Overview
Reviewed by Cursor Bugbot for commit cd76293. Bugbot is set up for automated code reviews on this repo. Configure here. |
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
Review follow-ups to the prebuilt binary install option (#44): Chain verify -> extract -> install with && on both install pages so a failed checksum stops the block instead of installing an unverified binary (Bugbot finding). GNU sha256sum -c also exits non-zero when nothing was verified under --ignore-missing, so pasting the block before a release carries binaries (asset 404) halts at verification too. Extend the prebuilt option to the seid surfaces the PR missed: - node-operators Update Procedures: prebuilt download/verify/replace tabs beside build-from-source for both minor and major updates, with a callout to upgrade via the original install method (make install writes to $(go env GOPATH)/bin, the prebuilt flow to /usr/local/bin; mixing them strands the service unit on a stale binary) - Same PATH-shadowing note on both install pages; Uninstalling seid covers both locations - Prebuilt caveat callout also names the omitted optional RocksDB state-store backend (rocksdb builds remain source-only) - Go prerequisite and GOPATH troubleshooting scoped to source builds - Consistency: <version-tag> placeholders and plain seid version across tabs mint broken-links passes; all three pages verified rendering on a local mint dev (tab panels, callouts, no raw MDX leakage). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Pushed review follow-ups in 5e77cc2: Bugbot fix — the verify → extract → install steps are now Coverage gaps — the install pages weren't the only seid install surfaces:
Validated with The merge hold from the description still applies — v6.5.2 has no binary assets, so this lands with the first release that ships them. |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit cd76293. Configure here.

What
Adds the prebuilt release binary as the recommended
seidinstall path on the two install surfaces, presented as tabs alongside the existing build-from-source and Docker options:node/index.mdx— the Install Sei step in the node setup flowevm/installing-seid-cli.mdx— the CLI installation guideThe instructions cover download, sha256 checksum verification, and install, with callouts for the two caveats:
linux/amd64only, and no hardware Ledger support (both routed to build-from-source/Docker).Why
sei-chain releases attach a statically linked
seid(built and boot-tested by CI via sei-protocol/sei-chain#3749's pipeline), which removes the Go-toolchain requirement for operators. The docs currently only describe building from source.Notes for reviewers
vof the version tag (sei-chain_6.6.0_linux_x86_64.tar.gzunder thev6.6.0release); the examples handle this with${VERSION#v}so copy-paste works.mint broken-linkspasses.