Coinmon is a open source tool allow user to check bitcoin and other cryptocurrancy price in kali linux terminal.Apart from price,coinmon also provide various option to filter the chart result like search coins,convert prices to Euro,find top 50 coins.user can also add the bitcoin and other cryptocurrancy into portfolio using coinmon in kali linux terminal.
All the data fetched by this tool comes from coinmarketcap.comAPIs.
In order to use coinmon, make sure that you have Node version 6.0.0 or higher.install node using below command:
Now run the following command to install Coinmon:
You can use the -t (or --top) with the index to find the top n cryptocurrencies ranked by their market cap.
You can use the -p (or --portfolio) to retrieve price info and value estimation for your personal crypto portfolio specified in $HOME/.coinmon/portfolio.json in the following format:
All the data fetched by this tool comes from coinmarketcap.comAPIs.
![]() |
coinmon |
How to install coinmon into kali linux 2017.3?
In order to use coinmon, make sure that you have Node version 6.0.0 or higher.install node using below command:
sudo apt-get install nodejs
sudo apt-get install npm
Now run the following command to install Coinmon:
git clone https://github.com/bichenkk/coinmon.git
cd coinmon
yarn
npm install -g
npm link
How to check bitcoin price using Coinmon?
Run below command to check bitcoin price:
coinmon -f btc
Find top coin(s)
You can use the -t (or --top) with the index to find the top n cryptocurrencies ranked by their market cap.
coinmon -t 50 // find top 50
coinmon -t 1000 // find top 1000
Convert to specific currency base
coinmon -c eur // convert prices to Euro
coinmon -c jpy // convert prices to Yen
Add your portfolio
You can use the -p (or --portfolio) to retrieve price info and value estimation for your personal crypto portfolio specified in $HOME/.coinmon/portfolio.json in the following format:
cd
mkdir .coinmon
cd .coinmon
touch portfolio.json
0 comments:
Post a Comment