@tronscanteam/apiclients
v0.3.5
Published
Tronscan API Client
Downloads
743
Readme
How to use
Requirements
- Node v16.17.0
Running tests
> npm testUsage
Install the package
> npm install @tronscanteam/apiclientsUse the HTTP Client
import {Client} from "@tronscanteam/apiclients";
const client = new Client();
let recentBlocks = await client.getBlocks({
sort: '-number',
limit: 10,
});