From 3c94ca3d3a68efe06522020d7bbcd29773b21361 Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Thu, 9 Feb 2017 18:17:08 -0500 Subject: [PATCH] Added a bitcore-node.sample file. --- bitcore-node.json.sample | 22 ++++++++++++++++++++++ package.json | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 bitcore-node.json.sample diff --git a/bitcore-node.json.sample b/bitcore-node.json.sample new file mode 100644 index 00000000..3f281e9a --- /dev/null +++ b/bitcore-node.json.sample @@ -0,0 +1,22 @@ +{ + "network": "livenet", + "port": 3001, + "datadir": "/tmp", + "services": [ + "bitcoind", + "db", + "transaction", + "timestamp", + "address", + "mempool", + "wallet-api", + "web" + ], + "servicesConfig": { + "bitcoind": { + "connect": [ + { "rpcconnect": "127.0.0.1", "rpcport": 8332, "rpcuser": "bitcoin", "rpcpassword": "local321", "zmqpubrawtx": "tcp://127.0.0.1:28332" } + ] + } + } +} diff --git a/package.json b/package.json index c64da5cb..1bd660a3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "bitcore-node", "description": "Full node with extended capabilities using Bitcore and Bitcoin Core", "author": "BitPay ", - "version": "3.1.3", + "version": "4.0.0", "main": "./index.js", "repository": "git://github.com/bitpay/bitcore-node.git", "homepage": "https://github.com/bitpay/bitcore-node",