Merge pull request 'Utils: add blockchair.com block explorer' (#132) from tobtoht/feather:blockchair into master

Reviewed-on: feather/feather#132
master
tobtoht 4 years ago
commit 4f9e4ac93d

@ -175,6 +175,11 @@
<string>moneroblocks.info</string>
</property>
</item>
<item>
<property name="text">
<string>blockchair.com</string>
</property>
</item>
</widget>
</item>
<item row="4" column="0">

@ -382,6 +382,11 @@ QString Utils::blockExplorerLink(const QString &blockExplorer, NetworkType::Type
return QString("https://moneroblocks.info/tx/%1").arg(txid);
}
}
else if (blockExplorer == "blockchair.com") {
if (nettype == NetworkType::MAINNET) {
return QString("https://blockchair.com/monero/transaction/%1").arg(txid);
}
}
switch (nettype) {
case NetworkType::MAINNET:

Loading…
Cancel
Save