NO LONG WORKS SINCE MIGRATION TO SOLANA
This is a module for the MagicMirror².
It displays your Helium(HNT) wallet balance and the value in your chosen currency. Uses the helium and coingecko api's.
Also, thanks to nhalstead for his currencies.json
To use this module, add the following configuration block to the modules array in the config/config.js
file:
var config = {
modules: [
{
module: 'MMM-Helium-Wallet',
position: 'bottom_right',
header: 'Helium Wallet Balance',
config: {
// See below for configurable options
address: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
currency: 'usd',
},
},
],
};
Option | Description |
---|---|
address |
Required Your Helium Wallet Address |
currency |
Required What currency to display. Options are: 'usd', 'ars', 'aud', 'bmd', 'brl', 'cad', 'chf', 'clp', 'cny', 'czk', 'dkk', 'eur', 'gbp', 'hkd', 'huf', 'idr', 'ils', 'inr', 'jpy', 'krw', 'lkr', 'mxn', 'myr', 'ngn', 'nok', 'nzd', 'php', 'pkr', 'pln', 'rub', 'sar', 'sek', 'sgd', 'thb', 'try', 'twd', 'uah', 'vef', 'vnd', 'zar' |
header |
Optional What, if any, text you'd like to be at the top of the module. |