Skip to content

mrmikeo/nodeqreditapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node Qredit API Helper

https://telegram.me/@MrMike_O

A Promised NodeJS Module for connecting with the Qredit V2 API (.. and other Chains forked from Ark v2)

A Full Integration Guide for both QreditAPI and QAE can be found here: Qredit Integration Guide

Install via git

git clone https://github.com/mrmikeo/nodeqreditapi
cd nodeqreditapi
npm install

node example.js

example.js:

const qreditApi = require("./lib/qreditApi");
const qapi = new qreditApi.default();


(async () => {
  
  var currentHeight = await qapi.getBlockHeight();
  
  console.log("Blockchain Height: " + currentHeight);
  
})();

Install via npm

npm install --save https://github.com/mrmikeo/nodeqreditapi
const qreditApi = require("nodeQreditApi");
const qapi = new qreditApi.default();


(async () => {
  
  var currentHeight = await qapi.getBlockHeight();
  
  console.log("Blockchain Height: " + currentHeight);
  
})();

About

A Promised NodeJS Module for connecting with the Qredit V2 API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors