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
- Host: GitHub
- URL: https://github.com/byteball/obyte-relay
- Owner: byteball
- License: mit
- Created: 2016-08-14T16:59:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-24T20:01:25.000Z (almost 2 years ago)
- Last Synced: 2025-04-14T14:17:37.165Z (about 1 year ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 4
- Watchers: 3
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.