2020-05-02 09:04:33 +02:00
|
|
|
var https = require('https');
|
|
|
|
var fs = require('fs');
|
|
|
|
|
2020-05-02 11:59:14 +02:00
|
|
|
var PATH = 'dist/mempool/resources/';
|
2020-05-02 09:04:33 +02:00
|
|
|
if (process.argv[2] && process.argv[2] === 'dev') {
|
2020-05-02 11:59:14 +02:00
|
|
|
PATH = 'src/resources/';
|
2020-05-02 09:04:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function download(filename, url) {
|
|
|
|
var file = fs.createWriteStream(filename);
|
|
|
|
https.get(url, function(response) {
|
|
|
|
response.pipe(file);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Downloading assets');
|
|
|
|
download(PATH + 'assets.json', 'https://raw.githubusercontent.com/Blockstream/asset_registry_db/master/index.json');
|
|
|
|
console.log('Downloading assets minimal');
|
|
|
|
download(PATH + 'assets.minimal.json', 'https://raw.githubusercontent.com/Blockstream/asset_registry_db/master/index.minimal.json');
|
2020-05-09 19:35:21 +02:00
|
|
|
console.log('Downloading mining pools info');
|
|
|
|
download(PATH + 'pools.json', 'https://raw.githubusercontent.com/btccom/Blockchain-Known-Pools/master/pools.json');
|