JasminDreasond / Tiny-Market-Lib

Simple calculators to get prices or market cap of currencies and cryptocurrencies.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Discord server NPM version NPM downloads Patreon Ko-Fi

npm installnfo

Tiny-Market-Lib

Simple calculators to get prices or market cap of currencies and cryptocurrencies.

This is a simple repository to help the development of projects that want to calculate currencies exchange.

const tinyMarketLib = require('tiny-market-lib');

Bitcoin Example

Circulating Supply - 18,745,293 BTC

Market Cap - $655,637,242,497

Price - $34,976.10

Get Market Cap (Circulating Supply, Price, Fixer Value {OPTIONAL})

tinyMarketLib.getMarketCap(18745293, 34976.10);

Get Price by Market Cap (Market Cap, Circulating Supply, Fixer Value {OPTIONAL})

tinyMarketLib.getPriceByMarketCap(655637242497, 18745293);

Get Bitcoin Sell Amount (Amount, Market Cap, Bitcoin Supply, Fixer Value {OPTIONAL})

tinyMarketLib.getSellAmount(1, 655637242497, 18745293);


Token Example

Token Circulating Supply - 1.1778 PUDDY

Crypto Circulating Supply - 0.0118560 BNB

Market Cap - 0.011856 BNB

Get Sell Amount (Amount, Crypto Supply, Token Supply, Fixer Value {OPTIONAL})

tinyMarketLib.getSellAmount(1, 0.0118560, 1.1778);

Get Buy Amount (Amount, Crypto Supply, Token Supply, Fixer Value {OPTIONAL})

tinyMarketLib.getBuyAmount(1, 0.0118560, 1.1778);

About

Simple calculators to get prices or market cap of currencies and cryptocurrencies.

License:MIT License


Languages

Language:JavaScript 100.0%