From 3113f957312fe908acb604fbb107b0df0142ad06 Mon Sep 17 00:00:00 2001 From: alexander-sei Date: Sun, 29 Dec 2024 03:27:04 +0100 Subject: [PATCH 1/2] Update dev-querying-state.mdx Removed small duplicate section --- pages/dev-querying-state.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/pages/dev-querying-state.mdx b/pages/dev-querying-state.mdx index e11cdd81..69d17cd4 100644 --- a/pages/dev-querying-state.mdx +++ b/pages/dev-querying-state.mdx @@ -38,8 +38,6 @@ Archive nodes, on the other hand, store the entire history of the blockchain fro • **Use Cases**: Archive nodes are crucial for tasks that require access to historical data, such as catching up indexers, conducting historical analysis, and verifying past transactions. -## **Querying by Block Height** - ## **Using Indexers for Historical Data** While archive nodes provide the raw historical data, indexers are essential for efficiently querying and analyzing this data. Indexers organize and optimize the data, making it easier to access and analyze. From b3e588b27ee6b9fd2caad90c9aeff363d518c8fb Mon Sep 17 00:00:00 2001 From: alexander-sei Date: Mon, 30 Dec 2024 15:48:20 +0100 Subject: [PATCH 2/2] Add precompiled binaries --- pages/dev-node/node-operators.mdx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pages/dev-node/node-operators.mdx b/pages/dev-node/node-operators.mdx index 961ff30c..56b7f016 100644 --- a/pages/dev-node/node-operators.mdx +++ b/pages/dev-node/node-operators.mdx @@ -16,6 +16,24 @@ import VersionTable from '../../components/VersionFetcher/VersionTable'; _The following instructions are for Debian-based systems. Other operating systems like macOS or Arch will use a slightly different procedure._ +## Option 1: Install from Precompiled Binaries +If you prefer not to build seid from source, you can use precompiled binaries. Make sure to select the correct architecture for your machine (e.g., linux-amd64 for typical 64-bit Linux systems, darwin-arm64 for macOS). + +Head to [sei-binares](https://github.com/alexander-sei/sei-binaries/releases) to pick the release. Download and install it as follows: + +``` +cd ~ + +# Replace with the link the precompiled binary +wget -O seid + +# Copy the binary into your PATH (e.g., /usr/local/bin) +sudo cp seid /usr/local/bin/seid +sudo chmod +x /usr/local/bin/seid +``` + +## Option 2: Manually compiling seid + ### Update and Upgrade System Packages ```bash @@ -74,6 +92,8 @@ git checkout $VERSION make install ``` +## Initialize and Configure the Node + ### Initialize Node 1. Initialize the node: