Full node with extended capabilities using Alterdot and Alterdot (alterdotd)
npm install alterdot-nodeAlterdot Node
============
A Alterdot 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 Alterdot (alterdotd) v1.9.2.1 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.
``bash`
git clone https://github.com/Alterdot/alterdot-node
cd alterdot-node
npm install
./bin/alterdot-node start
When running the start command, it will seek for a .alterdot folder with a alterdot-node.json conf file.
If it doesn't exist, it will create it, with basic task to connect to alterdotd.
Some plugins are available :
- Insight-API : ./bin/alterdot-node addservice insight-api./bin/alterdot-node addservice insight-ui
- Insight-UI :
You also might want to add these index to your alterdot.conf file :
``
-addressindex
-timestampindex
-spentindex
`bash`
npm install alterdot-node
`javascript
const alterdot = require('alterdot-node');
const config = require('./alterdot-node.json');
let node = alterdot.scaffold.start({ path: "", config: config });
node.on('ready', function() {
//Alterdot core started
alterdotd.on('tx', function(txData) {
let tx = new alterdot.lib.Transaction(txData);
});
});
`
- Alterdot (alterdotd) (v1.9.2.1) with support for additional indexing (see above)
- Node.js v8+
- ZeroMQ (libzmq3-dev for Ubuntu/Debian or zeromq on OSX)
- ~20GB of disk storage
- ~1GB of RAM
Alterdot includes a Command Line Interface (CLI) for managing, configuring and interfacing with your Alterdot Node.
`bash`
alterdot-node create -d
cd mynode
alterdot-node install
alterdot-node install https://github.com/yourname/helloworld
alterdot-node start
This will create a directory with configuration files for your node and install the necessary dependencies.
Please note that Alterdot needs to be installed first.
For more information about (and developing) services, please see the Service Documentation.
There are several add-on services available to extend the functionality of Bitcore:
- Insight API
- Insight UI
- Bitcore Wallet Service
- Upgrade Notes
- Services
- Alterdotd - Interface to Alterdot
- Web - Creates an express application over which services can expose their web/API content
- Development Environment - Guide for setting up a development environment
- Node - Details on the node constructor
- Bus - Overview of the event bus constructor
- Release Process - Information about verifying a release and the release process.
Prerequisite : Having a alterdotd node already runing alterdotd --daemon.
Alterdot-node : git clone https://github.com/Alterdot/alterdot-node -b developgit clone https://github.com/Alterdot/insight-api -b develop
Insight-api (optional) : git clone https://github.com/Alterdot/insight-ui -b develop
Insight-UI (optional) :
Install them :
``
cd alterdot-node && npm install \
&& cd ../insight-ui && npm install \
&& cd ../insight-api && npm install && cd ..
Symbolic linking in parent folder :
``
npm link ../insight-api
npm link ../insight-ui
Start with ./bin/alterdot-node start to first generate a ~/.alterdot/alterdot-node.json file."insight-ui"
Append this file with and "insight-api"` in the services array.
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 file.
Code released under the MIT license.
Copyright 2016-2018 Alterdot Group, Inc.
- bitcoin: Copyright (c) 2009-2015 Bitcoin Core Developers (MIT License)