Insight API Installation#

The open-source Dash Insight REST API provides you with a convenient, powerful and simple way to read data from the Dash network and build your own services with it. Simple HTTP endpoints exist for all common operations on the Dash blockchain familiar from the Bitcore Insight API, as well as Dash-specific features such as InstantSend transactions, budget proposals, sporks and the masternode list. This documentation describes how to set up the Dash Insight API server and (optionally) the Dash Insight UI block explorer.

A standard installation of Ubuntu Linux 20.04 LTS will be used as an environment for the server. We assume you are running as a user with sudo permissions. First update all packages and install some tools and dependencies:

sudo apt update
sudo apt upgrade
sudo apt install npm build-essential libzmq3-dev

Lade die aktuelle Dash Core Version herunter und entpacke sie:

cd ~
wget https://github.com/dashpay/dash/releases/download/v20.1.0/dashcore-20.1.0-x86_64-linux-gnu.tar.gz
tar -xvzf dashcore-20.1.0-x86_64-linux-gnu.tar.gz
rm dashcore-20.1.0-x86_64-linux-gnu.tar.gz

Install Dashcore Node and create your configuration:

git clone https://github.com/dashpay/dashcore-node
cd dashcore-node
npm install
./bin/dashcore-node create mynode

Installiere den Insight API-Dienst und die (optionale) Insight UI:

cd mynode
../bin/dashcore-node install @dashevo/insight-api
../bin/dashcore-node install @dashevo/insight-ui

Ändere die Pfade der Konfiguration wie folgt:

nano dashcore-node.json
  • Change the value of datadir to ../../.dashcore

  • Change the value of exec to ../../dashcore-20.1.0/bin/dashd

  • Optional ändere den Wert von network zu testnet, wenn du Insight über das Testnet laufen lassen willst

Führe aus:

../bin/dashcore-node start

Your Insight API node will start up and begin to sync. Progress will be displayed on stdout. Once sync is complete, the API endpoints listed in the documentation will be available at:

https://<ip-address>:3001/insight-api/<endpoint>/

Der Insight UI Blockexplorer ist verfügbar unter:

http://<ip-address>:3001/insight/