@tronscan/client

Tronscan API Client


Keywords
tron, tron-protocol
License
GPL-3.0
Install
npm install @tronscan/client@0.2.59

Documentation

Tronscan Client

Node Client for the Tronscan.org API

How to Use

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,
});