1 | /*jslint node: true, nomen: true, regexp: true, plusplus: true */ |
||
2 | (function () { |
||
3 | |||
4 | "use strict"; |
||
0 ignored issues
–
show
Unused Code
introduced
by
![]() |
|||
5 | |||
6 | const Blockfolio = require("./lib/blockfolio"); |
||
7 | |||
8 | const PLATFORM = "APIClient", |
||
9 | API_URL = "https://api-v0.blockfolio.com/rest/", |
||
10 | MAGIC_TOKEN = "edtopjhgn2345piuty89whqejfiobh89-2q453", // Common token to pseudo-authenticate API Client |
||
11 | LOCALE = "en-US", |
||
12 | FIAT_CURRENCY = "usd"; |
||
13 | |||
14 | module.exports = new Blockfolio(FIAT_CURRENCY, API_URL, MAGIC_TOKEN, LOCALE, PLATFORM); |
||
15 | |||
16 | })(); |