CoinTools Update: Cryptocurrency Converter Calculator, Support Coin Symbols and Add More Localization


Introduction to CoinTools

CoinTools is a handy gadget to Chrome browser that you can launch easily to view the information of cryptocurrency.

Previous Contributions

  • CoinTools v0.0.4: Conversion Between Two Fiat or Fiat-Coin + 24 Hour Cap Chart
  • CoinTools v0.0.3: Adding Total Market Cap USD Chart, Localization and Stock Price Emoji
  • v0.0.2 Cryptocurrency Conversion + UI Localization
  • v0.0.1 Introduction to CoinTools! A Cryptocurrency Chrome Extension

Technology Stacks

Javascript that runs in Chrome Extension.

Github of CoinTools

https://github.com/DoctorLai/CoinTools

Chrome Webstore

It is available online at Chrome Webstore.

CoinTools v0.0.5 Feature

Along with bug fixes, minor tweaks and code refactoring, v0.0.5 has the following updates:

  • Support Symbols instead of ID so you can use BTC instead of bitcoin, BCH instead of bitcoin-cash.
  • Add Cryptocurrency Converter Calculator
  • Translate some UI texts (localization)

Commits

Here

Roadmap of CoinTools

  • real-time graphs
  • search cryptocurrency
  • historical data

Screenshots of CoinTools

Advance Cryptocurrency Converter Calculator: Converts between FIAT to FIAT, FIAT/Cryptocurrency or Cryptocurrency to Cryptocurrency.

cointools-cryptocurrency-converter-calculator CoinTools Update: Cryptocurrency Converter Calculator, Support Coin Symbols and Add More Localization chrome extension Cryptocurrency php

cointools-cryptocurrency-converter-calculator

Shorter symbols can be used rather than full IDs.

cointools-shorter-cryptocurrency-symbols CoinTools Update: Cryptocurrency Converter Calculator, Support Coin Symbols and Add More Localization chrome extension Cryptocurrency php

cointools-shorter-cryptocurrency-symbols

PHP Script to create Cryptocurrency symbol-id mapping

coinmarkcap.js is created via the following PHP script based on CoinMarketCap API.

1
2
3
4
5
6
7
8
9
<?php
echo "<pre>";
$api = "https://api.coinmarketcap.com/v1/ticker/?limit=9999";
$data = json_decode(file_get_contents($api), true);
echo "let coinmarkcap = {};\n";
foreach($data as $row) {
  echo "coinmarkcap['" . $row['symbol'] . "'] = '" . $row['id']. "';\n";
}
echo "</pre>";
<?php
echo "<pre>";
$api = "https://api.coinmarketcap.com/v1/ticker/?limit=9999";
$data = json_decode(file_get_contents($api), true);
echo "let coinmarkcap = {};\n";
foreach($data as $row) {
  echo "coinmarkcap['" . $row['symbol'] . "'] = '" . $row['id']. "';\n";
}
echo "</pre>";

License

MIT

Contribution Welcome

Github: https://github.com/DoctorLai/SteemTools/

  • Fork it!
  • Create your feature branch: git checkout -b my-new-feature
  • Commit your changes: git commit -am ‘Add some feature’
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request.

Chrome Webstore

Install the CoinTools Now!

–EOF (The Ultimate Computing & Technology Blog) —

GD Star Rating
loading...
607 words
Last Post: Utopian v0.0.11: Adding Statistics Charts, Improved Reputation Formatter and Sponsor Chart
Next Post: CoinTools Update: Show Full Cryptocurrency Details by Click or Startup, Add Language Handlers

The Permanent URL is: CoinTools Update: Cryptocurrency Converter Calculator, Support Coin Symbols and Add More Localization

Leave a Reply