1.0.7 • Published 6 years ago

test-abc-qwerreqd v1.0.7

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

coindata

Complete list of crypto currencies with metadata

Build Status npm

Last Update: 06-05-2018

Install

npm install coindata

Usage

const coindata = require('coindata');

// Get complete list of coins
let coins = coindata.getAll();

// Get a single coin
let coin = coindata.getCoin('btc');

// Get a specifc coin atttribute
let name = coins.getCoin('btc', 'name');

Sample Coin Format

{
        "rank": 1,
        "symbol": "BTC",
        "name": "Bitcoin",
        "maxSupply": 21000000,
        "logoUrl32x32": "https://coinkraal.io/api/coins/BTC/logo",
        "links": [
            {
                "name": "reddit",
                "url": "https://www.reddit.com/r/bitcoin"
            },
            {
                "name": "website",
                "url": "https://bitcoin.org/"
            },
            {
                "name": "sourceCode",
                "url": "https://github.com/bitcoin/"
            },
            {
                "name": "explorer",
                "url": "https://blockchain.info/"
            }
        ]
    }

List of all possible coin links

  • twitter
  • reddit
  • website
  • sourceCode
  • telegram
  • announcement
  • explorer

License

MIT © Dean van Niekerk