Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.45 KB

build-seid.md

File metadata and controls

32 lines (20 loc) · 1.45 KB
description
Use this guide to install Seid and connect to Sei network

Build Seid

Prerequisites

Public Endpoints

Please find more accurate public endpoints in this page.

NetworkVersion Endpoint
atlantic-2 (Polkachu)https://sei-testnet-rpc.polkachu.com/abci_info
atlantic-2 (Brochain)https://sei-testnet-2-rpc.brocha.in/abci_info

Install Seid

Find the latest version here from the official Github or from one of the version endpoints in the Public Endpoints section supported by validators. Follow Seid to install the latest version of Seid that's supported by the network that you want to join.

export ENDPOINT=$VERSION_ENDPOINT
export RELEASE=$(curl $ENDPOINT| jq ".response.version" -r)
git clone https://github.com/sei-protocol/sei-chain
cd sei-chain
git checkout $RELEASE
make install-all