forked from bitpay/bitcore-node
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97683d2
commit 73018c4
Showing
3 changed files
with
17 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,8 @@ | ||
Bitcore Node | ||
============ | ||
Bitcore-Node-Crown | ||
================== | ||
|
||
A Bitcoin full node for building applications and services with Node.js. A node is extensible and can be configured to run additional services. At the minimum a node has an interface to [Bitcoin Core with additional indexing](https://github.com/bitpay/bitcoin/tree/0.12.1-bitcore) for more advanced address queries. Additional services can be enabled to make a node more useful such as exposing new APIs, running a block explorer and wallet service. | ||
|
||
## Install | ||
|
||
```bash | ||
npm install -g bitcore-node | ||
bitcore-node start | ||
``` | ||
|
||
Note: For your convenience, we distribute bitcoind binaries for x86_64 Linux and x86_64 Mac OS X. Upon npm install, the binaries for your platform will be downloaded. For more detailed installation instructions, or if you want to compile the project yourself, then please see the Bitcore branch of [Bitcoin Core with additional indexing](https://github.com/bitpay/bitcoin/tree/0.12.1-bitcore). | ||
|
||
## Prerequisites | ||
|
||
- GNU/Linux x86_32/x86_64, or OSX 64bit *(for bitcoind distributed binaries)* | ||
- Node.js v0.10, v0.12 or v4 | ||
- ZeroMQ *(libzmq3-dev for Ubuntu/Debian or zeromq on OSX)* | ||
- ~200GB of disk storage | ||
- ~8GB of RAM | ||
|
||
## Configuration | ||
|
||
Bitcore includes a Command Line Interface (CLI) for managing, configuring and interfacing with your Bitcore Node. | ||
|
||
```bash | ||
bitcore-node create -d <bitcoin-data-dir> mynode | ||
cd mynode | ||
bitcore-node install <service> | ||
bitcore-node install https://github.com/yourname/helloworld | ||
``` | ||
|
||
This will create a directory with configuration files for your node and install the necessary dependencies. For more information about (and developing) services, please see the [Service Documentation](docs/services.md). | ||
|
||
## Add-on Services | ||
|
||
There are several add-on services available to extend the functionality of Bitcore: | ||
|
||
- [Insight API](https://github.com/bitpay/insight-api) | ||
- [Insight UI](https://github.com/bitpay/insight-ui) | ||
- [Bitcore Wallet Service](https://github.com/bitpay/bitcore-wallet-service) | ||
|
||
## Documentation | ||
|
||
- [Upgrade Notes](docs/upgrade.md) | ||
- [Services](docs/services.md) | ||
- [Bitcoind](docs/services/bitcoind.md) - Interface to Bitcoin Core | ||
- [Web](docs/services/web.md) - Creates an express application over which services can expose their web/API content | ||
- [Development Environment](docs/development.md) - Guide for setting up a development environment | ||
- [Node](docs/node.md) - Details on the node constructor | ||
- [Bus](docs/bus.md) - Overview of the event bus constructor | ||
- [Release Process](docs/release.md) - Information about verifying a release and the release process. | ||
|
||
## Contributing | ||
|
||
Please send pull requests for bug fixes, code optimization, and ideas for improvement. For more information on how to contribute, please refer to our [CONTRIBUTING](https://github.com/bitpay/bitcore/blob/master/CONTRIBUTING.md) file. | ||
# This package is under development. Please don't install. | ||
|
||
## License | ||
|
||
Code released under [the MIT license](https://github.com/bitpay/bitcore-node/blob/master/LICENSE). | ||
|
||
Copyright 2013-2015 BitPay, Inc. | ||
|
||
- bitcoin: Copyright (c) 2009-2015 Bitcoin Core Developers (MIT License) | ||
See `LICENSE` file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
{ | ||
"name": "bitcore-node", | ||
"description": "Full node with extended capabilities using Bitcore and Bitcoin Core", | ||
"author": "BitPay <[email protected]>", | ||
"version": "3.1.3", | ||
"name": "bitcore-node-crown", | ||
"description": "Full node with extended capabilities using Bitcore and Crown Core", | ||
"author": "Crown Developers <[email protected]>", | ||
"version": "0.0.0", | ||
"main": "./index.js", | ||
"repository": "git://github.com/bitpay/bitcore-node.git", | ||
"homepage": "https://github.com/bitpay/bitcore-node", | ||
"repository": "git://github.com/Crowndev/bitcore-node-crown.git", | ||
"homepage": "https://github.com/Crowndev/bitcore-node-crown", | ||
"bugs": { | ||
"url": "https://github.com/bitpay/bitcore-node/issues" | ||
"url": "https://github.com/Crowndev/bitcore-node-crown/issues" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "BitPay", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Christopher Jeffrey" | ||
}, | ||
|