0.2.99 • Published 12 months ago

@tronscanteam/apiclients v0.2.99

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
12 months ago

How to use

Requirements

  • Node v9.8.0

Running tests

> npm test

Usage

Install the package

> npm install @tronscanteam/apiclients

Use the HTTP Client

import {Client} from "@tronscanteam/apiclients";

const client = new Client();

let recentBlocks = await client.getBlocks({
  sort: '-number',
  limit: 10,
});