-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmixedMessages.js
59 lines (45 loc) · 1.91 KB
/
mixedMessages.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//declaring request in order to retrieve price data
const request = require('request');
//produces a request based on a specific URL
function doRequest(url) {
return new Promise(function (resolve, reject) {
request(url, function (error, res, body) {
if (!error && res.statusCode == 200) {
resolve(body);
} else {
reject(error);
}
});
});
}
//prints data to the terminal
function printInfo (price) {
let satsPrice = price/100000000;
let randomSats = Math.floor(Math.random() * 10000);
let satsTotal = Math.round((satsPrice * randomSats) * 1000 + Number.EPSILON ) / 1000;
console.log(`Price PER Sat: $${satsPrice}`);
console.log(`Sats to purchase today: ${randomSats}`);
console.log(`Total for Sats Purchased: $${satsTotal}`);
}
//retrieves the price data from blockchain.info
async function main() {
let res = await doRequest('https://blockchain.info/de/ticker');
const data = JSON.parse(res);
value = (parseInt(data.CAD.buy, 10) + parseInt(data.CAD.sell, 10)) / 2;
printInfo(value);
}
//title of program being converted to raw for the backslashes
const title = String.raw`
$$$$$$\ $$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ $$\ $$$$$$\
$$ __$$\ $$ __$$\\__$$ __|$$ __$$\ $$ __$$\ $$ __$$\ $$ | $$ __$$\
$$ / \__|$$ / $$ | $$ | $$ / \__| $$ / \__|$$ / $$ |$$ | $$ / \__|
\$$$$$$\ $$$$$$$$ | $$ | \$$$$$$\ $$ | $$$$$$$$ |$$ | $$ |
\____$$\ $$ __$$ | $$ | \____$$\ $$ | $$ __$$ |$$ | $$ |
$$\ $$ |$$ | $$ | $$ | $$\ $$ | $$ | $$\ $$ | $$ |$$ | $$ | $$\
\$$$$$$ |$$ | $$ | $$ | \$$$$$$ | \$$$$$$ |$$ | $$ |$$$$$$$$\\$$$$$$ |
\______/ \__| \__| \__| \______/ \______/ \__| \__|\________|\______/
`;
//print title to terminal
console.log(title);
//call for the sats
main();