NiluPlatform / explorer-api

Expose RestApi to explore Nilu and other eth-based crypto currencies.

Home Page:https://meta.nilu.tech

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

explorer-api

Explorer-api runs as a standalone SprinBoot application and expose RestApi to explore Nilu and other eth-based crypto currencies. It connects directly to a Gilu RPC, hence you can setup your own private Nilu Explorer if you wish. No need for servers, hosting or trusting any third parties to display chain data.

JOIN US

discord:

Discuss this project at: discord.io/nilu

twitter

Follow us on Twitter NiluPlatfrom

Technical Details

The project is built on a Java8+, SpingBoot, Web3J and MongoDB as the DBMS. Use Web3J to listen to an Ethereum RPC Backend, parse generated blocks and then store usefull information in database for further Queries.

Getting started

Prerequisites

If you run the project in you computer, please make sure you have the following installed and running properly:

  • JDK1.8+
  • MongoDB
  • Maven

Installation

    git clone https://github.com/NiluPlatform/explorer-api.git

Then you can run it in IDE or via command line and browse to the project at localhost:8089

Docker

You can run the Explorer-api with "docker run" or Docker Compose.

Dockerfile

After you cloned the source go to explorer-api directory:

mvn clean package
docker build --build-arg JAR_FILE=target/explorer-0.0.1-SNAPSHOT.jar -f Dockerfile -t nilu/explorer .
    

Then you can use docker images to run the Explorer. If you run in docker, you should first run mongodb image

docker run -p 27017:27017 -v $PWD/db:/mongo/db -d mongo
docker run --name nilu-api --link you_mongodb_image_name:mongo -p 8089:8089 -t nilu/explorer

Docker-Compose

After you run the docker build command above, there is an image named nilu/explorer in the docker container.

In explorer-api directory, you can run this command:

docker-compose up -d

You started all the services

About

Expose RestApi to explore Nilu and other eth-based crypto currencies.

https://meta.nilu.tech

License:MIT License


Languages

Language:Java 99.8%Language:Dockerfile 0.2%Language:Shell 0.0%