@ftap
Hi ftap,
it is still the same. it is the only module im running now, even if i change the ’ into " it dont work. If i use any other module with API’s like “mmm-weatherforcast or mmm-fuel etc.” everything works fine. It’s only this module.
Nodejs = v15.6.0.
MagicMirror = v2.14.0
npm = v7.4.0
var config = {
address: "localhost",
port: 8080,
basePath: "/",
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
useHttps: false, // Support HTTPS or not, default "false" will use HTTP
httpsPrivateKey: "", // HTTPS private key path, only require when useHttps is true
httpsCertificate: "", // HTTPS Certificate path, only require when useHttps is true
language: "de",
timeFormat: 24,
units: "metric",
logLevel: ["INFO", "LOG", "WARN", "ERROR"],
modules: [
{
module: 'MMM-CoinMarketCap',
position: "top_left",
header: "Crypto",
config: {
apiKey: 'myapikey12345678980',
currencies: ['bitcoin', 'ethereum', 'litecoin', 'stellar'],
view: 'graphWithChanges',
conversion: 'EUR',
}
},
]
};