Skip to content

pautena/skycoin-explorer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

skycoin explorer logo

Skycoin Explorer

Build Status

https://explorer.skycoin.net

Skycoin Explorer is a tool to interact with Skycoin ecosystem.

You can check blocks, transactions and their states.

https://explorer.skycoin.net

Quick reference

Table of Contents

Installation

Requirements

go>=1.10
node>=v6.9.0
npm>=3.10.10

Go

The server is written in golang.

The golang server returns the static content from dist/ and proxies a subset of the skycoin node API.

Angular

As an Angular CLI projects, Node 6.9.0 or higher, together with NPM 3 are required.

After cloning the project, you will need to run npm install to pull in all javascript dependencies.

The angular code is compiled to the dist/ folder.

Usage

Run a skycoin node

git clone github.com/skycoin/skycoin
cd skycoin
./run.sh

Run the explorer

make run

This must be run from the same directory that contains dist/.

The explorer assumes that the skycoin node is running on localhost:6420 by default.

To point it at a different address:

SKYCOIN_ADDR=https://127.0.0.1:3333 ./explorer

explorer can be run in api-only mode, which will expose the JSON API but not serve the static content from dist/:

make run-api

Docker images

If you want to run Explorer on Docker refer to Docker instructions

API documentation

HTML documentation:

https://explorer.skycoin.net/api.html

JSON formatted API docs:

https://explorer.skycoin.net/api/docs

Development

After changing the angular frontend, it should be compiled and committed to the repo. This is to simplify deployment of the application, and allow users to run it themselves without installing node and npm then running npm install and npm run build.

Compiling the angular frontend

make build-ng

Formatting

explorer.go should be formatted with goimports. You can do this with:

make format

You must have goimports installed (use make install-linters).

Code Linting

Install prerequisites:

make install-linters

Run linters:

make lint

e2e Tests

If you are running a Skycoin node normally, you can run the e2e tests with:

npm run e2e

If you are running a Skycoin node using the test database (blockchain-180.db), you can run the e2e tests with:

npm run e2e-blockchain-180

The second method is the one used in Travis.

Customization

CUSTOMIZATION.md

Deployment

Compile explorer.go to a binary:

make build-go

Allow it to bind to port 80 using setcap:

sudo setcap 'cap_net_bind_service=+ep' ./explorer

Run it on port 80:

EXPLORER_HOST=:80 ./explorer

About

Skycoin blockchain explorer

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 45.4%
  • Go 26.6%
  • HTML 14.5%
  • CSS 10.3%
  • JavaScript 1.2%
  • Makefile 1.0%
  • Other 1.0%