├── .github └── workflows │ ├── build.yml │ └── guix.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── HACKING.md ├── LICENSE ├── MAINTENANCE.md ├── Makefile ├── README.md ├── RELEASE.md ├── SECURITY.md ├── cmake ├── CheckLinkerFlag.c ├── FindBCUR.cmake ├── FindGCrypt.cmake ├── FindPolyseed.cmake ├── FindQREncode.cmake ├── FindZLIB.cmake ├── FindZXing.cmake ├── GenerateDocs.cmake ├── TorQrcGenerator.cmake ├── assets_docs.qrc └── assets_tor.qrc ├── contrib ├── AppImage │ ├── AppRun │ └── build-appimage.sh ├── debian │ ├── control │ └── make_deb.sh ├── depends │ ├── .gitignore │ ├── Makefile │ ├── builders │ │ ├── default.mk │ │ └── linux.mk │ ├── config.guess │ ├── config.sub │ ├── funcs.mk │ ├── hosts │ │ ├── darwin.mk │ │ ├── default.mk │ │ ├── linux.mk │ │ └── mingw32.mk │ ├── packages │ │ ├── abseil.mk │ │ ├── appimage_runtime.mk │ │ ├── boost.mk │ │ ├── darwin_sdk.mk │ │ ├── dbus.mk │ │ ├── expat.mk │ │ ├── flatstart.mk │ │ ├── fontconfig.mk │ │ ├── freetype.mk │ │ ├── hidapi.mk │ │ ├── libXau.mk │ │ ├── libevent.mk │ │ ├── libffi.mk │ │ ├── libfuse.mk │ │ ├── libgcrypt.mk │ │ ├── libgpg-error.mk │ │ ├── libsodium.mk │ │ ├── libsquashfuse.mk │ │ ├── libusb.mk │ │ ├── libxcb.mk │ │ ├── libxcb_util.mk │ │ ├── libxcb_util_cursor.mk │ │ ├── libxcb_util_image.mk │ │ ├── libxcb_util_keysyms.mk │ │ ├── libxcb_util_render.mk │ │ ├── libxcb_util_wm.mk │ │ ├── libxkbcommon.mk │ │ ├── libzip.mk │ │ ├── native_abseil.mk │ │ ├── native_expat.mk │ │ ├── native_libffi.mk │ │ ├── native_protobuf.mk │ │ ├── native_qt.mk │ │ ├── native_wayland.mk │ │ ├── openssl.mk │ │ ├── packages.mk │ │ ├── polyseed.mk │ │ ├── protobuf.mk │ │ ├── qrencode.mk │ │ ├── qt.mk │ │ ├── tor_darwin.mk │ │ ├── tor_linux.mk │ │ ├── tor_mingw32.mk │ │ ├── unbound.mk │ │ ├── wayland.mk │ │ ├── xcb_proto.mk │ │ ├── xorgproto.mk │ │ ├── zlib.mk │ │ ├── zstd.mk │ │ └── zxing-cpp.mk │ ├── patches │ │ ├── abseil │ │ │ └── no_librt.patch │ │ ├── appimage_runtime │ │ │ └── depends-fix.patch │ │ ├── boost │ │ │ ├── disable_addr2line.patch │ │ │ └── filesystem_macos_sdk.patch │ │ ├── dbus │ │ │ └── remove-DDBUS_STATIC_BUILD.patch │ │ ├── flatstart │ │ │ ├── main.S │ │ │ └── main.c │ │ ├── fontconfig │ │ │ └── gperf_header_regen.patch │ │ ├── hidapi │ │ │ └── cmake-fix-libusb.patch │ │ ├── libXau │ │ │ └── toolchain.txt │ │ ├── libfuse │ │ │ ├── mount.c.diff │ │ │ ├── no-dlopen.patch │ │ │ ├── set_fusermount_path.patch │ │ │ └── toolchain.txt │ │ ├── libgcrypt │ │ │ └── no-programs.patch │ │ ├── libgpg-error │ │ │ └── no-programs.patch │ │ ├── libsodium │ │ │ └── fix-blake2b-symbol-naming.patch │ │ ├── libusb │ │ │ ├── CMakeLists.txt │ │ │ └── config.h.in │ │ ├── libxcb │ │ │ └── remove_pthread_stubs.patch │ │ ├── libxcb_util_cursor │ │ │ └── flatpak.patch │ │ ├── libxkbcommon │ │ │ ├── no-test-x11.patch │ │ │ └── toolchain.txt │ │ ├── native_libxcb │ │ │ └── remove_pthread_stubs.patch │ │ ├── native_qt │ │ │ ├── guix_cross_lib_path.patch │ │ │ ├── qtbase-moc-ignore-gcc-macro.patch │ │ │ ├── rcc_hardcode_timestamp.patch │ │ │ └── root_CMakeLists.txt │ │ ├── native_wayland │ │ │ └── toolchain.txt │ │ ├── polyseed │ │ │ └── force-static-mingw.patch │ │ ├── qt │ │ │ ├── fix-static-fontconfig-static-linking.patch │ │ │ ├── fix_static_qt_darwin_camera_permissions.patch │ │ │ ├── libxau-fix.patch │ │ │ ├── rcc_hardcode_timestamp.patch │ │ │ ├── root_CMakeLists.txt │ │ │ ├── toolchain.cmake │ │ │ ├── v4l2.patch │ │ │ └── windows_func_fix.patch │ │ ├── utf8proc │ │ │ └── force_static.patch │ │ ├── wayland │ │ │ └── toolchain.txt │ │ └── zlib │ │ │ └── win-lib-name.patch │ └── toolchain.cmake.in ├── docs │ └── generate.py ├── flatpak │ ├── .flatpakref │ ├── .flatpakrepo │ ├── icons │ │ └── gnome │ │ │ ├── window-close-symbolic.svg │ │ │ ├── window-maximize-symbolic.svg │ │ │ ├── window-minimize-symbolic.svg │ │ │ └── window-restore-symbolic.svg │ ├── make_flatpak.sh │ ├── make_runtime.sh │ ├── metadata │ └── share │ │ ├── app-info │ │ ├── icons │ │ │ └── flatpak │ │ │ │ ├── 128x128 │ │ │ │ └── org.featherwallet.Feather.png │ │ │ │ └── 256x256 │ │ │ │ └── org.featherwallet.Feather.png │ │ └── xmls │ │ │ └── .gitkeep │ │ ├── applications │ │ └── org.featherwallet.Feather.desktop │ │ ├── icons │ │ └── hicolor │ │ │ ├── 128x128 │ │ │ └── apps │ │ │ │ └── org.featherwallet.Feather.png │ │ │ └── 256x256 │ │ │ └── apps │ │ │ └── org.featherwallet.Feather.png │ │ └── metainfo │ │ └── org.featherwallet.Feather.metainfo.xml ├── generate-restore-heights │ └── heights.py ├── guix │ ├── INSTALL.md │ ├── LICENSE.txt │ ├── README.md │ ├── guix-attest │ ├── guix-build │ ├── guix-clean │ ├── guix-verify │ ├── libexec │ │ ├── build.sh │ │ └── prelude.bash │ ├── manifest.scm │ ├── pack.scm │ └── patches │ │ ├── binutils-unaligned-default.patch │ │ ├── gcc-remap-guix-store.patch │ │ ├── glibc-2.31-riscv64-fix-incorrect-jal-with-HIDDEN_JUMPTARGET.patch │ │ ├── glibc-guix-prefix.patch │ │ ├── oscrypto-hard-code-openssl.patch │ │ └── winpthreads-remap-guix-store.patch ├── installers │ └── windows │ │ ├── LICENSE.txt │ │ ├── appicon.ico │ │ └── setup.nsi.in ├── macdeploy │ ├── Info.plist.in │ ├── README.md │ └── gen-sdk └── shell │ ├── git-utils.bash │ └── realpath.bash ├── src ├── Application.cpp ├── Application.h ├── CMakeLists.txt ├── CoinsWidget.cpp ├── CoinsWidget.h ├── CoinsWidget.ui ├── ContactsWidget.cpp ├── ContactsWidget.h ├── ContactsWidget.ui ├── HistoryWidget.cpp ├── HistoryWidget.h ├── HistoryWidget.ui ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.ui ├── ReceiveWidget.cpp ├── ReceiveWidget.h ├── ReceiveWidget.ui ├── SendWidget.cpp ├── SendWidget.h ├── SendWidget.ui ├── SettingsDialog.cpp ├── SettingsDialog.h ├── SettingsDialog.ui ├── WindowManager.cpp ├── WindowManager.h ├── assets.qrc ├── assets │ ├── about.txt │ ├── ack.txt │ ├── docs │ │ └── .gitkeep │ ├── feather.desktop │ ├── gpg_keys │ │ └── featherwallet.asc │ ├── images │ │ ├── appicons │ │ │ ├── 128x128.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 48x48.png │ │ │ ├── 512x512.png │ │ │ ├── 64x64.png │ │ │ ├── 64x64.png~ │ │ │ ├── 96x96.png │ │ │ ├── appicon.icns │ │ │ ├── appicon.ico │ │ │ ├── monero.png │ │ │ └── monero_grey.png │ │ ├── arrow.svg │ │ ├── banners │ │ │ └── 3.png │ │ ├── camera_dark.png │ │ ├── camera_white.png │ │ ├── change_account.png │ │ ├── chipset_32px.png │ │ ├── clock1.png │ │ ├── clock2.png │ │ ├── clock3.png │ │ ├── clock4.png │ │ ├── clock5.png │ │ ├── coins.png │ │ ├── coldcard.png │ │ ├── coldcard_unpaired.png │ │ ├── confirmed.svg │ │ ├── connect.svg │ │ ├── connect_white.svg │ │ ├── copy.png │ │ ├── edit.png │ │ ├── exchange.png │ │ ├── exchange_white.png │ │ ├── expired.png │ │ ├── external-link.svg │ │ ├── eye1.png │ │ ├── eye_blind.png │ │ ├── feather.png │ │ ├── file.png │ │ ├── file_manager_32px.png │ │ ├── gnome-calc.png │ │ ├── hd_32px.png │ │ ├── history.png │ │ ├── i2p.png │ │ ├── info.png │ │ ├── info2.svg │ │ ├── interface_32px.png │ │ ├── key.png │ │ ├── ledger.png │ │ ├── ledger_unpaired.png │ │ ├── lightning.png │ │ ├── lock.svg │ │ ├── microphone.png │ │ ├── mining.png │ │ ├── network.png │ │ ├── nw_32px.png │ │ ├── offline_tx.png │ │ ├── password-show-off.svg │ │ ├── password-show-on.svg │ │ ├── person.svg │ │ ├── pin.png │ │ ├── preferences.svg │ │ ├── qrcode.png │ │ ├── qrcode_white.png │ │ ├── register.svg │ │ ├── revealer.png │ │ ├── revealer_c.png │ │ ├── seal.png │ │ ├── securityLevelSafer.png │ │ ├── securityLevelSafer.svg │ │ ├── securityLevelSaferWhite.png │ │ ├── securityLevelSafest.png │ │ ├── securityLevelSafest.svg │ │ ├── securityLevelSafestWhite.png │ │ ├── securityLevelStandard.png │ │ ├── securityLevelStandard.svg │ │ ├── securityLevelStandardWhite.png │ │ ├── seed.png │ │ ├── settings_disabled_32px.png │ │ ├── sign.png │ │ ├── speaker.png │ │ ├── status_connected.svg │ │ ├── status_connected_proxy.svg │ │ ├── status_disconnected.svg │ │ ├── status_lagging.svg │ │ ├── status_offline.svg │ │ ├── status_waiting.svg │ │ ├── tab_addresses.png │ │ ├── tab_coins.png │ │ ├── tab_console.png │ │ ├── tab_contacts.png │ │ ├── tab_history.png │ │ ├── tab_home.png │ │ ├── tab_notes.png │ │ ├── tab_party.png │ │ ├── tab_receive.png │ │ ├── tab_send.png │ │ ├── terminal.png │ │ ├── tor_logo.png │ │ ├── tor_logo_disabled.png │ │ ├── trezor.png │ │ ├── trezor_unpaired.png │ │ ├── trezor_unpaired_white.png │ │ ├── trezor_white.png │ │ ├── unconfirmed.png │ │ ├── unlock.svg │ │ ├── unpaid.png │ │ ├── update.png │ │ ├── vrdp_32px.png │ │ ├── warning.png │ │ └── zoom.png │ ├── macStylesheet.patch │ ├── nodes.json │ ├── org.featherwallet.feather.metainfo.xml │ ├── restore_heights_monero_mainnet.txt │ ├── restore_heights_monero_stagenet.txt │ └── tor │ │ └── .gitkeep ├── components.cpp ├── components.h ├── constants.cpp ├── constants.h ├── dialog │ ├── AboutDialog.cpp │ ├── AboutDialog.h │ ├── AboutDialog.ui │ ├── AccountSwitcherDialog.cpp │ ├── AccountSwitcherDialog.h │ ├── AccountSwitcherDialog.ui │ ├── AddressCheckerIndexDialog.cpp │ ├── AddressCheckerIndexDialog.h │ ├── AddressCheckerIndexDialog.ui │ ├── AddressInfoDialog.ui │ ├── BalanceDialog.cpp │ ├── BalanceDialog.h │ ├── BalanceDialog.ui │ ├── ContactsDialog.cpp │ ├── ContactsDialog.h │ ├── ContactsDialog.ui │ ├── DebugInfoDialog.cpp │ ├── DebugInfoDialog.h │ ├── DebugInfoDialog.ui │ ├── DocsDialog.cpp │ ├── DocsDialog.h │ ├── DocsDialog.ui │ ├── HistoryExportDialog.cpp │ ├── HistoryExportDialog.h │ ├── HistoryExportDialog.ui │ ├── InfoDialog.cpp │ ├── InfoDialog.h │ ├── InfoDialog.ui │ ├── KeysDialog.cpp │ ├── KeysDialog.h │ ├── KeysDialog.ui │ ├── LegacySeedRecovery.cpp │ ├── LegacySeedRecovery.h │ ├── LegacySeedRecovery.ui │ ├── MultiLineInputDialog.cpp │ ├── MultiLineInputDialog.h │ ├── MultiLineInputDialog.ui │ ├── OutputInfoDialog.cpp │ ├── OutputInfoDialog.h │ ├── OutputInfoDialog.ui │ ├── OutputSweepDialog.cpp │ ├── OutputSweepDialog.h │ ├── OutputSweepDialog.ui │ ├── PasswordChangeDialog.cpp │ ├── PasswordChangeDialog.h │ ├── PasswordChangeDialog.ui │ ├── PasswordDialog.cpp │ ├── PasswordDialog.h │ ├── PasswordDialog.ui │ ├── PasswordSetDialog.cpp │ ├── PasswordSetDialog.h │ ├── PasswordSetDialog.ui │ ├── PaymentRequestDialog.cpp │ ├── PaymentRequestDialog.h │ ├── PaymentRequestDialog.ui │ ├── QrCodeDialog.cpp │ ├── QrCodeDialog.h │ ├── QrCodeDialog.ui │ ├── SeedDialog.cpp │ ├── SeedDialog.h │ ├── SeedDialog.ui │ ├── SeedDiceDialog.cpp │ ├── SeedDiceDialog.h │ ├── SeedDiceDialog.ui │ ├── SeedRecoveryDialog.cpp │ ├── SeedRecoveryDialog.h │ ├── SeedRecoveryDialog.ui │ ├── SignVerifyDialog.cpp │ ├── SignVerifyDialog.h │ ├── SignVerifyDialog.ui │ ├── SplashDialog.cpp │ ├── SplashDialog.h │ ├── SplashDialog.ui │ ├── TorInfoDialog.cpp │ ├── TorInfoDialog.h │ ├── TorInfoDialog.ui │ ├── TxBroadcastDialog.cpp │ ├── TxBroadcastDialog.h │ ├── TxBroadcastDialog.ui │ ├── TxConfAdvDialog.cpp │ ├── TxConfAdvDialog.h │ ├── TxConfAdvDialog.ui │ ├── TxConfDialog.cpp │ ├── TxConfDialog.h │ ├── TxConfDialog.ui │ ├── TxImportDialog.cpp │ ├── TxImportDialog.h │ ├── TxImportDialog.ui │ ├── TxInfoDialog.cpp │ ├── TxInfoDialog.h │ ├── TxInfoDialog.ui │ ├── TxPoolViewerDialog.cpp │ ├── TxPoolViewerDialog.h │ ├── TxPoolViewerDialog.ui │ ├── TxProofDialog.cpp │ ├── TxProofDialog.h │ ├── TxProofDialog.ui │ ├── URSettingsDialog.cpp │ ├── URSettingsDialog.h │ ├── URSettingsDialog.ui │ ├── VerifyProofDialog.cpp │ ├── VerifyProofDialog.h │ ├── VerifyProofDialog.ui │ ├── ViewOnlyDialog.cpp │ ├── ViewOnlyDialog.h │ ├── ViewOnlyDialog.ui │ ├── WalletCacheDebugDialog.cpp │ ├── WalletCacheDebugDialog.h │ ├── WalletCacheDebugDialog.ui │ ├── WalletInfoDialog.cpp │ ├── WalletInfoDialog.h │ └── WalletInfoDialog.ui ├── libwalletqt │ ├── AddressBook.cpp │ ├── AddressBook.h │ ├── Coins.cpp │ ├── Coins.h │ ├── PassphraseHelper.cpp │ ├── PassphraseHelper.h │ ├── PendingTransaction.cpp │ ├── PendingTransaction.h │ ├── Subaddress.cpp │ ├── Subaddress.h │ ├── SubaddressAccount.cpp │ ├── SubaddressAccount.h │ ├── TransactionHistory.cpp │ ├── TransactionHistory.h │ ├── UnsignedTransaction.cpp │ ├── UnsignedTransaction.h │ ├── Wallet.cpp │ ├── Wallet.h │ ├── WalletListenerImpl.cpp │ ├── WalletListenerImpl.h │ ├── WalletManager.cpp │ ├── WalletManager.h │ └── rows │ │ ├── AccountRow.h │ │ ├── CoinsInfo.cpp │ │ ├── CoinsInfo.h │ │ ├── ConstructionInfo.cpp │ │ ├── ConstructionInfo.h │ │ ├── ContactRow.h │ │ ├── Input.h │ │ ├── Output.h │ │ ├── PendingTransactionInfo.cpp │ │ ├── PendingTransactionInfo.h │ │ ├── SubaddressRow.h │ │ ├── TransactionRow.cpp │ │ ├── TransactionRow.h │ │ └── TxBacklogEntry.h ├── main.cpp ├── model │ ├── AddressBookModel.cpp │ ├── AddressBookModel.h │ ├── AddressBookProxyModel.cpp │ ├── AddressBookProxyModel.h │ ├── CoinsModel.cpp │ ├── CoinsModel.h │ ├── CoinsProxyModel.cpp │ ├── CoinsProxyModel.h │ ├── HistoryView.cpp │ ├── HistoryView.h │ ├── NodeModel.cpp │ ├── NodeModel.h │ ├── SubaddressAccountModel.cpp │ ├── SubaddressAccountModel.h │ ├── SubaddressModel.cpp │ ├── SubaddressModel.h │ ├── SubaddressProxyModel.cpp │ ├── SubaddressProxyModel.h │ ├── SubaddressView.cpp │ ├── SubaddressView.h │ ├── TransactionHistoryModel.cpp │ ├── TransactionHistoryModel.h │ ├── TransactionHistoryProxyModel.cpp │ ├── TransactionHistoryProxyModel.h │ ├── WalletKeysFilesModel.cpp │ └── WalletKeysFilesModel.h ├── monero_seed │ ├── LICENSE.txt │ ├── README.md │ ├── argon2 │ │ ├── argon2.c │ │ ├── argon2.h │ │ ├── blake2 │ │ │ ├── blake2-impl.h │ │ │ ├── blake2.h │ │ │ ├── blake2b.c │ │ │ └── blamka-round-ref.h │ │ ├── core.c │ │ ├── core.h │ │ └── ref.c │ ├── galois_field.cpp │ ├── galois_field.hpp │ ├── gf_elem.cpp │ ├── gf_elem.hpp │ ├── gf_poly.cpp │ ├── gf_poly.hpp │ ├── monero_seed.cpp │ ├── monero_seed.hpp │ ├── pbkdf2.c │ ├── pbkdf2.h │ ├── reed_solomon_code.cpp │ ├── reed_solomon_code.hpp │ ├── secure_random.cpp │ ├── secure_random.hpp │ ├── sha256 │ │ └── hash_impl.h │ ├── wordlist.cpp │ └── wordlist.hpp ├── openpgp │ ├── CMakeLists.txt │ ├── hash.h │ ├── mpi.h │ ├── openpgp.cpp │ ├── openpgp.h │ ├── packet_stream.h │ ├── s_expression.h │ └── serialization.h ├── plugins │ ├── Plugin.h │ ├── PluginRegistry.h │ ├── calc │ │ ├── CalcConfigDialog.cpp │ │ ├── CalcConfigDialog.h │ │ ├── CalcConfigDialog.ui │ │ ├── CalcPlugin.cpp │ │ ├── CalcPlugin.h │ │ ├── CalcWidget.cpp │ │ ├── CalcWidget.h │ │ ├── CalcWidget.ui │ │ ├── CalcWindow.cpp │ │ ├── CalcWindow.h │ │ └── CalcWindow.ui │ ├── crowdfunding │ │ ├── CCSEntry.h │ │ ├── CCSModel.cpp │ │ ├── CCSModel.h │ │ ├── CCSProgressDelegate.cpp │ │ ├── CCSProgressDelegate.h │ │ ├── CCSWidget.cpp │ │ ├── CCSWidget.h │ │ ├── CCSWidget.ui │ │ ├── CrowdfundingPlugin.cpp │ │ └── CrowdfundingPlugin.h │ ├── home │ │ ├── HomePlugin.cpp │ │ ├── HomePlugin.h │ │ ├── HomeWidget.cpp │ │ ├── HomeWidget.h │ │ └── HomeWidget.ui │ ├── revuo │ │ ├── RevuoItem.h │ │ ├── RevuoPlugin.cpp │ │ ├── RevuoPlugin.h │ │ ├── RevuoWidget.cpp │ │ ├── RevuoWidget.h │ │ └── RevuoWidget.ui │ └── tickers │ │ ├── TickersConfigAddDialog.cpp │ │ ├── TickersConfigAddDialog.h │ │ ├── TickersConfigAddDialog.ui │ │ ├── TickersConfigDialog.cpp │ │ ├── TickersConfigDialog.h │ │ ├── TickersConfigDialog.ui │ │ ├── TickersPlugin.cpp │ │ ├── TickersPlugin.h │ │ ├── TickersWidget.cpp │ │ ├── TickersWidget.h │ │ └── TickersWidget.ui ├── polyseed │ ├── pbkdf2.c │ ├── pbkdf2.h │ ├── polyseed.cpp │ └── polyseed.h ├── qrcode │ ├── QrCode.cpp │ ├── QrCode.h │ ├── QrCode_p.h │ ├── scanner │ │ ├── QrCodeScanDialog.cpp │ │ ├── QrCodeScanDialog.h │ │ ├── QrCodeScanDialog.ui │ │ ├── QrCodeScanWidget.cpp │ │ ├── QrCodeScanWidget.h │ │ ├── QrCodeScanWidget.ui │ │ ├── QrScanThread.cpp │ │ ├── QrScanThread.h │ │ ├── URDialog.cpp │ │ ├── URDialog.h │ │ ├── URDialog.ui │ │ ├── URWidget.cpp │ │ ├── URWidget.h │ │ └── URWidget.ui │ └── utils │ │ ├── QrCodeUtils.cpp │ │ └── QrCodeUtils.h ├── third-party │ └── bcur │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── bc-ur.hpp │ │ ├── bytewords.cpp │ │ ├── bytewords.hpp │ │ ├── cbor-lite.hpp │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── fountain-decoder.cpp │ │ ├── fountain-decoder.hpp │ │ ├── fountain-encoder.cpp │ │ ├── fountain-encoder.hpp │ │ ├── fountain-utils.cpp │ │ ├── fountain-utils.hpp │ │ ├── memzero.c │ │ ├── memzero.h │ │ ├── random-sampler.cpp │ │ ├── random-sampler.hpp │ │ ├── sha2.c │ │ ├── sha2.h │ │ ├── ur-decoder.cpp │ │ ├── ur-decoder.hpp │ │ ├── ur-encoder.cpp │ │ ├── ur-encoder.hpp │ │ ├── ur.cpp │ │ ├── ur.hpp │ │ ├── utils.cpp │ │ ├── utils.hpp │ │ ├── xoshiro256.cpp │ │ └── xoshiro256.hpp ├── ui │ ├── BreezeStyleSheets │ │ ├── breeze.qrc │ │ ├── dark.qss │ │ ├── dark │ │ │ ├── branch_closed-on.svg │ │ │ ├── branch_closed.svg │ │ │ ├── branch_open-on.svg │ │ │ ├── branch_open.svg │ │ │ ├── checkbox_checked.svg │ │ │ ├── checkbox_checked_disabled.svg │ │ │ ├── checkbox_indeterminate.svg │ │ │ ├── checkbox_indeterminate_disabled.svg │ │ │ ├── checkbox_unchecked.svg │ │ │ ├── checkbox_unchecked_disabled.svg │ │ │ ├── close-hover.svg │ │ │ ├── close-pressed.svg │ │ │ ├── close.svg │ │ │ ├── down_arrow-hover.svg │ │ │ ├── down_arrow.svg │ │ │ ├── down_arrow_disabled.svg │ │ │ ├── hmovetoolbar.svg │ │ │ ├── hsepartoolbar.svg │ │ │ ├── left_arrow.svg │ │ │ ├── left_arrow_disabled.svg │ │ │ ├── radio_checked.svg │ │ │ ├── radio_checked_disabled.svg │ │ │ ├── radio_unchecked.svg │ │ │ ├── radio_unchecked_disabled.svg │ │ │ ├── right_arrow.svg │ │ │ ├── right_arrow_disabled.svg │ │ │ ├── sizegrip.svg │ │ │ ├── spinup_disabled.svg │ │ │ ├── stylesheet-branch-end-closed.svg │ │ │ ├── stylesheet-branch-end-open.svg │ │ │ ├── stylesheet-branch-end.svg │ │ │ ├── stylesheet-branch-more.svg │ │ │ ├── stylesheet-vline.svg │ │ │ ├── transparent.svg │ │ │ ├── undock-hover.svg │ │ │ ├── undock.svg │ │ │ ├── up_arrow-hover.svg │ │ │ ├── up_arrow.svg │ │ │ ├── up_arrow_disabled.svg │ │ │ ├── vmovetoolbar.svg │ │ │ └── vsepartoolbars.svg │ │ ├── light.qss │ │ └── light │ │ │ ├── branch_closed-on.svg │ │ │ ├── branch_closed.svg │ │ │ ├── branch_open-on.svg │ │ │ ├── branch_open.svg │ │ │ ├── checkbox_checked-hover.svg │ │ │ ├── checkbox_checked.svg │ │ │ ├── checkbox_checked_disabled.svg │ │ │ ├── checkbox_indeterminate-hover.svg │ │ │ ├── checkbox_indeterminate.svg │ │ │ ├── checkbox_indeterminate_disabled.svg │ │ │ ├── checkbox_unchecked-hover.svg │ │ │ ├── checkbox_unchecked_disabled.svg │ │ │ ├── close-hover.svg │ │ │ ├── close-pressed.svg │ │ │ ├── close.svg │ │ │ ├── down_arrow-hover.svg │ │ │ ├── down_arrow.svg │ │ │ ├── down_arrow_disabled.svg │ │ │ ├── hmovetoolbar.svg │ │ │ ├── hsepartoolbar.svg │ │ │ ├── left_arrow.svg │ │ │ ├── left_arrow_disabled.svg │ │ │ ├── radio_checked-hover.svg │ │ │ ├── radio_checked.svg │ │ │ ├── radio_checked_disabled.svg │ │ │ ├── radio_unchecked-hover.svg │ │ │ ├── radio_unchecked_disabled.svg │ │ │ ├── right_arrow.svg │ │ │ ├── right_arrow_disabled.svg │ │ │ ├── sizegrip.svg │ │ │ ├── spinup_disabled.svg │ │ │ ├── stylesheet-branch-end-closed.svg │ │ │ ├── stylesheet-branch-end-open.svg │ │ │ ├── stylesheet-branch-end.svg │ │ │ ├── stylesheet-branch-more.svg │ │ │ ├── stylesheet-vline.svg │ │ │ ├── transparent.svg │ │ │ ├── undock-hover.svg │ │ │ ├── undock.svg │ │ │ ├── up_arrow-hover.svg │ │ │ ├── up_arrow.svg │ │ │ ├── up_arrow_disabled.svg │ │ │ ├── vmovetoolbar.svg │ │ │ └── vsepartoolbars.svg │ └── qdarkstyle │ │ ├── rc │ │ ├── arrow_down.png │ │ ├── arrow_down@2x.png │ │ ├── arrow_down_disabled.png │ │ ├── arrow_down_disabled@2x.png │ │ ├── arrow_down_focus.png │ │ ├── arrow_down_focus@2x.png │ │ ├── arrow_down_pressed.png │ │ ├── arrow_down_pressed@2x.png │ │ ├── arrow_left.png │ │ ├── arrow_left@2x.png │ │ ├── arrow_left_disabled.png │ │ ├── arrow_left_disabled@2x.png │ │ ├── arrow_left_focus.png │ │ ├── arrow_left_focus@2x.png │ │ ├── arrow_left_pressed.png │ │ ├── arrow_left_pressed@2x.png │ │ ├── arrow_right.png │ │ ├── arrow_right@2x.png │ │ ├── arrow_right_disabled.png │ │ ├── arrow_right_disabled@2x.png │ │ ├── arrow_right_focus.png │ │ ├── arrow_right_focus@2x.png │ │ ├── arrow_right_pressed.png │ │ ├── arrow_right_pressed@2x.png │ │ ├── arrow_up.png │ │ ├── arrow_up@2x.png │ │ ├── arrow_up_disabled.png │ │ ├── arrow_up_disabled@2x.png │ │ ├── arrow_up_focus.png │ │ ├── arrow_up_focus@2x.png │ │ ├── arrow_up_pressed.png │ │ ├── arrow_up_pressed@2x.png │ │ ├── base_icon.png │ │ ├── base_icon@2x.png │ │ ├── base_icon_disabled.png │ │ ├── base_icon_disabled@2x.png │ │ ├── base_icon_focus.png │ │ ├── base_icon_focus@2x.png │ │ ├── base_icon_pressed.png │ │ ├── base_icon_pressed@2x.png │ │ ├── branch_closed.png │ │ ├── branch_closed@2x.png │ │ ├── branch_closed_disabled.png │ │ ├── branch_closed_disabled@2x.png │ │ ├── branch_closed_focus.png │ │ ├── branch_closed_focus@2x.png │ │ ├── branch_closed_pressed.png │ │ ├── branch_closed_pressed@2x.png │ │ ├── branch_end.png │ │ ├── branch_end@2x.png │ │ ├── branch_end_disabled.png │ │ ├── branch_end_disabled@2x.png │ │ ├── branch_end_focus.png │ │ ├── branch_end_focus@2x.png │ │ ├── branch_end_pressed.png │ │ ├── branch_end_pressed@2x.png │ │ ├── branch_line.png │ │ ├── branch_line@2x.png │ │ ├── branch_line_disabled.png │ │ ├── branch_line_disabled@2x.png │ │ ├── branch_line_focus.png │ │ ├── branch_line_focus@2x.png │ │ ├── branch_line_pressed.png │ │ ├── branch_line_pressed@2x.png │ │ ├── branch_more.png │ │ ├── branch_more@2x.png │ │ ├── branch_more_disabled.png │ │ ├── branch_more_disabled@2x.png │ │ ├── branch_more_focus.png │ │ ├── branch_more_focus@2x.png │ │ ├── branch_more_pressed.png │ │ ├── branch_more_pressed@2x.png │ │ ├── branch_open.png │ │ ├── branch_open@2x.png │ │ ├── branch_open_disabled.png │ │ ├── branch_open_disabled@2x.png │ │ ├── branch_open_focus.png │ │ ├── branch_open_focus@2x.png │ │ ├── branch_open_pressed.png │ │ ├── branch_open_pressed@2x.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked@2x.png │ │ ├── checkbox_checked_disabled.png │ │ ├── checkbox_checked_disabled@2x.png │ │ ├── checkbox_checked_focus.png │ │ ├── checkbox_checked_focus@2x.png │ │ ├── checkbox_checked_pressed.png │ │ ├── checkbox_checked_pressed@2x.png │ │ ├── checkbox_indeterminate.png │ │ ├── checkbox_indeterminate@2x.png │ │ ├── checkbox_indeterminate_disabled.png │ │ ├── checkbox_indeterminate_disabled@2x.png │ │ ├── checkbox_indeterminate_focus.png │ │ ├── checkbox_indeterminate_focus@2x.png │ │ ├── checkbox_indeterminate_pressed.png │ │ ├── checkbox_indeterminate_pressed@2x.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked@2x.png │ │ ├── checkbox_unchecked_disabled.png │ │ ├── checkbox_unchecked_disabled@2x.png │ │ ├── checkbox_unchecked_focus.png │ │ ├── checkbox_unchecked_focus@2x.png │ │ ├── checkbox_unchecked_pressed.png │ │ ├── checkbox_unchecked_pressed@2x.png │ │ ├── line_horizontal.png │ │ ├── line_horizontal@2x.png │ │ ├── line_horizontal_disabled.png │ │ ├── line_horizontal_disabled@2x.png │ │ ├── line_horizontal_focus.png │ │ ├── line_horizontal_focus@2x.png │ │ ├── line_horizontal_pressed.png │ │ ├── line_horizontal_pressed@2x.png │ │ ├── line_vertical.png │ │ ├── line_vertical@2x.png │ │ ├── line_vertical_disabled.png │ │ ├── line_vertical_disabled@2x.png │ │ ├── line_vertical_focus.png │ │ ├── line_vertical_focus@2x.png │ │ ├── line_vertical_pressed.png │ │ ├── line_vertical_pressed@2x.png │ │ ├── radio_checked.png │ │ ├── radio_checked@2x.png │ │ ├── radio_checked_disabled.png │ │ ├── radio_checked_disabled@2x.png │ │ ├── radio_checked_focus.png │ │ ├── radio_checked_focus@2x.png │ │ ├── radio_checked_pressed.png │ │ ├── radio_checked_pressed@2x.png │ │ ├── radio_unchecked.png │ │ ├── radio_unchecked@2x.png │ │ ├── radio_unchecked_disabled.png │ │ ├── radio_unchecked_disabled@2x.png │ │ ├── radio_unchecked_focus.png │ │ ├── radio_unchecked_focus@2x.png │ │ ├── radio_unchecked_pressed.png │ │ ├── radio_unchecked_pressed@2x.png │ │ ├── toolbar_move_horizontal.png │ │ ├── toolbar_move_horizontal@2x.png │ │ ├── toolbar_move_horizontal_disabled.png │ │ ├── toolbar_move_horizontal_disabled@2x.png │ │ ├── toolbar_move_horizontal_focus.png │ │ ├── toolbar_move_horizontal_focus@2x.png │ │ ├── toolbar_move_horizontal_pressed.png │ │ ├── toolbar_move_horizontal_pressed@2x.png │ │ ├── toolbar_move_vertical.png │ │ ├── toolbar_move_vertical@2x.png │ │ ├── toolbar_move_vertical_disabled.png │ │ ├── toolbar_move_vertical_disabled@2x.png │ │ ├── toolbar_move_vertical_focus.png │ │ ├── toolbar_move_vertical_focus@2x.png │ │ ├── toolbar_move_vertical_pressed.png │ │ ├── toolbar_move_vertical_pressed@2x.png │ │ ├── toolbar_separator_horizontal.png │ │ ├── toolbar_separator_horizontal@2x.png │ │ ├── toolbar_separator_horizontal_disabled.png │ │ ├── toolbar_separator_horizontal_disabled@2x.png │ │ ├── toolbar_separator_horizontal_focus.png │ │ ├── toolbar_separator_horizontal_focus@2x.png │ │ ├── toolbar_separator_horizontal_pressed.png │ │ ├── toolbar_separator_horizontal_pressed@2x.png │ │ ├── toolbar_separator_vertical.png │ │ ├── toolbar_separator_vertical@2x.png │ │ ├── toolbar_separator_vertical_disabled.png │ │ ├── toolbar_separator_vertical_disabled@2x.png │ │ ├── toolbar_separator_vertical_focus.png │ │ ├── toolbar_separator_vertical_focus@2x.png │ │ ├── toolbar_separator_vertical_pressed.png │ │ ├── toolbar_separator_vertical_pressed@2x.png │ │ ├── transparent.png │ │ ├── transparent@2x.png │ │ ├── transparent_disabled.png │ │ ├── transparent_disabled@2x.png │ │ ├── transparent_focus.png │ │ ├── transparent_focus@2x.png │ │ ├── transparent_pressed.png │ │ ├── transparent_pressed@2x.png │ │ ├── window_close.png │ │ ├── window_close@2x.png │ │ ├── window_close_disabled.png │ │ ├── window_close_disabled@2x.png │ │ ├── window_close_focus.png │ │ ├── window_close_focus@2x.png │ │ ├── window_close_pressed.png │ │ ├── window_close_pressed@2x.png │ │ ├── window_grip.png │ │ ├── window_grip@2x.png │ │ ├── window_grip_disabled.png │ │ ├── window_grip_disabled@2x.png │ │ ├── window_grip_focus.png │ │ ├── window_grip_focus@2x.png │ │ ├── window_grip_pressed.png │ │ ├── window_grip_pressed@2x.png │ │ ├── window_minimize.png │ │ ├── window_minimize@2x.png │ │ ├── window_minimize_disabled.png │ │ ├── window_minimize_disabled@2x.png │ │ ├── window_minimize_focus.png │ │ ├── window_minimize_focus@2x.png │ │ ├── window_minimize_pressed.png │ │ ├── window_minimize_pressed@2x.png │ │ ├── window_undock.png │ │ ├── window_undock@2x.png │ │ ├── window_undock_disabled.png │ │ ├── window_undock_disabled@2x.png │ │ ├── window_undock_focus.png │ │ ├── window_undock_focus@2x.png │ │ ├── window_undock_pressed.png │ │ └── window_undock_pressed@2x.png │ │ ├── style.qrc │ │ ├── style.qss │ │ └── svg │ │ ├── arrow_down.svg │ │ ├── arrow_left.svg │ │ ├── arrow_right.svg │ │ ├── arrow_up.svg │ │ ├── base_icon.svg │ │ ├── base_palette.svg │ │ ├── branch_closed.svg │ │ ├── branch_end.svg │ │ ├── branch_line.svg │ │ ├── branch_more.svg │ │ ├── branch_open.svg │ │ ├── checkbox_checked.svg │ │ ├── checkbox_indeterminate.svg │ │ ├── checkbox_unchecked.svg │ │ ├── line_horizontal.svg │ │ ├── line_vertical.svg │ │ ├── radio_checked.svg │ │ ├── radio_unchecked.svg │ │ ├── toolbar_move_horizontal.svg │ │ ├── toolbar_move_vertical.svg │ │ ├── toolbar_separator_horizontal.svg │ │ ├── toolbar_separator_vertical.svg │ │ ├── transparent.svg │ │ ├── window_close.svg │ │ ├── window_grip.svg │ │ ├── window_minimize.svg │ │ └── window_undock.svg ├── utils │ ├── AppData.cpp │ ├── AppData.h │ ├── AsyncTask.h │ ├── ColorScheme.cpp │ ├── ColorScheme.h │ ├── EventFilter.cpp │ ├── EventFilter.h │ ├── Icons.cpp │ ├── Icons.h │ ├── NetworkManager.cpp │ ├── NetworkManager.h │ ├── Networking.cpp │ ├── Networking.h │ ├── RestoreHeightLookup.h │ ├── ScopeGuard.h │ ├── Seed.cpp │ ├── Seed.h │ ├── SemanticVersion.h │ ├── TorManager.cpp │ ├── TorManager.h │ ├── TxFiatHistory.cpp │ ├── TxFiatHistory.h │ ├── Utils.cpp │ ├── Utils.h │ ├── WebsocketClient.cpp │ ├── WebsocketClient.h │ ├── WebsocketNotifier.cpp │ ├── WebsocketNotifier.h │ ├── config.cpp │ ├── config.h │ ├── daemonrpc.cpp │ ├── daemonrpc.h │ ├── networktype.h │ ├── nodes.cpp │ ├── nodes.h │ ├── os │ │ ├── tails.cpp │ │ ├── tails.h │ │ ├── whonix.cpp │ │ └── whonix.h │ ├── prices.cpp │ ├── prices.h │ ├── scheduler.cpp │ ├── scheduler.h │ ├── textedit.cpp │ ├── textedit.h │ └── updater │ │ ├── UpdateDialog.cpp │ │ ├── UpdateDialog.h │ │ ├── UpdateDialog.ui │ │ ├── Updater.cpp │ │ └── Updater.h ├── widgets │ ├── NetworkProxyWidget.cpp │ ├── NetworkProxyWidget.h │ ├── NetworkProxyWidget.ui │ ├── NodeWidget.cpp │ ├── NodeWidget.h │ ├── NodeWidget.ui │ ├── PasswordSetWidget.cpp │ ├── PasswordSetWidget.h │ ├── PasswordSetWidget.ui │ ├── PayToEdit.cpp │ ├── PayToEdit.h │ ├── PluginWidget.cpp │ ├── PluginWidget.h │ ├── PluginWidget.ui │ ├── QrCodeWidget.cpp │ ├── QrCodeWidget.h │ ├── RestoreHeightWidget.cpp │ ├── RestoreHeightWidget.h │ ├── RestoreHeightWidget.ui │ ├── TickerWidget.cpp │ ├── TickerWidget.h │ ├── TickerWidget.ui │ ├── TxDetailsSimple.cpp │ ├── TxDetailsSimple.h │ ├── TxDetailsSimple.ui │ ├── UrlListConfigureWidget.cpp │ ├── UrlListConfigureWidget.h │ ├── UrlListConfigureWidget.ui │ ├── WalletUnlockWidget.cpp │ ├── WalletUnlockWidget.h │ └── WalletUnlockWidget.ui └── wizard │ ├── PageHardwareDevice.cpp │ ├── PageHardwareDevice.h │ ├── PageHardwareDevice.ui │ ├── PageMenu.cpp │ ├── PageMenu.h │ ├── PageMenu.ui │ ├── PageNetwork.cpp │ ├── PageNetwork.h │ ├── PageNetwork.ui │ ├── PageNetworkProxy.cpp │ ├── PageNetworkProxy.h │ ├── PageNetworkProxy.ui │ ├── PageNetworkWebsocket.cpp │ ├── PageNetworkWebsocket.h │ ├── PageNetworkWebsocket.ui │ ├── PageOpenWallet.cpp │ ├── PageOpenWallet.h │ ├── PageOpenWallet.ui │ ├── PagePlugins.cpp │ ├── PagePlugins.h │ ├── PagePlugins.ui │ ├── PageSetPassword.cpp │ ├── PageSetPassword.h │ ├── PageSetPassword.ui │ ├── PageSetRestoreHeight.cpp │ ├── PageSetRestoreHeight.h │ ├── PageSetRestoreHeight.ui │ ├── PageSetSeedPassphrase.cpp │ ├── PageSetSeedPassphrase.h │ ├── PageSetSeedPassphrase.ui │ ├── PageSetSubaddressLookahead.cpp │ ├── PageSetSubaddressLookahead.h │ ├── PageSetSubaddressLookahead.ui │ ├── PageWalletFile.cpp │ ├── PageWalletFile.h │ ├── PageWalletFile.ui │ ├── PageWalletRestoreKeys.cpp │ ├── PageWalletRestoreKeys.h │ ├── PageWalletRestoreKeys.ui │ ├── PageWalletRestoreSeed.cpp │ ├── PageWalletRestoreSeed.h │ ├── PageWalletRestoreSeed.ui │ ├── PageWalletSeed.cpp │ ├── PageWalletSeed.h │ ├── PageWalletSeed.ui │ ├── WalletWizard.cpp │ ├── WalletWizard.h │ └── offline_tx_signing │ ├── OfflineTxSigningWizard.cpp │ ├── OfflineTxSigningWizard.h │ ├── PageOTS_Export.ui │ ├── PageOTS_ExportKeyImages.cpp │ ├── PageOTS_ExportKeyImages.h │ ├── PageOTS_ExportOutputs.cpp │ ├── PageOTS_ExportOutputs.h │ ├── PageOTS_ExportSignedTx.cpp │ ├── PageOTS_ExportSignedTx.h │ ├── PageOTS_ExportUnsignedTx.cpp │ ├── PageOTS_ExportUnsignedTx.h │ ├── PageOTS_Import.cpp │ ├── PageOTS_Import.h │ ├── PageOTS_Import.ui │ ├── PageOTS_ImportKeyImages.cpp │ ├── PageOTS_ImportKeyImages.h │ ├── PageOTS_ImportOffline.cpp │ ├── PageOTS_ImportOffline.h │ ├── PageOTS_ImportSignedTx.cpp │ ├── PageOTS_ImportSignedTx.h │ ├── PageOTS_ImportUnsignedTx.cpp │ ├── PageOTS_ImportUnsignedTx.h │ ├── PageOTS_SignTx.cpp │ └── PageOTS_SignTx.h └── utils └── pubkeys ├── featherwallet.asc └── tobtoht.asc /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/guix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/.github/workflows/guix.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/MAINTENANCE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmake/CheckLinkerFlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/CheckLinkerFlag.c -------------------------------------------------------------------------------- /cmake/FindBCUR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/FindBCUR.cmake -------------------------------------------------------------------------------- /cmake/FindGCrypt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/FindGCrypt.cmake -------------------------------------------------------------------------------- /cmake/FindPolyseed.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/FindPolyseed.cmake -------------------------------------------------------------------------------- /cmake/FindQREncode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/FindQREncode.cmake -------------------------------------------------------------------------------- /cmake/FindZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/FindZLIB.cmake -------------------------------------------------------------------------------- /cmake/FindZXing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/FindZXing.cmake -------------------------------------------------------------------------------- /cmake/GenerateDocs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/GenerateDocs.cmake -------------------------------------------------------------------------------- /cmake/TorQrcGenerator.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/TorQrcGenerator.cmake -------------------------------------------------------------------------------- /cmake/assets_docs.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/assets_docs.qrc -------------------------------------------------------------------------------- /cmake/assets_tor.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/cmake/assets_tor.qrc -------------------------------------------------------------------------------- /contrib/AppImage/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/AppImage/AppRun -------------------------------------------------------------------------------- /contrib/AppImage/build-appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/AppImage/build-appimage.sh -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/make_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/debian/make_deb.sh -------------------------------------------------------------------------------- /contrib/depends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/.gitignore -------------------------------------------------------------------------------- /contrib/depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/Makefile -------------------------------------------------------------------------------- /contrib/depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/builders/default.mk -------------------------------------------------------------------------------- /contrib/depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/builders/linux.mk -------------------------------------------------------------------------------- /contrib/depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/config.guess -------------------------------------------------------------------------------- /contrib/depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/config.sub -------------------------------------------------------------------------------- /contrib/depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/funcs.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/hosts/default.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/hosts/linux.mk -------------------------------------------------------------------------------- /contrib/depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /contrib/depends/packages/abseil.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/abseil.mk -------------------------------------------------------------------------------- /contrib/depends/packages/appimage_runtime.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/appimage_runtime.mk -------------------------------------------------------------------------------- /contrib/depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/boost.mk -------------------------------------------------------------------------------- /contrib/depends/packages/darwin_sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/darwin_sdk.mk -------------------------------------------------------------------------------- /contrib/depends/packages/dbus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/dbus.mk -------------------------------------------------------------------------------- /contrib/depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/expat.mk -------------------------------------------------------------------------------- /contrib/depends/packages/flatstart.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/flatstart.mk -------------------------------------------------------------------------------- /contrib/depends/packages/fontconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/fontconfig.mk -------------------------------------------------------------------------------- /contrib/depends/packages/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/freetype.mk -------------------------------------------------------------------------------- /contrib/depends/packages/hidapi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/hidapi.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libXau.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libevent.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libffi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libffi.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libfuse.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libfuse.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libgcrypt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libgcrypt.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libgpg-error.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libgpg-error.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libsodium.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libsodium.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libsquashfuse.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libsquashfuse.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libusb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libusb.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libxcb_util.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libxcb_util.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libxcb_util_image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libxcb_util_image.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libxcb_util_wm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libxcb_util_wm.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libxkbcommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libxkbcommon.mk -------------------------------------------------------------------------------- /contrib/depends/packages/libzip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/libzip.mk -------------------------------------------------------------------------------- /contrib/depends/packages/native_abseil.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/native_abseil.mk -------------------------------------------------------------------------------- /contrib/depends/packages/native_expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/native_expat.mk -------------------------------------------------------------------------------- /contrib/depends/packages/native_libffi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/native_libffi.mk -------------------------------------------------------------------------------- /contrib/depends/packages/native_protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/native_protobuf.mk -------------------------------------------------------------------------------- /contrib/depends/packages/native_qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/native_qt.mk -------------------------------------------------------------------------------- /contrib/depends/packages/native_wayland.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/native_wayland.mk -------------------------------------------------------------------------------- /contrib/depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/openssl.mk -------------------------------------------------------------------------------- /contrib/depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/packages.mk -------------------------------------------------------------------------------- /contrib/depends/packages/polyseed.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/polyseed.mk -------------------------------------------------------------------------------- /contrib/depends/packages/protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/protobuf.mk -------------------------------------------------------------------------------- /contrib/depends/packages/qrencode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/qrencode.mk -------------------------------------------------------------------------------- /contrib/depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/qt.mk -------------------------------------------------------------------------------- /contrib/depends/packages/tor_darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/tor_darwin.mk -------------------------------------------------------------------------------- /contrib/depends/packages/tor_linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/tor_linux.mk -------------------------------------------------------------------------------- /contrib/depends/packages/tor_mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/tor_mingw32.mk -------------------------------------------------------------------------------- /contrib/depends/packages/unbound.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/unbound.mk -------------------------------------------------------------------------------- /contrib/depends/packages/wayland.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/wayland.mk -------------------------------------------------------------------------------- /contrib/depends/packages/xcb_proto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/xcb_proto.mk -------------------------------------------------------------------------------- /contrib/depends/packages/xorgproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/xorgproto.mk -------------------------------------------------------------------------------- /contrib/depends/packages/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/zlib.mk -------------------------------------------------------------------------------- /contrib/depends/packages/zstd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/zstd.mk -------------------------------------------------------------------------------- /contrib/depends/packages/zxing-cpp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/packages/zxing-cpp.mk -------------------------------------------------------------------------------- /contrib/depends/patches/abseil/no_librt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/abseil/no_librt.patch -------------------------------------------------------------------------------- /contrib/depends/patches/flatstart/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/flatstart/main.S -------------------------------------------------------------------------------- /contrib/depends/patches/flatstart/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/flatstart/main.c -------------------------------------------------------------------------------- /contrib/depends/patches/libXau/toolchain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/libXau/toolchain.txt -------------------------------------------------------------------------------- /contrib/depends/patches/libfuse/mount.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/libfuse/mount.c.diff -------------------------------------------------------------------------------- /contrib/depends/patches/libfuse/toolchain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/libfuse/toolchain.txt -------------------------------------------------------------------------------- /contrib/depends/patches/libusb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/libusb/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/depends/patches/libusb/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/libusb/config.h.in -------------------------------------------------------------------------------- /contrib/depends/patches/qt/libxau-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/qt/libxau-fix.patch -------------------------------------------------------------------------------- /contrib/depends/patches/qt/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/qt/toolchain.cmake -------------------------------------------------------------------------------- /contrib/depends/patches/qt/v4l2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/qt/v4l2.patch -------------------------------------------------------------------------------- /contrib/depends/patches/wayland/toolchain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/patches/wayland/toolchain.txt -------------------------------------------------------------------------------- /contrib/depends/toolchain.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/depends/toolchain.cmake.in -------------------------------------------------------------------------------- /contrib/docs/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/docs/generate.py -------------------------------------------------------------------------------- /contrib/flatpak/.flatpakref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/flatpak/.flatpakref -------------------------------------------------------------------------------- /contrib/flatpak/.flatpakrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/flatpak/.flatpakrepo -------------------------------------------------------------------------------- /contrib/flatpak/make_flatpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/flatpak/make_flatpak.sh -------------------------------------------------------------------------------- /contrib/flatpak/make_runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/flatpak/make_runtime.sh -------------------------------------------------------------------------------- /contrib/flatpak/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/flatpak/metadata -------------------------------------------------------------------------------- /contrib/flatpak/share/app-info/xmls/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/generate-restore-heights/heights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/generate-restore-heights/heights.py -------------------------------------------------------------------------------- /contrib/guix/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/INSTALL.md -------------------------------------------------------------------------------- /contrib/guix/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/LICENSE.txt -------------------------------------------------------------------------------- /contrib/guix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/README.md -------------------------------------------------------------------------------- /contrib/guix/guix-attest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/guix-attest -------------------------------------------------------------------------------- /contrib/guix/guix-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/guix-build -------------------------------------------------------------------------------- /contrib/guix/guix-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/guix-clean -------------------------------------------------------------------------------- /contrib/guix/guix-verify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/guix-verify -------------------------------------------------------------------------------- /contrib/guix/libexec/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/libexec/build.sh -------------------------------------------------------------------------------- /contrib/guix/libexec/prelude.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/libexec/prelude.bash -------------------------------------------------------------------------------- /contrib/guix/manifest.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/manifest.scm -------------------------------------------------------------------------------- /contrib/guix/pack.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/pack.scm -------------------------------------------------------------------------------- /contrib/guix/patches/glibc-guix-prefix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/guix/patches/glibc-guix-prefix.patch -------------------------------------------------------------------------------- /contrib/installers/windows/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/installers/windows/LICENSE.txt -------------------------------------------------------------------------------- /contrib/installers/windows/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/installers/windows/appicon.ico -------------------------------------------------------------------------------- /contrib/installers/windows/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/installers/windows/setup.nsi.in -------------------------------------------------------------------------------- /contrib/macdeploy/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/macdeploy/Info.plist.in -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/gen-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/macdeploy/gen-sdk -------------------------------------------------------------------------------- /contrib/shell/git-utils.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/shell/git-utils.bash -------------------------------------------------------------------------------- /contrib/shell/realpath.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/contrib/shell/realpath.bash -------------------------------------------------------------------------------- /src/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/Application.cpp -------------------------------------------------------------------------------- /src/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/Application.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CoinsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/CoinsWidget.cpp -------------------------------------------------------------------------------- /src/CoinsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/CoinsWidget.h -------------------------------------------------------------------------------- /src/CoinsWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/CoinsWidget.ui -------------------------------------------------------------------------------- /src/ContactsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ContactsWidget.cpp -------------------------------------------------------------------------------- /src/ContactsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ContactsWidget.h -------------------------------------------------------------------------------- /src/ContactsWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ContactsWidget.ui -------------------------------------------------------------------------------- /src/HistoryWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/HistoryWidget.cpp -------------------------------------------------------------------------------- /src/HistoryWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/HistoryWidget.h -------------------------------------------------------------------------------- /src/HistoryWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/HistoryWidget.ui -------------------------------------------------------------------------------- /src/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/MainWindow.cpp -------------------------------------------------------------------------------- /src/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/MainWindow.h -------------------------------------------------------------------------------- /src/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/MainWindow.ui -------------------------------------------------------------------------------- /src/ReceiveWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ReceiveWidget.cpp -------------------------------------------------------------------------------- /src/ReceiveWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ReceiveWidget.h -------------------------------------------------------------------------------- /src/ReceiveWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ReceiveWidget.ui -------------------------------------------------------------------------------- /src/SendWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/SendWidget.cpp -------------------------------------------------------------------------------- /src/SendWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/SendWidget.h -------------------------------------------------------------------------------- /src/SendWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/SendWidget.ui -------------------------------------------------------------------------------- /src/SettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/SettingsDialog.cpp -------------------------------------------------------------------------------- /src/SettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/SettingsDialog.h -------------------------------------------------------------------------------- /src/SettingsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/SettingsDialog.ui -------------------------------------------------------------------------------- /src/WindowManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/WindowManager.cpp -------------------------------------------------------------------------------- /src/WindowManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/WindowManager.h -------------------------------------------------------------------------------- /src/assets.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets.qrc -------------------------------------------------------------------------------- /src/assets/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/about.txt -------------------------------------------------------------------------------- /src/assets/ack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/ack.txt -------------------------------------------------------------------------------- /src/assets/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/feather.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/feather.desktop -------------------------------------------------------------------------------- /src/assets/gpg_keys/featherwallet.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/gpg_keys/featherwallet.asc -------------------------------------------------------------------------------- /src/assets/images/appicons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/128x128.png -------------------------------------------------------------------------------- /src/assets/images/appicons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/256x256.png -------------------------------------------------------------------------------- /src/assets/images/appicons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/32x32.png -------------------------------------------------------------------------------- /src/assets/images/appicons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/48x48.png -------------------------------------------------------------------------------- /src/assets/images/appicons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/512x512.png -------------------------------------------------------------------------------- /src/assets/images/appicons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/64x64.png -------------------------------------------------------------------------------- /src/assets/images/appicons/64x64.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/64x64.png~ -------------------------------------------------------------------------------- /src/assets/images/appicons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/96x96.png -------------------------------------------------------------------------------- /src/assets/images/appicons/appicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/appicon.icns -------------------------------------------------------------------------------- /src/assets/images/appicons/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/appicon.ico -------------------------------------------------------------------------------- /src/assets/images/appicons/monero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/monero.png -------------------------------------------------------------------------------- /src/assets/images/appicons/monero_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/appicons/monero_grey.png -------------------------------------------------------------------------------- /src/assets/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/arrow.svg -------------------------------------------------------------------------------- /src/assets/images/banners/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/banners/3.png -------------------------------------------------------------------------------- /src/assets/images/camera_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/camera_dark.png -------------------------------------------------------------------------------- /src/assets/images/camera_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/camera_white.png -------------------------------------------------------------------------------- /src/assets/images/change_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/change_account.png -------------------------------------------------------------------------------- /src/assets/images/chipset_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/chipset_32px.png -------------------------------------------------------------------------------- /src/assets/images/clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/clock1.png -------------------------------------------------------------------------------- /src/assets/images/clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/clock2.png -------------------------------------------------------------------------------- /src/assets/images/clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/clock3.png -------------------------------------------------------------------------------- /src/assets/images/clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/clock4.png -------------------------------------------------------------------------------- /src/assets/images/clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/clock5.png -------------------------------------------------------------------------------- /src/assets/images/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/coins.png -------------------------------------------------------------------------------- /src/assets/images/coldcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/coldcard.png -------------------------------------------------------------------------------- /src/assets/images/coldcard_unpaired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/coldcard_unpaired.png -------------------------------------------------------------------------------- /src/assets/images/confirmed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/confirmed.svg -------------------------------------------------------------------------------- /src/assets/images/connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/connect.svg -------------------------------------------------------------------------------- /src/assets/images/connect_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/connect_white.svg -------------------------------------------------------------------------------- /src/assets/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/copy.png -------------------------------------------------------------------------------- /src/assets/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/edit.png -------------------------------------------------------------------------------- /src/assets/images/exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/exchange.png -------------------------------------------------------------------------------- /src/assets/images/exchange_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/exchange_white.png -------------------------------------------------------------------------------- /src/assets/images/expired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/expired.png -------------------------------------------------------------------------------- /src/assets/images/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/external-link.svg -------------------------------------------------------------------------------- /src/assets/images/eye1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/eye1.png -------------------------------------------------------------------------------- /src/assets/images/eye_blind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/eye_blind.png -------------------------------------------------------------------------------- /src/assets/images/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/feather.png -------------------------------------------------------------------------------- /src/assets/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/file.png -------------------------------------------------------------------------------- /src/assets/images/file_manager_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/file_manager_32px.png -------------------------------------------------------------------------------- /src/assets/images/gnome-calc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/gnome-calc.png -------------------------------------------------------------------------------- /src/assets/images/hd_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/hd_32px.png -------------------------------------------------------------------------------- /src/assets/images/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/history.png -------------------------------------------------------------------------------- /src/assets/images/i2p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/i2p.png -------------------------------------------------------------------------------- /src/assets/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/info.png -------------------------------------------------------------------------------- /src/assets/images/info2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/info2.svg -------------------------------------------------------------------------------- /src/assets/images/interface_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/interface_32px.png -------------------------------------------------------------------------------- /src/assets/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/key.png -------------------------------------------------------------------------------- /src/assets/images/ledger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/ledger.png -------------------------------------------------------------------------------- /src/assets/images/ledger_unpaired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/ledger_unpaired.png -------------------------------------------------------------------------------- /src/assets/images/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/lightning.png -------------------------------------------------------------------------------- /src/assets/images/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/lock.svg -------------------------------------------------------------------------------- /src/assets/images/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/microphone.png -------------------------------------------------------------------------------- /src/assets/images/mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/mining.png -------------------------------------------------------------------------------- /src/assets/images/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/network.png -------------------------------------------------------------------------------- /src/assets/images/nw_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/nw_32px.png -------------------------------------------------------------------------------- /src/assets/images/offline_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/offline_tx.png -------------------------------------------------------------------------------- /src/assets/images/password-show-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/password-show-off.svg -------------------------------------------------------------------------------- /src/assets/images/password-show-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/password-show-on.svg -------------------------------------------------------------------------------- /src/assets/images/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/person.svg -------------------------------------------------------------------------------- /src/assets/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/pin.png -------------------------------------------------------------------------------- /src/assets/images/preferences.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/preferences.svg -------------------------------------------------------------------------------- /src/assets/images/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/qrcode.png -------------------------------------------------------------------------------- /src/assets/images/qrcode_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/qrcode_white.png -------------------------------------------------------------------------------- /src/assets/images/register.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/register.svg -------------------------------------------------------------------------------- /src/assets/images/revealer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/revealer.png -------------------------------------------------------------------------------- /src/assets/images/revealer_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/revealer_c.png -------------------------------------------------------------------------------- /src/assets/images/seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/seal.png -------------------------------------------------------------------------------- /src/assets/images/securityLevelSafer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/securityLevelSafer.png -------------------------------------------------------------------------------- /src/assets/images/securityLevelSafer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/securityLevelSafer.svg -------------------------------------------------------------------------------- /src/assets/images/securityLevelSaferWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/securityLevelSaferWhite.png -------------------------------------------------------------------------------- /src/assets/images/securityLevelSafest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/securityLevelSafest.png -------------------------------------------------------------------------------- /src/assets/images/securityLevelSafest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/securityLevelSafest.svg -------------------------------------------------------------------------------- /src/assets/images/securityLevelStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/securityLevelStandard.png -------------------------------------------------------------------------------- /src/assets/images/securityLevelStandard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/securityLevelStandard.svg -------------------------------------------------------------------------------- /src/assets/images/seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/seed.png -------------------------------------------------------------------------------- /src/assets/images/settings_disabled_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/settings_disabled_32px.png -------------------------------------------------------------------------------- /src/assets/images/sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/sign.png -------------------------------------------------------------------------------- /src/assets/images/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/speaker.png -------------------------------------------------------------------------------- /src/assets/images/status_connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/status_connected.svg -------------------------------------------------------------------------------- /src/assets/images/status_connected_proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/status_connected_proxy.svg -------------------------------------------------------------------------------- /src/assets/images/status_disconnected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/status_disconnected.svg -------------------------------------------------------------------------------- /src/assets/images/status_lagging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/status_lagging.svg -------------------------------------------------------------------------------- /src/assets/images/status_offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/status_offline.svg -------------------------------------------------------------------------------- /src/assets/images/status_waiting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/status_waiting.svg -------------------------------------------------------------------------------- /src/assets/images/tab_addresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_addresses.png -------------------------------------------------------------------------------- /src/assets/images/tab_coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_coins.png -------------------------------------------------------------------------------- /src/assets/images/tab_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_console.png -------------------------------------------------------------------------------- /src/assets/images/tab_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_contacts.png -------------------------------------------------------------------------------- /src/assets/images/tab_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_history.png -------------------------------------------------------------------------------- /src/assets/images/tab_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_home.png -------------------------------------------------------------------------------- /src/assets/images/tab_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_notes.png -------------------------------------------------------------------------------- /src/assets/images/tab_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_party.png -------------------------------------------------------------------------------- /src/assets/images/tab_receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_receive.png -------------------------------------------------------------------------------- /src/assets/images/tab_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tab_send.png -------------------------------------------------------------------------------- /src/assets/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/terminal.png -------------------------------------------------------------------------------- /src/assets/images/tor_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tor_logo.png -------------------------------------------------------------------------------- /src/assets/images/tor_logo_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/tor_logo_disabled.png -------------------------------------------------------------------------------- /src/assets/images/trezor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/trezor.png -------------------------------------------------------------------------------- /src/assets/images/trezor_unpaired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/trezor_unpaired.png -------------------------------------------------------------------------------- /src/assets/images/trezor_unpaired_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/trezor_unpaired_white.png -------------------------------------------------------------------------------- /src/assets/images/trezor_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/trezor_white.png -------------------------------------------------------------------------------- /src/assets/images/unconfirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/unconfirmed.png -------------------------------------------------------------------------------- /src/assets/images/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/unlock.svg -------------------------------------------------------------------------------- /src/assets/images/unpaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/unpaid.png -------------------------------------------------------------------------------- /src/assets/images/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/update.png -------------------------------------------------------------------------------- /src/assets/images/vrdp_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/vrdp_32px.png -------------------------------------------------------------------------------- /src/assets/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/warning.png -------------------------------------------------------------------------------- /src/assets/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/images/zoom.png -------------------------------------------------------------------------------- /src/assets/macStylesheet.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/macStylesheet.patch -------------------------------------------------------------------------------- /src/assets/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/nodes.json -------------------------------------------------------------------------------- /src/assets/restore_heights_monero_mainnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/assets/restore_heights_monero_mainnet.txt -------------------------------------------------------------------------------- /src/assets/tor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/components.cpp -------------------------------------------------------------------------------- /src/components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/components.h -------------------------------------------------------------------------------- /src/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/constants.cpp -------------------------------------------------------------------------------- /src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/constants.h -------------------------------------------------------------------------------- /src/dialog/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AboutDialog.cpp -------------------------------------------------------------------------------- /src/dialog/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AboutDialog.h -------------------------------------------------------------------------------- /src/dialog/AboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AboutDialog.ui -------------------------------------------------------------------------------- /src/dialog/AccountSwitcherDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AccountSwitcherDialog.cpp -------------------------------------------------------------------------------- /src/dialog/AccountSwitcherDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AccountSwitcherDialog.h -------------------------------------------------------------------------------- /src/dialog/AccountSwitcherDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AccountSwitcherDialog.ui -------------------------------------------------------------------------------- /src/dialog/AddressCheckerIndexDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AddressCheckerIndexDialog.cpp -------------------------------------------------------------------------------- /src/dialog/AddressCheckerIndexDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AddressCheckerIndexDialog.h -------------------------------------------------------------------------------- /src/dialog/AddressCheckerIndexDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AddressCheckerIndexDialog.ui -------------------------------------------------------------------------------- /src/dialog/AddressInfoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/AddressInfoDialog.ui -------------------------------------------------------------------------------- /src/dialog/BalanceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/BalanceDialog.cpp -------------------------------------------------------------------------------- /src/dialog/BalanceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/BalanceDialog.h -------------------------------------------------------------------------------- /src/dialog/BalanceDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/BalanceDialog.ui -------------------------------------------------------------------------------- /src/dialog/ContactsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/ContactsDialog.cpp -------------------------------------------------------------------------------- /src/dialog/ContactsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/ContactsDialog.h -------------------------------------------------------------------------------- /src/dialog/ContactsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/ContactsDialog.ui -------------------------------------------------------------------------------- /src/dialog/DebugInfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/DebugInfoDialog.cpp -------------------------------------------------------------------------------- /src/dialog/DebugInfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/DebugInfoDialog.h -------------------------------------------------------------------------------- /src/dialog/DebugInfoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/DebugInfoDialog.ui -------------------------------------------------------------------------------- /src/dialog/DocsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/DocsDialog.cpp -------------------------------------------------------------------------------- /src/dialog/DocsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/DocsDialog.h -------------------------------------------------------------------------------- /src/dialog/DocsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/DocsDialog.ui -------------------------------------------------------------------------------- /src/dialog/HistoryExportDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/HistoryExportDialog.cpp -------------------------------------------------------------------------------- /src/dialog/HistoryExportDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/HistoryExportDialog.h -------------------------------------------------------------------------------- /src/dialog/HistoryExportDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/HistoryExportDialog.ui -------------------------------------------------------------------------------- /src/dialog/InfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/InfoDialog.cpp -------------------------------------------------------------------------------- /src/dialog/InfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/InfoDialog.h -------------------------------------------------------------------------------- /src/dialog/InfoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/InfoDialog.ui -------------------------------------------------------------------------------- /src/dialog/KeysDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/KeysDialog.cpp -------------------------------------------------------------------------------- /src/dialog/KeysDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/KeysDialog.h -------------------------------------------------------------------------------- /src/dialog/KeysDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/KeysDialog.ui -------------------------------------------------------------------------------- /src/dialog/LegacySeedRecovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/LegacySeedRecovery.cpp -------------------------------------------------------------------------------- /src/dialog/LegacySeedRecovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/LegacySeedRecovery.h -------------------------------------------------------------------------------- /src/dialog/LegacySeedRecovery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/LegacySeedRecovery.ui -------------------------------------------------------------------------------- /src/dialog/MultiLineInputDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/MultiLineInputDialog.cpp -------------------------------------------------------------------------------- /src/dialog/MultiLineInputDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/MultiLineInputDialog.h -------------------------------------------------------------------------------- /src/dialog/MultiLineInputDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/MultiLineInputDialog.ui -------------------------------------------------------------------------------- /src/dialog/OutputInfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/OutputInfoDialog.cpp -------------------------------------------------------------------------------- /src/dialog/OutputInfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/OutputInfoDialog.h -------------------------------------------------------------------------------- /src/dialog/OutputInfoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/OutputInfoDialog.ui -------------------------------------------------------------------------------- /src/dialog/OutputSweepDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/OutputSweepDialog.cpp -------------------------------------------------------------------------------- /src/dialog/OutputSweepDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/OutputSweepDialog.h -------------------------------------------------------------------------------- /src/dialog/OutputSweepDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/OutputSweepDialog.ui -------------------------------------------------------------------------------- /src/dialog/PasswordChangeDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PasswordChangeDialog.cpp -------------------------------------------------------------------------------- /src/dialog/PasswordChangeDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PasswordChangeDialog.h -------------------------------------------------------------------------------- /src/dialog/PasswordChangeDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PasswordChangeDialog.ui -------------------------------------------------------------------------------- /src/dialog/PasswordDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PasswordDialog.cpp -------------------------------------------------------------------------------- /src/dialog/PasswordDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PasswordDialog.h -------------------------------------------------------------------------------- /src/dialog/PasswordDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PasswordDialog.ui -------------------------------------------------------------------------------- /src/dialog/PasswordSetDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PasswordSetDialog.cpp -------------------------------------------------------------------------------- /src/dialog/PasswordSetDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PasswordSetDialog.h -------------------------------------------------------------------------------- /src/dialog/PasswordSetDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PasswordSetDialog.ui -------------------------------------------------------------------------------- /src/dialog/PaymentRequestDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PaymentRequestDialog.cpp -------------------------------------------------------------------------------- /src/dialog/PaymentRequestDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PaymentRequestDialog.h -------------------------------------------------------------------------------- /src/dialog/PaymentRequestDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/PaymentRequestDialog.ui -------------------------------------------------------------------------------- /src/dialog/QrCodeDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/QrCodeDialog.cpp -------------------------------------------------------------------------------- /src/dialog/QrCodeDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/QrCodeDialog.h -------------------------------------------------------------------------------- /src/dialog/QrCodeDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/QrCodeDialog.ui -------------------------------------------------------------------------------- /src/dialog/SeedDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SeedDialog.cpp -------------------------------------------------------------------------------- /src/dialog/SeedDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SeedDialog.h -------------------------------------------------------------------------------- /src/dialog/SeedDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SeedDialog.ui -------------------------------------------------------------------------------- /src/dialog/SeedDiceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SeedDiceDialog.cpp -------------------------------------------------------------------------------- /src/dialog/SeedDiceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SeedDiceDialog.h -------------------------------------------------------------------------------- /src/dialog/SeedDiceDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SeedDiceDialog.ui -------------------------------------------------------------------------------- /src/dialog/SeedRecoveryDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SeedRecoveryDialog.cpp -------------------------------------------------------------------------------- /src/dialog/SeedRecoveryDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SeedRecoveryDialog.h -------------------------------------------------------------------------------- /src/dialog/SeedRecoveryDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SeedRecoveryDialog.ui -------------------------------------------------------------------------------- /src/dialog/SignVerifyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SignVerifyDialog.cpp -------------------------------------------------------------------------------- /src/dialog/SignVerifyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SignVerifyDialog.h -------------------------------------------------------------------------------- /src/dialog/SignVerifyDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SignVerifyDialog.ui -------------------------------------------------------------------------------- /src/dialog/SplashDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SplashDialog.cpp -------------------------------------------------------------------------------- /src/dialog/SplashDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SplashDialog.h -------------------------------------------------------------------------------- /src/dialog/SplashDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/SplashDialog.ui -------------------------------------------------------------------------------- /src/dialog/TorInfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TorInfoDialog.cpp -------------------------------------------------------------------------------- /src/dialog/TorInfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TorInfoDialog.h -------------------------------------------------------------------------------- /src/dialog/TorInfoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TorInfoDialog.ui -------------------------------------------------------------------------------- /src/dialog/TxBroadcastDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxBroadcastDialog.cpp -------------------------------------------------------------------------------- /src/dialog/TxBroadcastDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxBroadcastDialog.h -------------------------------------------------------------------------------- /src/dialog/TxBroadcastDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxBroadcastDialog.ui -------------------------------------------------------------------------------- /src/dialog/TxConfAdvDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxConfAdvDialog.cpp -------------------------------------------------------------------------------- /src/dialog/TxConfAdvDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxConfAdvDialog.h -------------------------------------------------------------------------------- /src/dialog/TxConfAdvDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxConfAdvDialog.ui -------------------------------------------------------------------------------- /src/dialog/TxConfDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxConfDialog.cpp -------------------------------------------------------------------------------- /src/dialog/TxConfDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxConfDialog.h -------------------------------------------------------------------------------- /src/dialog/TxConfDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxConfDialog.ui -------------------------------------------------------------------------------- /src/dialog/TxImportDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxImportDialog.cpp -------------------------------------------------------------------------------- /src/dialog/TxImportDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxImportDialog.h -------------------------------------------------------------------------------- /src/dialog/TxImportDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxImportDialog.ui -------------------------------------------------------------------------------- /src/dialog/TxInfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxInfoDialog.cpp -------------------------------------------------------------------------------- /src/dialog/TxInfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxInfoDialog.h -------------------------------------------------------------------------------- /src/dialog/TxInfoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxInfoDialog.ui -------------------------------------------------------------------------------- /src/dialog/TxPoolViewerDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxPoolViewerDialog.cpp -------------------------------------------------------------------------------- /src/dialog/TxPoolViewerDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxPoolViewerDialog.h -------------------------------------------------------------------------------- /src/dialog/TxPoolViewerDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxPoolViewerDialog.ui -------------------------------------------------------------------------------- /src/dialog/TxProofDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxProofDialog.cpp -------------------------------------------------------------------------------- /src/dialog/TxProofDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxProofDialog.h -------------------------------------------------------------------------------- /src/dialog/TxProofDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/TxProofDialog.ui -------------------------------------------------------------------------------- /src/dialog/URSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/URSettingsDialog.cpp -------------------------------------------------------------------------------- /src/dialog/URSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/URSettingsDialog.h -------------------------------------------------------------------------------- /src/dialog/URSettingsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/URSettingsDialog.ui -------------------------------------------------------------------------------- /src/dialog/VerifyProofDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/VerifyProofDialog.cpp -------------------------------------------------------------------------------- /src/dialog/VerifyProofDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/VerifyProofDialog.h -------------------------------------------------------------------------------- /src/dialog/VerifyProofDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/VerifyProofDialog.ui -------------------------------------------------------------------------------- /src/dialog/ViewOnlyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/ViewOnlyDialog.cpp -------------------------------------------------------------------------------- /src/dialog/ViewOnlyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/ViewOnlyDialog.h -------------------------------------------------------------------------------- /src/dialog/ViewOnlyDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/ViewOnlyDialog.ui -------------------------------------------------------------------------------- /src/dialog/WalletCacheDebugDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/WalletCacheDebugDialog.cpp -------------------------------------------------------------------------------- /src/dialog/WalletCacheDebugDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/WalletCacheDebugDialog.h -------------------------------------------------------------------------------- /src/dialog/WalletCacheDebugDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/WalletCacheDebugDialog.ui -------------------------------------------------------------------------------- /src/dialog/WalletInfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/WalletInfoDialog.cpp -------------------------------------------------------------------------------- /src/dialog/WalletInfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/WalletInfoDialog.h -------------------------------------------------------------------------------- /src/dialog/WalletInfoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/dialog/WalletInfoDialog.ui -------------------------------------------------------------------------------- /src/libwalletqt/AddressBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/AddressBook.cpp -------------------------------------------------------------------------------- /src/libwalletqt/AddressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/AddressBook.h -------------------------------------------------------------------------------- /src/libwalletqt/Coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/Coins.cpp -------------------------------------------------------------------------------- /src/libwalletqt/Coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/Coins.h -------------------------------------------------------------------------------- /src/libwalletqt/PassphraseHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/PassphraseHelper.cpp -------------------------------------------------------------------------------- /src/libwalletqt/PassphraseHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/PassphraseHelper.h -------------------------------------------------------------------------------- /src/libwalletqt/PendingTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/PendingTransaction.cpp -------------------------------------------------------------------------------- /src/libwalletqt/PendingTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/PendingTransaction.h -------------------------------------------------------------------------------- /src/libwalletqt/Subaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/Subaddress.cpp -------------------------------------------------------------------------------- /src/libwalletqt/Subaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/Subaddress.h -------------------------------------------------------------------------------- /src/libwalletqt/SubaddressAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/SubaddressAccount.cpp -------------------------------------------------------------------------------- /src/libwalletqt/SubaddressAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/SubaddressAccount.h -------------------------------------------------------------------------------- /src/libwalletqt/TransactionHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/TransactionHistory.cpp -------------------------------------------------------------------------------- /src/libwalletqt/TransactionHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/TransactionHistory.h -------------------------------------------------------------------------------- /src/libwalletqt/UnsignedTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/UnsignedTransaction.cpp -------------------------------------------------------------------------------- /src/libwalletqt/UnsignedTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/UnsignedTransaction.h -------------------------------------------------------------------------------- /src/libwalletqt/Wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/Wallet.cpp -------------------------------------------------------------------------------- /src/libwalletqt/Wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/Wallet.h -------------------------------------------------------------------------------- /src/libwalletqt/WalletListenerImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/WalletListenerImpl.cpp -------------------------------------------------------------------------------- /src/libwalletqt/WalletListenerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/WalletListenerImpl.h -------------------------------------------------------------------------------- /src/libwalletqt/WalletManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/WalletManager.cpp -------------------------------------------------------------------------------- /src/libwalletqt/WalletManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/WalletManager.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/AccountRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/AccountRow.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/CoinsInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/CoinsInfo.cpp -------------------------------------------------------------------------------- /src/libwalletqt/rows/CoinsInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/CoinsInfo.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/ConstructionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/ConstructionInfo.cpp -------------------------------------------------------------------------------- /src/libwalletqt/rows/ConstructionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/ConstructionInfo.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/ContactRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/ContactRow.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/Input.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/Output.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/PendingTransactionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/PendingTransactionInfo.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/SubaddressRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/SubaddressRow.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/TransactionRow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/TransactionRow.cpp -------------------------------------------------------------------------------- /src/libwalletqt/rows/TransactionRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/TransactionRow.h -------------------------------------------------------------------------------- /src/libwalletqt/rows/TxBacklogEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/libwalletqt/rows/TxBacklogEntry.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/model/AddressBookModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/AddressBookModel.cpp -------------------------------------------------------------------------------- /src/model/AddressBookModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/AddressBookModel.h -------------------------------------------------------------------------------- /src/model/AddressBookProxyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/AddressBookProxyModel.cpp -------------------------------------------------------------------------------- /src/model/AddressBookProxyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/AddressBookProxyModel.h -------------------------------------------------------------------------------- /src/model/CoinsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/CoinsModel.cpp -------------------------------------------------------------------------------- /src/model/CoinsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/CoinsModel.h -------------------------------------------------------------------------------- /src/model/CoinsProxyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/CoinsProxyModel.cpp -------------------------------------------------------------------------------- /src/model/CoinsProxyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/CoinsProxyModel.h -------------------------------------------------------------------------------- /src/model/HistoryView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/HistoryView.cpp -------------------------------------------------------------------------------- /src/model/HistoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/HistoryView.h -------------------------------------------------------------------------------- /src/model/NodeModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/NodeModel.cpp -------------------------------------------------------------------------------- /src/model/NodeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/NodeModel.h -------------------------------------------------------------------------------- /src/model/SubaddressAccountModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/SubaddressAccountModel.cpp -------------------------------------------------------------------------------- /src/model/SubaddressAccountModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/SubaddressAccountModel.h -------------------------------------------------------------------------------- /src/model/SubaddressModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/SubaddressModel.cpp -------------------------------------------------------------------------------- /src/model/SubaddressModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/SubaddressModel.h -------------------------------------------------------------------------------- /src/model/SubaddressProxyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/SubaddressProxyModel.cpp -------------------------------------------------------------------------------- /src/model/SubaddressProxyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/SubaddressProxyModel.h -------------------------------------------------------------------------------- /src/model/SubaddressView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/SubaddressView.cpp -------------------------------------------------------------------------------- /src/model/SubaddressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/SubaddressView.h -------------------------------------------------------------------------------- /src/model/TransactionHistoryModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/TransactionHistoryModel.cpp -------------------------------------------------------------------------------- /src/model/TransactionHistoryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/TransactionHistoryModel.h -------------------------------------------------------------------------------- /src/model/TransactionHistoryProxyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/TransactionHistoryProxyModel.cpp -------------------------------------------------------------------------------- /src/model/TransactionHistoryProxyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/TransactionHistoryProxyModel.h -------------------------------------------------------------------------------- /src/model/WalletKeysFilesModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/WalletKeysFilesModel.cpp -------------------------------------------------------------------------------- /src/model/WalletKeysFilesModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/model/WalletKeysFilesModel.h -------------------------------------------------------------------------------- /src/monero_seed/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/LICENSE.txt -------------------------------------------------------------------------------- /src/monero_seed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/README.md -------------------------------------------------------------------------------- /src/monero_seed/argon2/argon2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/argon2/argon2.c -------------------------------------------------------------------------------- /src/monero_seed/argon2/argon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/argon2/argon2.h -------------------------------------------------------------------------------- /src/monero_seed/argon2/blake2/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/argon2/blake2/blake2-impl.h -------------------------------------------------------------------------------- /src/monero_seed/argon2/blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/argon2/blake2/blake2.h -------------------------------------------------------------------------------- /src/monero_seed/argon2/blake2/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/argon2/blake2/blake2b.c -------------------------------------------------------------------------------- /src/monero_seed/argon2/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/argon2/core.c -------------------------------------------------------------------------------- /src/monero_seed/argon2/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/argon2/core.h -------------------------------------------------------------------------------- /src/monero_seed/argon2/ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/argon2/ref.c -------------------------------------------------------------------------------- /src/monero_seed/galois_field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/galois_field.cpp -------------------------------------------------------------------------------- /src/monero_seed/galois_field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/galois_field.hpp -------------------------------------------------------------------------------- /src/monero_seed/gf_elem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/gf_elem.cpp -------------------------------------------------------------------------------- /src/monero_seed/gf_elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/gf_elem.hpp -------------------------------------------------------------------------------- /src/monero_seed/gf_poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/gf_poly.cpp -------------------------------------------------------------------------------- /src/monero_seed/gf_poly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/gf_poly.hpp -------------------------------------------------------------------------------- /src/monero_seed/monero_seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/monero_seed.cpp -------------------------------------------------------------------------------- /src/monero_seed/monero_seed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/monero_seed.hpp -------------------------------------------------------------------------------- /src/monero_seed/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/pbkdf2.c -------------------------------------------------------------------------------- /src/monero_seed/pbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/pbkdf2.h -------------------------------------------------------------------------------- /src/monero_seed/reed_solomon_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/reed_solomon_code.cpp -------------------------------------------------------------------------------- /src/monero_seed/reed_solomon_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/reed_solomon_code.hpp -------------------------------------------------------------------------------- /src/monero_seed/secure_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/secure_random.cpp -------------------------------------------------------------------------------- /src/monero_seed/secure_random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/secure_random.hpp -------------------------------------------------------------------------------- /src/monero_seed/sha256/hash_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/sha256/hash_impl.h -------------------------------------------------------------------------------- /src/monero_seed/wordlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/wordlist.cpp -------------------------------------------------------------------------------- /src/monero_seed/wordlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/monero_seed/wordlist.hpp -------------------------------------------------------------------------------- /src/openpgp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/openpgp/CMakeLists.txt -------------------------------------------------------------------------------- /src/openpgp/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/openpgp/hash.h -------------------------------------------------------------------------------- /src/openpgp/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/openpgp/mpi.h -------------------------------------------------------------------------------- /src/openpgp/openpgp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/openpgp/openpgp.cpp -------------------------------------------------------------------------------- /src/openpgp/openpgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/openpgp/openpgp.h -------------------------------------------------------------------------------- /src/openpgp/packet_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/openpgp/packet_stream.h -------------------------------------------------------------------------------- /src/openpgp/s_expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/openpgp/s_expression.h -------------------------------------------------------------------------------- /src/openpgp/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/openpgp/serialization.h -------------------------------------------------------------------------------- /src/plugins/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/Plugin.h -------------------------------------------------------------------------------- /src/plugins/PluginRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/PluginRegistry.h -------------------------------------------------------------------------------- /src/plugins/calc/CalcConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcConfigDialog.cpp -------------------------------------------------------------------------------- /src/plugins/calc/CalcConfigDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcConfigDialog.h -------------------------------------------------------------------------------- /src/plugins/calc/CalcConfigDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcConfigDialog.ui -------------------------------------------------------------------------------- /src/plugins/calc/CalcPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcPlugin.cpp -------------------------------------------------------------------------------- /src/plugins/calc/CalcPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcPlugin.h -------------------------------------------------------------------------------- /src/plugins/calc/CalcWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcWidget.cpp -------------------------------------------------------------------------------- /src/plugins/calc/CalcWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcWidget.h -------------------------------------------------------------------------------- /src/plugins/calc/CalcWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcWidget.ui -------------------------------------------------------------------------------- /src/plugins/calc/CalcWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcWindow.cpp -------------------------------------------------------------------------------- /src/plugins/calc/CalcWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcWindow.h -------------------------------------------------------------------------------- /src/plugins/calc/CalcWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/calc/CalcWindow.ui -------------------------------------------------------------------------------- /src/plugins/crowdfunding/CCSEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/crowdfunding/CCSEntry.h -------------------------------------------------------------------------------- /src/plugins/crowdfunding/CCSModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/crowdfunding/CCSModel.cpp -------------------------------------------------------------------------------- /src/plugins/crowdfunding/CCSModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/crowdfunding/CCSModel.h -------------------------------------------------------------------------------- /src/plugins/crowdfunding/CCSWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/crowdfunding/CCSWidget.cpp -------------------------------------------------------------------------------- /src/plugins/crowdfunding/CCSWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/crowdfunding/CCSWidget.h -------------------------------------------------------------------------------- /src/plugins/crowdfunding/CCSWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/crowdfunding/CCSWidget.ui -------------------------------------------------------------------------------- /src/plugins/crowdfunding/CrowdfundingPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/crowdfunding/CrowdfundingPlugin.h -------------------------------------------------------------------------------- /src/plugins/home/HomePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/home/HomePlugin.cpp -------------------------------------------------------------------------------- /src/plugins/home/HomePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/home/HomePlugin.h -------------------------------------------------------------------------------- /src/plugins/home/HomeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/home/HomeWidget.cpp -------------------------------------------------------------------------------- /src/plugins/home/HomeWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/home/HomeWidget.h -------------------------------------------------------------------------------- /src/plugins/home/HomeWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/home/HomeWidget.ui -------------------------------------------------------------------------------- /src/plugins/revuo/RevuoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/revuo/RevuoItem.h -------------------------------------------------------------------------------- /src/plugins/revuo/RevuoPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/revuo/RevuoPlugin.cpp -------------------------------------------------------------------------------- /src/plugins/revuo/RevuoPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/revuo/RevuoPlugin.h -------------------------------------------------------------------------------- /src/plugins/revuo/RevuoWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/revuo/RevuoWidget.cpp -------------------------------------------------------------------------------- /src/plugins/revuo/RevuoWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/revuo/RevuoWidget.h -------------------------------------------------------------------------------- /src/plugins/revuo/RevuoWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/revuo/RevuoWidget.ui -------------------------------------------------------------------------------- /src/plugins/tickers/TickersConfigAddDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersConfigAddDialog.h -------------------------------------------------------------------------------- /src/plugins/tickers/TickersConfigAddDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersConfigAddDialog.ui -------------------------------------------------------------------------------- /src/plugins/tickers/TickersConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersConfigDialog.cpp -------------------------------------------------------------------------------- /src/plugins/tickers/TickersConfigDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersConfigDialog.h -------------------------------------------------------------------------------- /src/plugins/tickers/TickersConfigDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersConfigDialog.ui -------------------------------------------------------------------------------- /src/plugins/tickers/TickersPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersPlugin.cpp -------------------------------------------------------------------------------- /src/plugins/tickers/TickersPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersPlugin.h -------------------------------------------------------------------------------- /src/plugins/tickers/TickersWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersWidget.cpp -------------------------------------------------------------------------------- /src/plugins/tickers/TickersWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersWidget.h -------------------------------------------------------------------------------- /src/plugins/tickers/TickersWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/plugins/tickers/TickersWidget.ui -------------------------------------------------------------------------------- /src/polyseed/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/polyseed/pbkdf2.c -------------------------------------------------------------------------------- /src/polyseed/pbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/polyseed/pbkdf2.h -------------------------------------------------------------------------------- /src/polyseed/polyseed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/polyseed/polyseed.cpp -------------------------------------------------------------------------------- /src/polyseed/polyseed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/polyseed/polyseed.h -------------------------------------------------------------------------------- /src/qrcode/QrCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/QrCode.cpp -------------------------------------------------------------------------------- /src/qrcode/QrCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/QrCode.h -------------------------------------------------------------------------------- /src/qrcode/QrCode_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/QrCode_p.h -------------------------------------------------------------------------------- /src/qrcode/scanner/QrCodeScanDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/QrCodeScanDialog.cpp -------------------------------------------------------------------------------- /src/qrcode/scanner/QrCodeScanDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/QrCodeScanDialog.h -------------------------------------------------------------------------------- /src/qrcode/scanner/QrCodeScanDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/QrCodeScanDialog.ui -------------------------------------------------------------------------------- /src/qrcode/scanner/QrCodeScanWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/QrCodeScanWidget.cpp -------------------------------------------------------------------------------- /src/qrcode/scanner/QrCodeScanWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/QrCodeScanWidget.h -------------------------------------------------------------------------------- /src/qrcode/scanner/QrCodeScanWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/QrCodeScanWidget.ui -------------------------------------------------------------------------------- /src/qrcode/scanner/QrScanThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/QrScanThread.cpp -------------------------------------------------------------------------------- /src/qrcode/scanner/QrScanThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/QrScanThread.h -------------------------------------------------------------------------------- /src/qrcode/scanner/URDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/URDialog.cpp -------------------------------------------------------------------------------- /src/qrcode/scanner/URDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/URDialog.h -------------------------------------------------------------------------------- /src/qrcode/scanner/URDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/URDialog.ui -------------------------------------------------------------------------------- /src/qrcode/scanner/URWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/URWidget.cpp -------------------------------------------------------------------------------- /src/qrcode/scanner/URWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/URWidget.h -------------------------------------------------------------------------------- /src/qrcode/scanner/URWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/scanner/URWidget.ui -------------------------------------------------------------------------------- /src/qrcode/utils/QrCodeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/utils/QrCodeUtils.cpp -------------------------------------------------------------------------------- /src/qrcode/utils/QrCodeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/qrcode/utils/QrCodeUtils.h -------------------------------------------------------------------------------- /src/third-party/bcur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/CMakeLists.txt -------------------------------------------------------------------------------- /src/third-party/bcur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/README.md -------------------------------------------------------------------------------- /src/third-party/bcur/bc-ur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/bc-ur.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/bytewords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/bytewords.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/bytewords.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/bytewords.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/cbor-lite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/cbor-lite.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/crc32.c -------------------------------------------------------------------------------- /src/third-party/bcur/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/crc32.h -------------------------------------------------------------------------------- /src/third-party/bcur/fountain-decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/fountain-decoder.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/fountain-decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/fountain-decoder.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/fountain-encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/fountain-encoder.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/fountain-encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/fountain-encoder.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/fountain-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/fountain-utils.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/fountain-utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/fountain-utils.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/memzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/memzero.c -------------------------------------------------------------------------------- /src/third-party/bcur/memzero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/memzero.h -------------------------------------------------------------------------------- /src/third-party/bcur/random-sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/random-sampler.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/random-sampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/random-sampler.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/sha2.c -------------------------------------------------------------------------------- /src/third-party/bcur/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/sha2.h -------------------------------------------------------------------------------- /src/third-party/bcur/ur-decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/ur-decoder.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/ur-decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/ur-decoder.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/ur-encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/ur-encoder.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/ur-encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/ur-encoder.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/ur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/ur.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/ur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/ur.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/utils.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/utils.hpp -------------------------------------------------------------------------------- /src/third-party/bcur/xoshiro256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/xoshiro256.cpp -------------------------------------------------------------------------------- /src/third-party/bcur/xoshiro256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/third-party/bcur/xoshiro256.hpp -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/breeze.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/breeze.qrc -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark.qss -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/branch_open-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/branch_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/branch_open.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/close-hover.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/close.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/down_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/down_arrow.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/left_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/left_arrow.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/right_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/right_arrow.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/sizegrip.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/transparent.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/undock.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/dark/up_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/dark/up_arrow.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/light.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/light.qss -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/light/branch_open-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/light/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/light/close.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/light/down_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/light/down_arrow.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/light/left_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/light/left_arrow.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/light/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/light/sizegrip.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/light/undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/light/undock.svg -------------------------------------------------------------------------------- /src/ui/BreezeStyleSheets/light/up_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/BreezeStyleSheets/light/up_arrow.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_down.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_down@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_down_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_down_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_down_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_down_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_down_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_down_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_down_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_down_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_left.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_left@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_left_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_left_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_left_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_left_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_left_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_left_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_left_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_left_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_right.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_right@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_right_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_right_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_right_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_right_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_right_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_right_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_right_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_right_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_up.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_up@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_up_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_up_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_up_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_up_disabled@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_up_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_up_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_up_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_up_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_up_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_up_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/arrow_up_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/arrow_up_pressed@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/base_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/base_icon.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/base_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/base_icon@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/base_icon_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/base_icon_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/base_icon_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/base_icon_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/base_icon_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/base_icon_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/base_icon_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/base_icon_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/base_icon_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/base_icon_pressed@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_closed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_closed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_closed@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_closed_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_closed_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_end.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_end@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_end_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_end_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_end_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_end_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_end_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_end_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_end_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_end_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_line.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_line@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_line_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_line_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_line_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_line_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_line_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_line_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_line_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_line_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_more.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_more@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_more_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_more_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_more_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_more_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_more_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_more_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_more_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_more_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_open.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_open@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_open@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_open_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_open_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_open_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_open_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_open_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_open_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/branch_open_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/branch_open_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/checkbox_checked.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/checkbox_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/checkbox_checked@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/checkbox_unchecked.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/line_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/line_horizontal.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/line_horizontal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/line_horizontal@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/line_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/line_vertical.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/line_vertical@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/line_vertical@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/line_vertical_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/line_vertical_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/radio_checked.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/radio_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/radio_checked@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/radio_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/radio_checked_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/radio_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/radio_unchecked.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/radio_unchecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/radio_unchecked@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/transparent.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/transparent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/transparent@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/transparent_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/transparent_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/transparent_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/transparent_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/transparent_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/transparent_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/transparent_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/transparent_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_close.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_close@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_close_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_close_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_close_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_grip.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_grip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_grip@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_grip_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_grip_disabled.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_grip_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_grip_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_grip_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_grip_focus@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_grip_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_grip_pressed.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_minimize.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_minimize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_minimize@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_undock.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_undock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_undock@2x.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/rc/window_undock_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/rc/window_undock_focus.png -------------------------------------------------------------------------------- /src/ui/qdarkstyle/style.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/style.qrc -------------------------------------------------------------------------------- /src/ui/qdarkstyle/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/style.qss -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/arrow_down.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/arrow_left.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/arrow_right.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/arrow_up.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/base_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/base_icon.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/base_palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/base_palette.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/branch_closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/branch_closed.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/branch_end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/branch_end.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/branch_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/branch_line.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/branch_more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/branch_more.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/branch_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/branch_open.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/checkbox_checked.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/line_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/line_horizontal.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/line_vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/line_vertical.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/radio_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/radio_checked.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/radio_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/radio_unchecked.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/transparent.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/window_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/window_close.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/window_grip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/window_grip.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/window_minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/window_minimize.svg -------------------------------------------------------------------------------- /src/ui/qdarkstyle/svg/window_undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/ui/qdarkstyle/svg/window_undock.svg -------------------------------------------------------------------------------- /src/utils/AppData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/AppData.cpp -------------------------------------------------------------------------------- /src/utils/AppData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/AppData.h -------------------------------------------------------------------------------- /src/utils/AsyncTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/AsyncTask.h -------------------------------------------------------------------------------- /src/utils/ColorScheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/ColorScheme.cpp -------------------------------------------------------------------------------- /src/utils/ColorScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/ColorScheme.h -------------------------------------------------------------------------------- /src/utils/EventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/EventFilter.cpp -------------------------------------------------------------------------------- /src/utils/EventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/EventFilter.h -------------------------------------------------------------------------------- /src/utils/Icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/Icons.cpp -------------------------------------------------------------------------------- /src/utils/Icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/Icons.h -------------------------------------------------------------------------------- /src/utils/NetworkManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/NetworkManager.cpp -------------------------------------------------------------------------------- /src/utils/NetworkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/NetworkManager.h -------------------------------------------------------------------------------- /src/utils/Networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/Networking.cpp -------------------------------------------------------------------------------- /src/utils/Networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/Networking.h -------------------------------------------------------------------------------- /src/utils/RestoreHeightLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/RestoreHeightLookup.h -------------------------------------------------------------------------------- /src/utils/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/ScopeGuard.h -------------------------------------------------------------------------------- /src/utils/Seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/Seed.cpp -------------------------------------------------------------------------------- /src/utils/Seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/Seed.h -------------------------------------------------------------------------------- /src/utils/SemanticVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/SemanticVersion.h -------------------------------------------------------------------------------- /src/utils/TorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/TorManager.cpp -------------------------------------------------------------------------------- /src/utils/TorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/TorManager.h -------------------------------------------------------------------------------- /src/utils/TxFiatHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/TxFiatHistory.cpp -------------------------------------------------------------------------------- /src/utils/TxFiatHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/TxFiatHistory.h -------------------------------------------------------------------------------- /src/utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/Utils.cpp -------------------------------------------------------------------------------- /src/utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/Utils.h -------------------------------------------------------------------------------- /src/utils/WebsocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/WebsocketClient.cpp -------------------------------------------------------------------------------- /src/utils/WebsocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/WebsocketClient.h -------------------------------------------------------------------------------- /src/utils/WebsocketNotifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/WebsocketNotifier.cpp -------------------------------------------------------------------------------- /src/utils/WebsocketNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/WebsocketNotifier.h -------------------------------------------------------------------------------- /src/utils/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/config.cpp -------------------------------------------------------------------------------- /src/utils/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/config.h -------------------------------------------------------------------------------- /src/utils/daemonrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/daemonrpc.cpp -------------------------------------------------------------------------------- /src/utils/daemonrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/daemonrpc.h -------------------------------------------------------------------------------- /src/utils/networktype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/networktype.h -------------------------------------------------------------------------------- /src/utils/nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/nodes.cpp -------------------------------------------------------------------------------- /src/utils/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/nodes.h -------------------------------------------------------------------------------- /src/utils/os/tails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/os/tails.cpp -------------------------------------------------------------------------------- /src/utils/os/tails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/os/tails.h -------------------------------------------------------------------------------- /src/utils/os/whonix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/os/whonix.cpp -------------------------------------------------------------------------------- /src/utils/os/whonix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/os/whonix.h -------------------------------------------------------------------------------- /src/utils/prices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/prices.cpp -------------------------------------------------------------------------------- /src/utils/prices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/prices.h -------------------------------------------------------------------------------- /src/utils/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/scheduler.cpp -------------------------------------------------------------------------------- /src/utils/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/scheduler.h -------------------------------------------------------------------------------- /src/utils/textedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/textedit.cpp -------------------------------------------------------------------------------- /src/utils/textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/textedit.h -------------------------------------------------------------------------------- /src/utils/updater/UpdateDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/updater/UpdateDialog.cpp -------------------------------------------------------------------------------- /src/utils/updater/UpdateDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/updater/UpdateDialog.h -------------------------------------------------------------------------------- /src/utils/updater/UpdateDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/updater/UpdateDialog.ui -------------------------------------------------------------------------------- /src/utils/updater/Updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/updater/Updater.cpp -------------------------------------------------------------------------------- /src/utils/updater/Updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/utils/updater/Updater.h -------------------------------------------------------------------------------- /src/widgets/NetworkProxyWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/NetworkProxyWidget.cpp -------------------------------------------------------------------------------- /src/widgets/NetworkProxyWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/NetworkProxyWidget.h -------------------------------------------------------------------------------- /src/widgets/NetworkProxyWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/NetworkProxyWidget.ui -------------------------------------------------------------------------------- /src/widgets/NodeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/NodeWidget.cpp -------------------------------------------------------------------------------- /src/widgets/NodeWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/NodeWidget.h -------------------------------------------------------------------------------- /src/widgets/NodeWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/NodeWidget.ui -------------------------------------------------------------------------------- /src/widgets/PasswordSetWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/PasswordSetWidget.cpp -------------------------------------------------------------------------------- /src/widgets/PasswordSetWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/PasswordSetWidget.h -------------------------------------------------------------------------------- /src/widgets/PasswordSetWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/PasswordSetWidget.ui -------------------------------------------------------------------------------- /src/widgets/PayToEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/PayToEdit.cpp -------------------------------------------------------------------------------- /src/widgets/PayToEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/PayToEdit.h -------------------------------------------------------------------------------- /src/widgets/PluginWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/PluginWidget.cpp -------------------------------------------------------------------------------- /src/widgets/PluginWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/PluginWidget.h -------------------------------------------------------------------------------- /src/widgets/PluginWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/PluginWidget.ui -------------------------------------------------------------------------------- /src/widgets/QrCodeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/QrCodeWidget.cpp -------------------------------------------------------------------------------- /src/widgets/QrCodeWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/QrCodeWidget.h -------------------------------------------------------------------------------- /src/widgets/RestoreHeightWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/RestoreHeightWidget.cpp -------------------------------------------------------------------------------- /src/widgets/RestoreHeightWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/RestoreHeightWidget.h -------------------------------------------------------------------------------- /src/widgets/RestoreHeightWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/RestoreHeightWidget.ui -------------------------------------------------------------------------------- /src/widgets/TickerWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/TickerWidget.cpp -------------------------------------------------------------------------------- /src/widgets/TickerWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/TickerWidget.h -------------------------------------------------------------------------------- /src/widgets/TickerWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/TickerWidget.ui -------------------------------------------------------------------------------- /src/widgets/TxDetailsSimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/TxDetailsSimple.cpp -------------------------------------------------------------------------------- /src/widgets/TxDetailsSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/TxDetailsSimple.h -------------------------------------------------------------------------------- /src/widgets/TxDetailsSimple.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/TxDetailsSimple.ui -------------------------------------------------------------------------------- /src/widgets/UrlListConfigureWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/UrlListConfigureWidget.cpp -------------------------------------------------------------------------------- /src/widgets/UrlListConfigureWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/UrlListConfigureWidget.h -------------------------------------------------------------------------------- /src/widgets/UrlListConfigureWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/UrlListConfigureWidget.ui -------------------------------------------------------------------------------- /src/widgets/WalletUnlockWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/WalletUnlockWidget.cpp -------------------------------------------------------------------------------- /src/widgets/WalletUnlockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/WalletUnlockWidget.h -------------------------------------------------------------------------------- /src/widgets/WalletUnlockWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/widgets/WalletUnlockWidget.ui -------------------------------------------------------------------------------- /src/wizard/PageHardwareDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageHardwareDevice.cpp -------------------------------------------------------------------------------- /src/wizard/PageHardwareDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageHardwareDevice.h -------------------------------------------------------------------------------- /src/wizard/PageHardwareDevice.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageHardwareDevice.ui -------------------------------------------------------------------------------- /src/wizard/PageMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageMenu.cpp -------------------------------------------------------------------------------- /src/wizard/PageMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageMenu.h -------------------------------------------------------------------------------- /src/wizard/PageMenu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageMenu.ui -------------------------------------------------------------------------------- /src/wizard/PageNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageNetwork.cpp -------------------------------------------------------------------------------- /src/wizard/PageNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageNetwork.h -------------------------------------------------------------------------------- /src/wizard/PageNetwork.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageNetwork.ui -------------------------------------------------------------------------------- /src/wizard/PageNetworkProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageNetworkProxy.cpp -------------------------------------------------------------------------------- /src/wizard/PageNetworkProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageNetworkProxy.h -------------------------------------------------------------------------------- /src/wizard/PageNetworkProxy.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageNetworkProxy.ui -------------------------------------------------------------------------------- /src/wizard/PageNetworkWebsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageNetworkWebsocket.cpp -------------------------------------------------------------------------------- /src/wizard/PageNetworkWebsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageNetworkWebsocket.h -------------------------------------------------------------------------------- /src/wizard/PageNetworkWebsocket.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageNetworkWebsocket.ui -------------------------------------------------------------------------------- /src/wizard/PageOpenWallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageOpenWallet.cpp -------------------------------------------------------------------------------- /src/wizard/PageOpenWallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageOpenWallet.h -------------------------------------------------------------------------------- /src/wizard/PageOpenWallet.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageOpenWallet.ui -------------------------------------------------------------------------------- /src/wizard/PagePlugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PagePlugins.cpp -------------------------------------------------------------------------------- /src/wizard/PagePlugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PagePlugins.h -------------------------------------------------------------------------------- /src/wizard/PagePlugins.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PagePlugins.ui -------------------------------------------------------------------------------- /src/wizard/PageSetPassword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetPassword.cpp -------------------------------------------------------------------------------- /src/wizard/PageSetPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetPassword.h -------------------------------------------------------------------------------- /src/wizard/PageSetPassword.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetPassword.ui -------------------------------------------------------------------------------- /src/wizard/PageSetRestoreHeight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetRestoreHeight.cpp -------------------------------------------------------------------------------- /src/wizard/PageSetRestoreHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetRestoreHeight.h -------------------------------------------------------------------------------- /src/wizard/PageSetRestoreHeight.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetRestoreHeight.ui -------------------------------------------------------------------------------- /src/wizard/PageSetSeedPassphrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetSeedPassphrase.cpp -------------------------------------------------------------------------------- /src/wizard/PageSetSeedPassphrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetSeedPassphrase.h -------------------------------------------------------------------------------- /src/wizard/PageSetSeedPassphrase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetSeedPassphrase.ui -------------------------------------------------------------------------------- /src/wizard/PageSetSubaddressLookahead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetSubaddressLookahead.cpp -------------------------------------------------------------------------------- /src/wizard/PageSetSubaddressLookahead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetSubaddressLookahead.h -------------------------------------------------------------------------------- /src/wizard/PageSetSubaddressLookahead.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageSetSubaddressLookahead.ui -------------------------------------------------------------------------------- /src/wizard/PageWalletFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletFile.cpp -------------------------------------------------------------------------------- /src/wizard/PageWalletFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletFile.h -------------------------------------------------------------------------------- /src/wizard/PageWalletFile.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletFile.ui -------------------------------------------------------------------------------- /src/wizard/PageWalletRestoreKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletRestoreKeys.cpp -------------------------------------------------------------------------------- /src/wizard/PageWalletRestoreKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletRestoreKeys.h -------------------------------------------------------------------------------- /src/wizard/PageWalletRestoreKeys.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletRestoreKeys.ui -------------------------------------------------------------------------------- /src/wizard/PageWalletRestoreSeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletRestoreSeed.cpp -------------------------------------------------------------------------------- /src/wizard/PageWalletRestoreSeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletRestoreSeed.h -------------------------------------------------------------------------------- /src/wizard/PageWalletRestoreSeed.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletRestoreSeed.ui -------------------------------------------------------------------------------- /src/wizard/PageWalletSeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletSeed.cpp -------------------------------------------------------------------------------- /src/wizard/PageWalletSeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletSeed.h -------------------------------------------------------------------------------- /src/wizard/PageWalletSeed.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/PageWalletSeed.ui -------------------------------------------------------------------------------- /src/wizard/WalletWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/WalletWizard.cpp -------------------------------------------------------------------------------- /src/wizard/WalletWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/src/wizard/WalletWizard.h -------------------------------------------------------------------------------- /utils/pubkeys/featherwallet.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/utils/pubkeys/featherwallet.asc -------------------------------------------------------------------------------- /utils/pubkeys/tobtoht.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feather-wallet/feather/HEAD/utils/pubkeys/tobtoht.asc --------------------------------------------------------------------------------