2.0.3 • Published 2 years ago

@coxy/crypto-currency-data v2.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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
}
2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.18

3 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago