Skip to content

Display your helium wallet balance and value (in your chosen currency) on your Magic Mirror. Updates every hour.

License

Notifications You must be signed in to change notification settings

hayseedbyte/MMM-Helium-Wallet

Repository files navigation

MMM-Helium-Wallet

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

helium-wallet usd screenshot helium-wallet uah screenshot

Using the module

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',
      },
    },
  ],
};

Configuration options

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.