gettokendata
v0.0.5
Published
![Dexi](https://i.ibb.co/ZBk2v0b/dexi.png)
Downloads
11
Maintainers
Readme
Token Single Data FREE
WWith this module, you'll have the ability to access comprehensive information about a specific token on the Ethereum network. You can explore its current price, market capitalization, trading volume, circulating supply, and many other essential metrics to make informed decisions about your cryptocurrency investments on the Ethereum network.
Installation
Install using npm:
npm install gettokendata --save
Usage
Require library
import { getTokenDefault } from 'gettokendata'
(async () => {
//address is contract token
let address_token + '0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5';
const result = await getTokenDefault(address_token);
console.log(result);
})();