From 6dc652c0d8db40a670fd00ec5737dfbe8b528f1a Mon Sep 17 00:00:00 2001
From: Michael Flaxman
+ Multiwallet generates seeds (wallets), validates receive addresses (before getting a payment), and signs transactions (to spend your bitcoin).
+ It is designed for use on an airgapped/eternally quarantined machine.
+
+ Multiwallet is free open-source software with no warranty.
+ Use at your own risk.
+
+ Good:
+
+ Welcome to Multiwallet
+
+
+
+
+
+ Bad: +
+ Read more about Multiwallet on GitHub. + Our community Telegram group can be found at https://t.me/multiwallet. +
+""" + + +class AboutTab(QWidget): + TITLE = "About" + HOVER = "Info about Multiwallet GUI" + + def __init__(self): + super().__init__() + + vbox = QVBoxLayout(self) + + self.mainLabel = QLabel(ABOUT_COPY) + self.mainLabel.setWordWrap(True) + + vbox.addWidget(self.mainLabel) + vbox.setAlignment(Qt.AlignTop) + + self.setLayout(vbox)