Home

Awesome

go-algorand

BranchBuild Status
rel/stableCircleCI
rel/betaCircleCI
rel/nightlyCircleCI

Algorand's official implementation in Go.

Algorand is a permissionless, pure proof-of-stake blockchain that delivers decentralization, scalability, security, and transaction finality.

Getting Started

Visit our developer website for the most up-to-date information about using and installing the Algorand platform.

Building from Source

Development is done using the Go Programming Language. The Go version is specified in the project's go.mod file. This document assumes you have a functioning environment set up. If you need assistance setting up an environment, please visit the official Go documentation website.

Linux / OSX

We currently strive to support Debian-based distributions, with Ubuntu 20.04 as our official release target. Building on Arch Linux also works well. Our core engineering team uses Linux and OSX, so both environments are well-supported for development.

OSX Only: Homebrew (brew) must be installed before continuing. Here are the installation requirements.

Initial Environment Setup

git clone https://github.com/algorand/go-algorand
cd go-algorand
./scripts/configure_dev.sh
./scripts/buildtools/install_buildtools.sh

At this point, you are ready to build go-algorand. We use make and have several targets to automate common tasks.

Build

make install

Test

# Unit tests
make test

# Integration tests
make integration

Style and Checks

make fmt
make lint
make fix
make vet

Alternatively, run:

make sanity

Running a Node

Once the software is built, you'll find binaries in ${GOPATH}/bin, and a data directory will be initialized at ~/.algorand. Start your node with:

${GOPATH}/bin/goal node start -d ~/.algorand

Use:

${GOPATH}/bin/carpenter -d ~/.algorand

to see activity. Refer to the developer website for instructions on using different tools.

Providing Your Own Data Directory

You can run a node out of other directories than ~/.algorand and join networks other than mainnet. Just make a new directory and copy the genesis.json file for the network into it. For example:

mkdir ~/testnet_data
cp installer/genesis/testnet/genesis.json ~/testnet_data/genesis.json
${GOPATH}/bin/goal node start -d ~/testnet_data

Genesis files for mainnet, testnet, and betanet can be found in installer/genesis/.

Contributing

Please refer to our CONTRIBUTING document.

Project Layout

go-algorand is organized into various subsystems and packages:

Core

Provides core functionality to the algod and kmd daemons, as well as other tools and commands:

Daemon

Contains the two daemons that provide Algorand clients with services:

Interfacing

Enables developers to interface with the Algorand system:

Deployment

Helps Algorand developers deploy networks of their own:

Utilities

Provides utilities for the various components:

Test

License

License: AGPL v3

Please see the COPYING_FAQ for details on how to apply our license.

Copyright (C) 2019-2024, Algorand Inc.