An open API service indexing awesome lists of open source software.

https://github.com/byteball/obyte-relay

Relay for Byteball network
https://github.com/byteball/obyte-relay

Last synced: about 1 year ago
JSON representation

Relay for Byteball network

Awesome Lists containing this project

README

          

# Relay for Byteball network

This is a node for Byteball network that stores the entire database and forwards new storage units to peers. The relay does not hold any private keys and cannot send payments itself.

## Install

Install node.js, clone the repository, then say
```sh
npm install
```
If you want to accept incoming connections (you probably want), set up a proxy, such as nginx, to forward all websocket connections on a specific path to your daemon running the relay code. See example configuration for nginx in [byteballcore](../../../byteballcore) documentation.

## Run
```sh
node start.js > log &
```
## Customize

If you want to change any defaults, refer to the documentation of [byteballcore](../../../byteballcore), the core Byteball library `require()`'d from here.