@coxy/crypto-currency-data
TypeScript icon, indicating that this package has built-in type declarations

2.0.3Β β€’Β PublicΒ β€’Β Published

Crypto currency data information

Description

πŸš€ Get 3000+ crypto currency information. Decimals, descriptions, website, contract ane etc...!

Install

npm install @coxy/crypto-currency-data

Create

import { findCryptoCurrencyData } from '@coxy/crypto-currency-data';

... or using CommonJS syntax:

const { findCryptoCurrencyData } = require('@coxy/crypto-currency-data');
const eth = findCryptoCurrencyData({ ticker: 'eth', network: 'eth' });
const tether = findCryptoCurrencyData({ network: 'eth', contract: '0xdac17f958d2ee523a2206206994597c13d831ec7' });
const inch = getCryptoCurrencyDataById(1);

console.log(validateCryptoAddress('0xdac17f958d2ee523a2206206994597c13d831ec7', tether))

console.log(eth) // eth coin information
console.log(tether) // tether token information
console.log(inch) // inch token information

Provide information by coin

type Coin = {
  id: number,
  network: string,
  ticker: string,
  regex_address:string,
  is_token: boolean,
  decimals_main: number,
  title: string,
  // only for tokens
  smart_contract?: string,
  
  // optional
  regex_extra_id?: string,
  extra_id_title?: string,
  url_block?: string,
  url_address?: string,
  launch_data?: string,
  description?: string,
  web_site?: string,
  decimals_display?: number,
  max_supply?: number,
  proof_type?: string,
  algorithm?: string,
  color?: string
}

Package Sidebar

Install

npm i @coxy/crypto-currency-data

Weekly Downloads

21

Version

2.0.3

License

MIT

Unpacked Size

5.36 MB

Total Files

25

Last publish

Collaborators

  • dsshard