AlveyChain Documents
  • Alveychain Docs
  • Get-Started
    • Alveychain
    • Installation
    • Local Setup
    • Cloud Setup
    • Full Node
    • CLI Commands
    • JSON RPC Commands
    • Performance Reports
  • Configuration
    • Manage private keys
    • Set up Hashicorp Vault
    • Enable Prometheus metrics
  • Working-With-Node
    • Query JSON RPC endpoints
    • Query operator information
    • Backup/restore node instance
  • Consensus
    • Proof of Authority (PoA)
    • Proof of Stake
    • Set up and use Proof of Stake (PoS)
    • Migration from PoA to PoS
  • Additional Features
    • Alveycoin bridge
    • Network stress testing
    • Blockscout
  • Architecture
    • Architecture Overview
    • modules
      • Blockchain
      • Consensus
      • JSON RPC
      • Minimal
      • Networking
      • Other modules
      • Protocol
      • Sealer
      • State
      • Storage
      • TxPool
      • Types
  • Concepts
    • State in Ethereum
  • Community
    • Propose a new feature
    • Report an issue
  • Docs
    • Server Config File
    • how-tos
      • How to set up and use Proof of Stake (PoS)
Powered by GitBook
On this page
  • Pre-built releases
  • Docker image
  • Building from source
  • Using go install
  1. Get-Started

Installation

PreviousAlveychainNextLocal Setup

Last updated 2 years ago

Please refer to the installation method more applicable to you.

Our recommendation is to use the pre-built releases and verify the provided checksums.

Pre-built releases

Please refer to the page for a list of releases.

Alveychain comes with cross-compiled AMD64/ARM64 binaries for Darwin and Linux.


Docker image

Official Docker images are hosted under the .

docker pull alveychainlab/alveychain:latest


Building from source

Prior to using go install make sure that you have Go >=1.16 installed and properly configured.

The stable branch is develop.

git clone https://github.com/alveychain-lab/alveychain.git
cd alveychain/
go build main.go -o alveychain
sudo mv alveychain /usr/local/bin

Using go install

Prior to using go install make sure that you have Go >=1.16 installed and properly configured.

go install github.com/alveychain-lab/alveychain@dev

The binary will be available in your GOBIN environment variable, and will include the latest changes from the mainline develop branch.

GitHub Releases
hub.docker.com registry