Prep for v2.3.0

This commit is contained in:
Mononaut 2022-04-28 16:42:43 -06:00
parent a650445c1f
commit 3f748cd6c4
4 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "bitfeed-client",
"version": "2.2.1",
"version": "2.3.0",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",

View File

@ -14,7 +14,7 @@ function getInjectedEnv (key, fallback) {
export default {
dev: ENVIRONMENT === 'development',
// external API for processing donations, retrieving donor info & message bar content
donationRoot: 'https://donate.monospace.live',
donationRoot: 'https://donate.bitfeed.live',
// enables some additional logging & debugging tools
debug: false,
// enables an additional square packing algorithm debugging tool

View File

@ -27,6 +27,7 @@ The API server expects the following environment variables to be set:
| LOG_LEVEL | Tailor logging verbosity. either "error", "info" (default) or "debug" |
| RPC_POOLS | Number of connection pools for RPC requests to Bitcoin Core |
| RPC_POOL_SIZE | Number of connections maintained per pool (RPC_POOLS x RPC_POOL_SIZE should be substantially lower than `rpcworkqueue` in bitcoin.conf) |
| INDEXED | 'true' to build indexes required for certain features (see [INDEXES.md](https://github.com/bitfeed-project/block/master/server/INDEXES.md) for details). Omit this variable to disable indexing |
| BITCOIN_HOST | Bitcoin node host address |
| BITCOIN_ZMQ_RAWBLOCK_PORT | Bitcoin node ZMQ port for block events (to match `zmqpubrawblock` in bitcoin.conf) |
| BITCOIN_ZMQ_RAWTX_PORT | Bitcoin node ZMQ port for transaction events (to match `zmqpubrawtx` in bitcoin.conf) |

View File

@ -4,7 +4,7 @@ defmodule BitcoinStream.MixProject do
def project do
[
app: :bitcoin_stream,
version: "2.2.1",
version: "2.3.0",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),