Call it blockstreamer

This commit is contained in:
Tyera Eulberg 2019-02-21 16:20:19 -07:00 committed by Tyera Eulberg
parent d8f6865338
commit deeabb862d
2 changed files with 10 additions and 10 deletions

View File

@ -24,7 +24,7 @@
- [The Runtime](runtime.md)
- [API Reference](api-reference.md)
- [API Node](api-node.md)
- [Blockstreamer](blockstreamer.md)
- [JSON RPC API](jsonrpc-api.md)
- [JavaScript API](javascript-api.md)
- [solana-wallet CLI](wallet.md)

View File

@ -1,15 +1,15 @@
# API Node
# Blockstreamer
Solana supports a fullnode type called an *api node*. This node type is intended
for applications that need to observe the data plane, without participating in
transaction validation or ledger replication.
Solana supports a node type called an *blockstreamer*. This fullnode variation
is intended for applications that need to observe the data plane without
participating in transaction validation or ledger replication.
An api node runs without a vote signer, and can optionally stream ledger entries
out to a Unix domain socket as they are processed. The JSON-RPC service still
functions as on any other node.
A blockstreamer runs without a vote signer, and can optionally stream ledger
entries out to a Unix domain socket as they are processed. The JSON-RPC service
still functions as on any other node.
To run an api node, include the argument `no-signer` and (optional)
`entry-stream` socket location:
To run a blockstreamer, include the argument `no-signer` and (optional)
`blockstream` socket location:
```bash
$ ./multinode-demo/fullnode-x.sh --no-signer --blockstream <SOCKET>