juneogo

module
v0.0.0-...-6519026 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 19, 2024 License: BSD-3-Clause

README

Node implementation for the Juneo Supernet - a multi chain network founded on the Avalanche protocol.

Installation

The minimum computer requirements are quite modest but that as network usage increases, hardware requirements may change.

The minimum recommended hardware specification for nodes connected to Mainnet is:

  • CPU: Equivalent of 4 AWS vCPU
  • RAM: 8 GiB
  • Storage: 500 GiB
    • Nodes running for very long periods of time or nodes with custom configurations may observe higher storage requirements.
  • OS: Ubuntu 20.04/22.04 or macOS >= 12
  • Network: Reliable IPv4 or IPv6 network connection, with an open public port.

If you plan to build JuneoGo from source, you will also need the following software:

  • Go version >= 1.21.9
  • gcc
  • g++

Building From Source

TBD: Guide is planned to be released after open source release of both JuneoGo and JEth repositories.

Binary Install

Download the latest build.

Documentation for starting a node is available here.

For information on setting up JuneoGo using the installation scripts, please read Set up and Connect a node using the Install Script

The binary to be executed is named juneogo.

Docker Install

To set up JuneoGo using docker, please read Set up and Connect a node using Docker

Running JuneoGo

Connecting to Mainnet

To connect to the Juneo Mainnet, run the juneogo binary file.

You can use Ctrl+C to kill the node.

Connecting to Socotra

To connect to the Socotra Testnet, run the juneogo binary file with the following flag:

--network-id=socotra

If you are using a configuration file you can set it there instead of using flags.

Bootstrapping

A node needs to catch up to the latest network state before it can participate in consensus and serve API calls.

A node will not report healthy until it is done bootstrapping.

To check if a node is healthy you can use health API:

curl -k -H 'Content-Type: application/json' --data '{
    "jsonrpc":"2.0",
    "id"     :1,
    "method" :"health.health",
    "params": {
        "tags": ["11111111111111111111111111111111LpoYY"]
    }
}' 'http://127.0.0.1:9650/ext/health'

If you are using docker installation make sure to use docker ip instead of localhost.

Improvements that reduce the amount of time it takes to bootstrap are under development.

The bottleneck during bootstrapping is typically database IO. Using a more powerful CPU or increasing the database IOPS on the computer running a node will decrease the amount of time bootstrapping takes.

Generating Code

Running protobuf codegen

To regenerate the protobuf go code, run scripts/protobuf_codegen.sh from the root of the repo.

This should only be necessary when upgrading protobuf versions or modifying .proto definition files.

To use this script, you must have buf (v1.31.0), protoc-gen-go (v1.33.0) and protoc-gen-go-grpc (v1.3.0) installed.

To install the buf dependencies:

go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.33.0
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0

If you have not already, you may need to add $GOPATH/bin to your $PATH:

export PATH="$PATH:$(go env GOPATH)/bin"

If you extract buf to ~/software/buf/bin, the following should work:

export PATH=$PATH:~/software/buf/bin/:~/go/bin
go get google.golang.org/protobuf/cmd/protoc-gen-go
go get google.golang.org/protobuf/cmd/protoc-gen-go-grpc
scripts/protobuf_codegen.sh

For more information, refer to the GRPC Golang Quick Start Guide.

Running mock codegen

To regenerate the gomock code, run scripts/mock.gen.sh from the root of the repo.

This should only be necessary when modifying exported interfaces or after modifying scripts/mock.mockgen.txt.

Directories

Path Synopsis
api
server
Package server is a generated GoMock package.
Package server is a generated GoMock package.
atomic
Package atomic is a generated GoMock package.
Package atomic is a generated GoMock package.
Package codec is a generated GoMock package.
Package codec is a generated GoMock package.
Package database is a generated GoMock package.
Package database is a generated GoMock package.
ids
Package message is a generated GoMock package.
Package message is a generated GoMock package.
p2p
proto
consensus/snowman/snowmantest
Package snowmantest is a generated GoMock package.
Package snowmantest is a generated GoMock package.
engine/avalanche/state
Package state manages the meta-data required by consensus for an avalanche dag.
Package state manages the meta-data required by consensus for an avalanche dag.
engine/avalanche/vertex
Package vertex is a generated GoMock package.
Package vertex is a generated GoMock package.
engine/common
Package common is a generated GoMock package.
Package common is a generated GoMock package.
engine/snowman/block
Package block is a generated GoMock package.
Package block is a generated GoMock package.
networking/handler
Package handler is a generated GoMock package.
Package handler is a generated GoMock package.
networking/router
Package router is a generated GoMock package.
Package router is a generated GoMock package.
networking/sender
Package sender is a generated GoMock package.
Package sender is a generated GoMock package.
networking/timeout
Package timeout is a generated GoMock package.
Package timeout is a generated GoMock package.
networking/tracker
Package tracker is a generated GoMock package.
Package tracker is a generated GoMock package.
uptime
Package uptime is a generated GoMock package.
Package uptime is a generated GoMock package.
validators
Package validators is a generated GoMock package.
Package validators is a generated GoMock package.
bag
crypto/keychain
Package keychain is a generated GoMock package.
Package keychain is a generated GoMock package.
filesystem
Package filesystem is a generated GoMock package.
Package filesystem is a generated GoMock package.
hashing
Package hashing is a generated GoMock package.
Package hashing is a generated GoMock package.
ips
resource
Package resource is a generated GoMock package.
Package resource is a generated GoMock package.
rpc
set
vms
Package vms is a generated GoMock package.
Package vms is a generated GoMock package.
avm
avm/block
Package block is a generated GoMock package.
Package block is a generated GoMock package.
avm/block/executor
Package executor is a generated GoMock package.
Package executor is a generated GoMock package.
avm/metrics
Package metrics is a generated GoMock package.
Package metrics is a generated GoMock package.
avm/state
Package state is a generated GoMock package.
Package state is a generated GoMock package.
avm/txs
Package txs is a generated GoMock package.
Package txs is a generated GoMock package.
avm/txs/mempool
Package mempool is a generated GoMock package.
Package mempool is a generated GoMock package.
components/avax
Package avax is a generated GoMock package.
Package avax is a generated GoMock package.
components/verify
Package verify is a generated GoMock package.
Package verify is a generated GoMock package.
fx
platformvm/block
Package block is a generated GoMock package.
Package block is a generated GoMock package.
platformvm/block/executor
Package executor is a generated GoMock package.
Package executor is a generated GoMock package.
platformvm/fx
Package fx is a generated GoMock package.
Package fx is a generated GoMock package.
platformvm/state
Package state is a generated GoMock package.
Package state is a generated GoMock package.
platformvm/txs
Package txs is a generated GoMock package.
Package txs is a generated GoMock package.
platformvm/txs/mempool
Package mempool is a generated GoMock package.
Package mempool is a generated GoMock package.
platformvm/utxo
Package utxo is a generated GoMock package.
Package utxo is a generated GoMock package.
proposervm
Package proposervm is a generated GoMock package.
Package proposervm is a generated GoMock package.
proposervm/proposer
Package proposer is a generated GoMock package.
Package proposer is a generated GoMock package.
proposervm/scheduler
Package scheduler is a generated GoMock package.
Package scheduler is a generated GoMock package.
proposervm/state
Package state is a generated GoMock package.
Package state is a generated GoMock package.
registry
Package registry is a generated GoMock package.
Package registry is a generated GoMock package.
wallet
x
merkledb
Package merkledb is a generated GoMock package.
Package merkledb is a generated GoMock package.
sync
Package sync is a generated GoMock package.
Package sync is a generated GoMock package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL