Instalación de API Insight#

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

Descarga y extrae la ultima versión de Dash Core:

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

Instala los servicios de la API Insight y (opcionalmente) UI Insight:

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

Cambia las rutas en el archivo de configuración de la siguiente manera:

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

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

  • Opcionalmente cambia el valor de network a testnet si quieres ejecutar Insight en testnet

Ejecutalo:

../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>/

La UI Insight del explorador de bloque estará disponible en:

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