Skip to content

Commit

Permalink
Merge pull request #1 from iquidus/master
Browse files Browse the repository at this point in the history
pull
  • Loading branch information
flyinghuman authored Aug 20, 2018
2 parents c8ac131 + 30f91a0 commit f013935
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 9 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ An open source block explorer written in node.js.

### See it in action

* [Jumbucks](http://explorer.getjumbucks.com)
* [Deutsche eMark](http://b.emark.tk/)
* [Sphere](http://sphere.iquidus.io)
* [SAR](http://explorer.sarcoin.info)
* [Vanillacoin](https://blockchain.vanillacoin.net/)
* [Neoscoin](http://explorer.infernopool.com/)
* [C2Chain](http://c2chain.info/)
* [Vertcoin](http://explorer.vertcoin.info/)
* [Vivo](http://vivo.explorerz.top:3003)
* [Florincoin](https://florincoin.info/info)

This comment has been minimized.

Copy link
@0828567702

0828567702 Dec 2, 2018

3003

* [Maxcoin Explorer 1](https://explorer.maxcoinproject.net/)
* [Maxcoin Explorer 2](https://explorer2.maxcoinproject.net/)


*note: If you would like your instance mentioned here contact me*

Expand Down
3 changes: 3 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ app.set('locale', locale);
app.set('display', settings.display);
app.set('markets', settings.markets);
app.set('twitter', settings.twitter);
app.set('facebook', settings.youtube);
app.set('googleplus', settings.googleplus);
app.set('youtube', settings.youtube);
app.set('genesis_block', settings.genesis_block);
app.set('index', settings.index);
app.set('heavy', settings.heavy);
Expand Down
4 changes: 2 additions & 2 deletions lib/markets/yobit.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var request = require('request');

var base_url = 'https://yobit.net/api/3';
var base_url = 'https://yobit.io/api/3';

function get_summary(coin, exchange, cb) {
var req_url = base_url + '/ticker/' + coin + '_' + exchange;
Expand Down Expand Up @@ -57,4 +57,4 @@ module.exports = {
});
});
}
};
};
2 changes: 2 additions & 0 deletions lib/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ exports.display = {
"twitter": true,
"facebook": false,

This comment has been minimized.

Copy link
@0828567702

0828567702 Dec 2, 2018

66

"googleplus": false,
"youtube": false,
"search": true,
"richlist": true,
"movement": true,
Expand Down Expand Up @@ -111,6 +112,7 @@ exports.index = {
exports.twitter = "iquidus";
exports.facebook = "yourfacebookpage";
exports.googleplus = "yourgooglepluspage";
exports.youtube = "youryoutubechannel";

exports.confirmations = 6;

Expand Down
4 changes: 3 additions & 1 deletion settings.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"twitter": true,
"facebook": false,
"googleplus": false,
"youtube": false,
"search": true,
"movement": true,
"network": true
Expand Down Expand Up @@ -114,10 +115,11 @@
"high_flag": 5000
},

// twitter, facebook, googleplus
// twitter, facebook, googleplus, youtube
"twitter": "iquidus",
"facebook": "yourfacebookpage",
"googleplus": "yourgooglepluspage",
"youtube": "youryoutubechannel",

//genesis
"genesis_tx": "65f705d2f385dc85763a317b3ec000063003d6b039546af5d8195a5ec27ae410",
Expand Down
7 changes: 6 additions & 1 deletion views/layout.jade
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,12 @@ html
li.pull-left
a#googleplus-icon(href="https://plus.google.com/#{settings.googleplus}", target='_blank')
span.glyphicon.fa.fa-google-plus
.col-md-4
if settings.display.youtube
ul.nav.navbar-nav
li.pull-left
a#youtube-icon(href="https://www.youtube.com/channel/#{settings.youtube}", target='_blank')
span.glyphicon.fa.fa-youtube
.col-md-4
ul.nav
li.text-center(style='margin-left:80px;margin-right:80px;')
p(style='margin-top:15px;')
Expand Down

0 comments on commit f013935

Please sign in to comment.