Skip to content

Latest commit

 

History

History
51 lines (45 loc) · 1.2 KB

README.md

File metadata and controls

51 lines (45 loc) · 1.2 KB

logo

Static Badge GitHub last commit NPM Downloads

Neoxa Public API

The project is a tool that allows developers to interact with the Neoxa API. You can easily integrate your project by calling the API with this tool.

Installation

npm install neoxa-public-api

Usage

import * as neoxa from "neoxa-public-api"
const summary = await neoxa.getSummary();

or

import { getSummary } from "neoxa-public-api"

Public API List

import {
  getDifficulty,
  getConnectionCount,
  getBlockCount,
  getBlockHash,
  getBlock,
  getRawTransaction,
  getNetworkHashps,
  getMasternodeCount,
  getMoneySupply,
  getDistribution,
  getAddress,
  getAddressTxs,
  getTx,
  getBalance,
  getLastTxs,
  getCurrentPrice,
  getNetworkPeers,
  getBasicStats,
  getSummary,
  getMasternodeList,
  getMasternodeRewards,
  getMasternodeRewardsTotal,
} from "neoxa-public-api";