Skip to content

Zentcash/zent-cache-api

Repository files navigation

ZentCash™ Blockchain Cache API

Master Build Status

Build Status Build status

Prerequisites

Foreword

We know that this documentation needs cleaned up and made easier to read. We'll compile it as part of the full documentation as the project moves forward.

Setup

  1. Clone this repository to wherever you'd like the API to run:
git clone https://github.com/ZentCash/blockchain-cache-api
  1. Install the required Node.js modules
cd blockchain-cache-api && npm install
  1. Use your favorite text editor to change the values as necessary in config.json

Note: Make sure you use a read-only database user for security reasons

{
  "bindIp": "0.0.0.0",
  "httpPort": 80,
  "corsHeader": "*"
}
  1. Fire up the script
export RABBIT_PUBLIC_SERVER=localhost
export RABBIT_PUBLIC_USERNAME=yourrabbitmqusername
export RABBIT_PUBLIC_PASSWORD=yourrabbitmqpassword
export MYSQL_HOST=localhost
export MYSQL_PORT=3306
export MYSQL_USERNAME=yourdbusername
export MYSQL_PASSWORD=yourdbpassword
export MYSQL_DATABASE=yourdbname
node index.js
  1. Optionally, install PM2 or another process manager to keep the service running.
npm install -g pm2@latest
pm2 startup
pm2 start index.js --name blockchain-cache-api -i max
pm2 save

API

See https://docs.ZentCash.io/blockapi/ for the full REST API provided by this package.

(c) 2019 ZentCash™ Development Team

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published