flocore-node/README.md
2017-08-21 11:28:45 -04:00

69 lines
3.1 KiB
Markdown

Bitcore Node
============
A Bitcoin blockchain indexing and query service. Intended to be used with as a Bitcoin full node or in conjunction with a Bitcoin full node.
## Install
```bash
npm install -g bitcore-node
./bin/bitcore-node start
```
Note: A default configuration file is placed in the bitcore user's home directory (~/.bitcore/bitcore-node.json). Or, alternatively, you can copy the provided "bitcore-node.json.sample" file to the project's root directory as bitcore-node.json and edit it for your preferences. If you don't have a preferred block source (trusted peer), [Bcoin](https://github.com/bcoin-org/bcoin) will be started automatically and synchronized with the mainnet chain.
## Prerequisites
- Node.js v8.2.0+
- ~500GB of disk storage
- ~4GB of RAM
## Configuration
The main configuration file is called "bitcore-node.json". This file instructs bitcore-node for the following options:
- location of database files (datadir)
- tcp port for web services, if configured (port)
- bitcoin network type (e.g. mainnet, testnet3, regtest), (network)
- what services to include (services)
- the services' configuration (servicesConfig)
## 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)
- [Fee](docs/services/fee.md) - Creates a service to handle fee queries
- [Header](docs/services/header.md) - Creates a service to handle block headers
- [Block](docs/services/block.md) - Creates a service to handle blocks
- [Transaction](docs/services/transaction.md) - Creates a service to handle transactions
- [Address](docs/services/address.md) - Creates a service to handle addresses
- [Mempool](docs/services/mempool.md) - Creates a service to handle mempool
- [Timestamp](docs/services/timestamp.md) - Creates a service to handle timestamp
- [Db](docs/services/db.md) - Creates a service to handle the database
- [p2p](docs/services/p2p.md) - Creates a service to handle the peer-to-peer network
- [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.
## License
Code released under [the MIT license](https://github.com/bitpay/bitcore-node/blob/master/LICENSE).
Copyright 2013-2017 BitPay, Inc.
- bitcoin: Copyright (c) 2009-2015 Bitcoin Core Developers (MIT License)