├── .gitignore ├── CMakeLists.txt ├── CryptoNoteWallet.cmake ├── README.md └── src ├── CommandLineParser.cpp ├── CommandLineParser.h ├── CryptoNoteWalletConfig.h.in ├── CryptoNoteWrapper.cpp ├── CryptoNoteWrapper.h ├── CurrencyAdapter.cpp ├── CurrencyAdapter.h ├── LoggerAdapter.cpp ├── LoggerAdapter.h ├── NodeAdapter.cpp ├── NodeAdapter.h ├── Settings.cpp ├── Settings.h ├── SignalHandler.cpp ├── SignalHandler.h ├── WalletAdapter.cpp ├── WalletAdapter.h ├── cryptonotewallet.rc ├── gui ├── AboutDialog.cpp ├── AboutDialog.h ├── AddressBookDialog.cpp ├── AddressBookDialog.h ├── AddressBookFrame.cpp ├── AddressBookFrame.h ├── AddressBookModel.cpp ├── AddressBookModel.h ├── AnimatedLabel.cpp ├── AnimatedLabel.h ├── ChangePasswordDialog.cpp ├── ChangePasswordDialog.h ├── ExitWidget.cpp ├── ExitWidget.h ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.mm ├── NewAddressDialog.cpp ├── NewAddressDialog.h ├── NewPasswordDialog.cpp ├── NewPasswordDialog.h ├── OverviewFrame.cpp ├── OverviewFrame.h ├── PasswordDialog.cpp ├── PasswordDialog.h ├── ReceiveFrame.cpp ├── ReceiveFrame.h ├── RecentTransactionsModel.cpp ├── RecentTransactionsModel.h ├── SendFrame.cpp ├── SendFrame.h ├── SortedTransactionsModel.cpp ├── SortedTransactionsModel.h ├── TransactionDetailsDialog.cpp ├── TransactionDetailsDialog.h ├── TransactionFrame.cpp ├── TransactionFrame.h ├── TransactionsFrame.cpp ├── TransactionsFrame.h ├── TransactionsListModel.cpp ├── TransactionsListModel.h ├── TransactionsModel.cpp ├── TransactionsModel.h ├── TransferFrame.cpp ├── TransferFrame.h ├── WalletEvents.h └── ui │ ├── aboutdialog.ui │ ├── addressbookdialog.ui │ ├── addressbookframe.ui │ ├── changepassworddialog.ui │ ├── exitwidget.ui │ ├── mainwindow.ui │ ├── newaddressdialog.ui │ ├── newpassworddialog.ui │ ├── overviewframe.ui │ ├── passworddialog.ui │ ├── receiveframe.ui │ ├── sendframe.ui │ ├── transactiondetailsdialog.ui │ ├── transactionframe.ui │ ├── transactionsframe.ui │ └── transferframe.ui ├── icons ├── add.png ├── address-book.png ├── clock1.png ├── clock2.png ├── clock3.png ├── clock4.png ├── clock5.png ├── connected.png ├── disconnected.png ├── editcopy.png ├── editpaste.png ├── export.png ├── lock_closed.png ├── lock_open.png ├── overview.png ├── receive.png ├── remove.png ├── send.png ├── sync_sprite.png ├── synced.png ├── transaction.png ├── transactions.png ├── tx_inout.png ├── tx_input.png ├── tx_mined.png ├── tx_output.png └── unconfirmed.png ├── images ├── clock.gif ├── cryptonote.icns ├── cryptonote.ico ├── cryptonote.png └── splash.png ├── main.cpp ├── miniupnpcstrings.h └── resources.qrc /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /build 3 | /tags 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CryptoNoteWallet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/CryptoNoteWallet.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/README.md -------------------------------------------------------------------------------- /src/CommandLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/CommandLineParser.cpp -------------------------------------------------------------------------------- /src/CommandLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/CommandLineParser.h -------------------------------------------------------------------------------- /src/CryptoNoteWalletConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/CryptoNoteWalletConfig.h.in -------------------------------------------------------------------------------- /src/CryptoNoteWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/CryptoNoteWrapper.cpp -------------------------------------------------------------------------------- /src/CryptoNoteWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/CryptoNoteWrapper.h -------------------------------------------------------------------------------- /src/CurrencyAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/CurrencyAdapter.cpp -------------------------------------------------------------------------------- /src/CurrencyAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/CurrencyAdapter.h -------------------------------------------------------------------------------- /src/LoggerAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/LoggerAdapter.cpp -------------------------------------------------------------------------------- /src/LoggerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/LoggerAdapter.h -------------------------------------------------------------------------------- /src/NodeAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/NodeAdapter.cpp -------------------------------------------------------------------------------- /src/NodeAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/NodeAdapter.h -------------------------------------------------------------------------------- /src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/Settings.cpp -------------------------------------------------------------------------------- /src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/Settings.h -------------------------------------------------------------------------------- /src/SignalHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/SignalHandler.cpp -------------------------------------------------------------------------------- /src/SignalHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/SignalHandler.h -------------------------------------------------------------------------------- /src/WalletAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/WalletAdapter.cpp -------------------------------------------------------------------------------- /src/WalletAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/WalletAdapter.h -------------------------------------------------------------------------------- /src/cryptonotewallet.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/cryptonotewallet.rc -------------------------------------------------------------------------------- /src/gui/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AboutDialog.cpp -------------------------------------------------------------------------------- /src/gui/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AboutDialog.h -------------------------------------------------------------------------------- /src/gui/AddressBookDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AddressBookDialog.cpp -------------------------------------------------------------------------------- /src/gui/AddressBookDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AddressBookDialog.h -------------------------------------------------------------------------------- /src/gui/AddressBookFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AddressBookFrame.cpp -------------------------------------------------------------------------------- /src/gui/AddressBookFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AddressBookFrame.h -------------------------------------------------------------------------------- /src/gui/AddressBookModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AddressBookModel.cpp -------------------------------------------------------------------------------- /src/gui/AddressBookModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AddressBookModel.h -------------------------------------------------------------------------------- /src/gui/AnimatedLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AnimatedLabel.cpp -------------------------------------------------------------------------------- /src/gui/AnimatedLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/AnimatedLabel.h -------------------------------------------------------------------------------- /src/gui/ChangePasswordDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ChangePasswordDialog.cpp -------------------------------------------------------------------------------- /src/gui/ChangePasswordDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ChangePasswordDialog.h -------------------------------------------------------------------------------- /src/gui/ExitWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ExitWidget.cpp -------------------------------------------------------------------------------- /src/gui/ExitWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ExitWidget.h -------------------------------------------------------------------------------- /src/gui/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/MainWindow.cpp -------------------------------------------------------------------------------- /src/gui/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/MainWindow.h -------------------------------------------------------------------------------- /src/gui/MainWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/MainWindow.mm -------------------------------------------------------------------------------- /src/gui/NewAddressDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/NewAddressDialog.cpp -------------------------------------------------------------------------------- /src/gui/NewAddressDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/NewAddressDialog.h -------------------------------------------------------------------------------- /src/gui/NewPasswordDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/NewPasswordDialog.cpp -------------------------------------------------------------------------------- /src/gui/NewPasswordDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/NewPasswordDialog.h -------------------------------------------------------------------------------- /src/gui/OverviewFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/OverviewFrame.cpp -------------------------------------------------------------------------------- /src/gui/OverviewFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/OverviewFrame.h -------------------------------------------------------------------------------- /src/gui/PasswordDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/PasswordDialog.cpp -------------------------------------------------------------------------------- /src/gui/PasswordDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/PasswordDialog.h -------------------------------------------------------------------------------- /src/gui/ReceiveFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ReceiveFrame.cpp -------------------------------------------------------------------------------- /src/gui/ReceiveFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ReceiveFrame.h -------------------------------------------------------------------------------- /src/gui/RecentTransactionsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/RecentTransactionsModel.cpp -------------------------------------------------------------------------------- /src/gui/RecentTransactionsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/RecentTransactionsModel.h -------------------------------------------------------------------------------- /src/gui/SendFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/SendFrame.cpp -------------------------------------------------------------------------------- /src/gui/SendFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/SendFrame.h -------------------------------------------------------------------------------- /src/gui/SortedTransactionsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/SortedTransactionsModel.cpp -------------------------------------------------------------------------------- /src/gui/SortedTransactionsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/SortedTransactionsModel.h -------------------------------------------------------------------------------- /src/gui/TransactionDetailsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionDetailsDialog.cpp -------------------------------------------------------------------------------- /src/gui/TransactionDetailsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionDetailsDialog.h -------------------------------------------------------------------------------- /src/gui/TransactionFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionFrame.cpp -------------------------------------------------------------------------------- /src/gui/TransactionFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionFrame.h -------------------------------------------------------------------------------- /src/gui/TransactionsFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionsFrame.cpp -------------------------------------------------------------------------------- /src/gui/TransactionsFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionsFrame.h -------------------------------------------------------------------------------- /src/gui/TransactionsListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionsListModel.cpp -------------------------------------------------------------------------------- /src/gui/TransactionsListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionsListModel.h -------------------------------------------------------------------------------- /src/gui/TransactionsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionsModel.cpp -------------------------------------------------------------------------------- /src/gui/TransactionsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransactionsModel.h -------------------------------------------------------------------------------- /src/gui/TransferFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransferFrame.cpp -------------------------------------------------------------------------------- /src/gui/TransferFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/TransferFrame.h -------------------------------------------------------------------------------- /src/gui/WalletEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/WalletEvents.h -------------------------------------------------------------------------------- /src/gui/ui/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/aboutdialog.ui -------------------------------------------------------------------------------- /src/gui/ui/addressbookdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/addressbookdialog.ui -------------------------------------------------------------------------------- /src/gui/ui/addressbookframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/addressbookframe.ui -------------------------------------------------------------------------------- /src/gui/ui/changepassworddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/changepassworddialog.ui -------------------------------------------------------------------------------- /src/gui/ui/exitwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/exitwidget.ui -------------------------------------------------------------------------------- /src/gui/ui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/mainwindow.ui -------------------------------------------------------------------------------- /src/gui/ui/newaddressdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/newaddressdialog.ui -------------------------------------------------------------------------------- /src/gui/ui/newpassworddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/newpassworddialog.ui -------------------------------------------------------------------------------- /src/gui/ui/overviewframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/overviewframe.ui -------------------------------------------------------------------------------- /src/gui/ui/passworddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/passworddialog.ui -------------------------------------------------------------------------------- /src/gui/ui/receiveframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/receiveframe.ui -------------------------------------------------------------------------------- /src/gui/ui/sendframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/sendframe.ui -------------------------------------------------------------------------------- /src/gui/ui/transactiondetailsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/transactiondetailsdialog.ui -------------------------------------------------------------------------------- /src/gui/ui/transactionframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/transactionframe.ui -------------------------------------------------------------------------------- /src/gui/ui/transactionsframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/transactionsframe.ui -------------------------------------------------------------------------------- /src/gui/ui/transferframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/gui/ui/transferframe.ui -------------------------------------------------------------------------------- /src/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/add.png -------------------------------------------------------------------------------- /src/icons/address-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/address-book.png -------------------------------------------------------------------------------- /src/icons/clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/clock1.png -------------------------------------------------------------------------------- /src/icons/clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/clock2.png -------------------------------------------------------------------------------- /src/icons/clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/clock3.png -------------------------------------------------------------------------------- /src/icons/clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/clock4.png -------------------------------------------------------------------------------- /src/icons/clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/clock5.png -------------------------------------------------------------------------------- /src/icons/connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/connected.png -------------------------------------------------------------------------------- /src/icons/disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/disconnected.png -------------------------------------------------------------------------------- /src/icons/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/editcopy.png -------------------------------------------------------------------------------- /src/icons/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/editpaste.png -------------------------------------------------------------------------------- /src/icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/export.png -------------------------------------------------------------------------------- /src/icons/lock_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/lock_closed.png -------------------------------------------------------------------------------- /src/icons/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/lock_open.png -------------------------------------------------------------------------------- /src/icons/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/overview.png -------------------------------------------------------------------------------- /src/icons/receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/receive.png -------------------------------------------------------------------------------- /src/icons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/remove.png -------------------------------------------------------------------------------- /src/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/send.png -------------------------------------------------------------------------------- /src/icons/sync_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/sync_sprite.png -------------------------------------------------------------------------------- /src/icons/synced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/synced.png -------------------------------------------------------------------------------- /src/icons/transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/transaction.png -------------------------------------------------------------------------------- /src/icons/transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/transactions.png -------------------------------------------------------------------------------- /src/icons/tx_inout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/tx_inout.png -------------------------------------------------------------------------------- /src/icons/tx_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/tx_input.png -------------------------------------------------------------------------------- /src/icons/tx_mined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/tx_mined.png -------------------------------------------------------------------------------- /src/icons/tx_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/tx_output.png -------------------------------------------------------------------------------- /src/icons/unconfirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/icons/unconfirmed.png -------------------------------------------------------------------------------- /src/images/clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/images/clock.gif -------------------------------------------------------------------------------- /src/images/cryptonote.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/images/cryptonote.icns -------------------------------------------------------------------------------- /src/images/cryptonote.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/images/cryptonote.ico -------------------------------------------------------------------------------- /src/images/cryptonote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/images/cryptonote.png -------------------------------------------------------------------------------- /src/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/images/splash.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/miniupnpcstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/miniupnpcstrings.h -------------------------------------------------------------------------------- /src/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonotefoundation/cryptonotewallet/HEAD/src/resources.qrc --------------------------------------------------------------------------------