Browse Source

Add action to view all assets owned by a given transparent address

pull/45/head
Jonathan "Duke" Leto 5 years ago
parent
commit
1e0b6e4bcc
  1. 7
      src/mainwindow.cpp

7
src/mainwindow.cpp

@ -1097,8 +1097,15 @@ void MainWindow::setupBalancesTab() {
}
QDesktopServices::openUrl(QUrl(url));
});
menu.addAction(tr("Address Asset Viewer"), [=] () {
QString url;
url = "https://dexstats.info/assetviewer.php?address=" + addr;
QDesktopServices::openUrl(QUrl(url));
});
}
//TODO: No sprout UTXOs on the Hush chain, should we remove all turnstile code?
if (Settings::getInstance()->isSproutAddress(addr)) {
menu.addAction(tr("Migrate to Sapling"), [=] () {
this->turnstileDoMigration(addr);

Loading…
Cancel
Save