├── .gitignore ├── .gitmodules ├── .tx └── config ├── ArmoryQt.py ├── ArmorySetup.nsi ├── BIP150_151.md ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── LICENSE-ATI ├── LICENSE-MIT ├── LICENSE.py ├── Makefile.am ├── PublicKeys ├── goatpig-signing-key.asc └── laanwj-releases.asc ├── README.md ├── README_3rdPartyLibraries.md ├── README_ArmoryDB.md ├── README_macOS.md ├── armorycolors.py ├── armoryd.README ├── armoryengine ├── ALL.py ├── AddressUtils.py ├── ArmoryUtils.py ├── AsciiSerialize.py ├── BDM.py ├── BIP15x.py ├── BinaryPacker.py ├── BinaryUnpacker.py ├── Block.py ├── CoinSelection.py ├── CppBridge.py ├── Decorators.py ├── MultiSigUtils.py ├── PyBtcAddress.py ├── PyBtcWallet.py ├── Script.py ├── Settings.py ├── Timer.py ├── Transaction.py ├── UserAddressUtils.py ├── WalletUtils.py └── __init__.py ├── armorymodels.py ├── autogen.sh ├── changelog.txt ├── cmake ├── ArmorySupport.cmake ├── CompilerColorDiagnostics.cmake ├── CompilerWarnings.cmake ├── FindPython │ └── Support.cmake ├── GCCToolchain.cmake ├── LLVMToolchain.cmake ├── LTO.cmake ├── Set-Toolchain-vcpkg.cmake └── scripts │ └── RewriteArmoryScriptPrefix.cmake ├── configure.ac ├── cppForSwig ├── AsyncClient.cpp ├── AsyncClient.h ├── BDM_Client │ └── build_installer_64.bat ├── BDM_Server.cpp ├── BDM_Server.h ├── BDM_mainthread.cpp ├── BDM_mainthread.h ├── BDV_Notification.cpp ├── BDV_Notification.h ├── BitcoinArmory.sln ├── BitcoinP2P.cpp ├── BitcoinP2P.h ├── BlockDataViewer.cpp ├── BlockDataViewer.h ├── BlockchainDatabase │ ├── BlockDataMap.cpp │ ├── BlockDataMap.h │ ├── BlockObj.cpp │ ├── BlockObj.h │ ├── BlockUtils.cpp │ ├── BlockUtils.h │ ├── Blockchain.cpp │ ├── Blockchain.h │ ├── BlockchainScanner.cpp │ ├── BlockchainScanner.h │ ├── BlockchainScanner_Super.cpp │ ├── BlockchainScanner_Super.h │ ├── DatabaseBuilder.cpp │ ├── DatabaseBuilder.h │ ├── ScrAddrFilter.cpp │ ├── ScrAddrFilter.h │ ├── SshParser.cpp │ ├── SshParser.h │ ├── StoredBlockObj.cpp │ ├── StoredBlockObj.h │ ├── TxHashFilters.cpp │ ├── TxHashFilters.h │ ├── lmdb_wrapper.cpp │ ├── lmdb_wrapper.h │ ├── txio.cpp │ └── txio.h ├── BridgeAPI │ ├── BlockchainDbClient.cpp │ ├── BlockchainDbClient.h │ ├── BridgeMain.cpp │ ├── BridgeSocket.cpp │ ├── BridgeSocket.h │ ├── CppBridge.cpp │ ├── CppBridge.h │ ├── PassphrasePrompt.cpp │ ├── PassphrasePrompt.h │ ├── ProtoCommandParser.cpp │ ├── ProtoCommandParser.h │ └── Wallets │ │ ├── Container.cpp │ │ ├── Container.h │ │ ├── Loader.cpp │ │ ├── Loader.h │ │ ├── Manager.cpp │ │ ├── Manager.h │ │ ├── Notifications.cpp │ │ └── Notifications.h ├── BtcWallet.cpp ├── BtcWallet.h ├── CMakeLists.txt ├── DBClientClasses.cpp ├── DBClientClasses.h ├── KeyManager.cpp ├── Ledgers │ ├── HistoryPager.cpp │ ├── HistoryPager.h │ ├── LedgerEntry.cpp │ └── LedgerEntry.h ├── Makefile.am ├── Makefile.tests.include ├── Progress.cpp ├── Progress.h ├── ScrAddrObj.cpp ├── ScrAddrObj.h ├── Server.cpp ├── Server.h ├── Signer │ ├── CoinSelection.cpp │ ├── CoinSelection.h │ ├── LegacySigner.cpp │ ├── LegacySigner.h │ ├── PSBT.cpp │ ├── PSBT.h │ ├── ResolverFeed.cpp │ ├── ResolverFeed.h │ ├── ResolverFeed_Wallets.cpp │ ├── ResolverFeed_Wallets.h │ ├── Script.cpp │ ├── Script.h │ ├── ScriptRecipient.cpp │ ├── ScriptRecipient.h │ ├── ScriptSpender.cpp │ ├── ScriptSpender.h │ ├── SigHashEnum.h │ ├── Signer.cpp │ ├── Signer.h │ ├── StackItems.cpp │ ├── StackItems.h │ ├── Transactions.cpp │ ├── Transactions.h │ ├── TxEvalState.cpp │ └── TxEvalState.h ├── SocketIncludes.h ├── SocketObject.cpp ├── SocketObject.h ├── SocketService.h ├── SocketService_unix.cpp ├── SocketService_win32.cpp ├── SocketWritePayload.h ├── StringSockets.cpp ├── StringSockets.h ├── TerminalPassphrasePrompt.cpp ├── TerminalPassphrasePrompt.h ├── TxClasses.cpp ├── TxClasses.h ├── Utils │ ├── ArmoryConfig.cpp │ ├── ArmoryConfig.h │ ├── ArmoryErrors.h │ ├── BCTX.cpp │ ├── BCTX.h │ ├── BIP150_151.cpp │ ├── BIP150_151.h │ ├── BIP15x_Handshake.cpp │ ├── BIP15x_Handshake.h │ ├── BinaryData.cpp │ ├── BinaryData.h │ ├── BitcoinSettings.cpp │ ├── BitcoinSettings.h │ ├── BtcUtils.cpp │ ├── BtcUtils.h │ ├── Cryptography.cpp │ ├── Cryptography.h │ ├── DBUtils.cpp │ ├── DBUtils.h │ ├── HttpMessage.cpp │ ├── HttpMessage.h │ ├── JSON_codec.cpp │ ├── JSON_codec.h │ ├── OpCodes.cpp │ ├── OpCodes.h │ ├── ReentrantLock.cpp │ ├── ReentrantLock.h │ ├── SecureBinaryData.cpp │ ├── SecureBinaryData.h │ ├── ThreadSafeClasses.h │ ├── TxOutScrRef.cpp │ ├── TxOutScrRef.h │ ├── UniversalTimer.cpp │ ├── UniversalTimer.h │ ├── log.cpp │ ├── log.h │ ├── varint.cpp │ └── varint.h ├── Wallets │ ├── Accounts │ │ ├── AccountTypes.cpp │ │ ├── AccountTypes.h │ │ ├── AddressAccounts.cpp │ │ ├── AddressAccounts.h │ │ ├── AssetAccounts.cpp │ │ ├── AssetAccounts.h │ │ ├── MetaAccounts.cpp │ │ └── MetaAccounts.h │ ├── Addresses.cpp │ ├── Addresses.h │ ├── AssetEncryption.cpp │ ├── AssetEncryption.h │ ├── Assets.cpp │ ├── Assets.h │ ├── AuthorizedPeers.cpp │ ├── AuthorizedPeers.h │ ├── BIP32_Node.cpp │ ├── BIP32_Node.h │ ├── DecryptedDataContainer.cpp │ ├── DecryptedDataContainer.h │ ├── DerivationScheme.cpp │ ├── DerivationScheme.h │ ├── EncryptedDB.cpp │ ├── EncryptedDB.h │ ├── GetPassphrase.cpp │ ├── GetPassphrase.h │ ├── IOHeader.h │ ├── KDF.cpp │ ├── KDF.h │ ├── Progress.cpp │ ├── Progress.h │ ├── Seeds │ │ ├── Backups.cpp │ │ ├── Backups.h │ │ ├── Seeds.cpp │ │ └── Seeds.h │ ├── WalletFileInterface.cpp │ ├── WalletFileInterface.h │ ├── WalletHeader.cpp │ ├── WalletHeader.h │ ├── WalletIdTypes.cpp │ ├── WalletIdTypes.h │ ├── Wallets.cpp │ ├── Wallets.h │ └── random_buffer.c ├── WebSocketClient.cpp ├── WebSocketClient.h ├── WebSocketMessage.cpp ├── WebSocketMessage.h ├── ZeroConf │ ├── Notifications.cpp │ ├── Notifications.h │ ├── Parser.cpp │ ├── Parser.h │ ├── Utils.cpp │ └── Utils.h ├── bdmenums.h ├── capnp │ ├── BDV.capnp │ ├── Bridge.capnp │ ├── Signer.capnp │ └── Types.capnp ├── chacha20poly1305 │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.md │ ├── bench.c │ ├── chacha.c │ ├── chacha.h │ ├── chachapoly_aead.c │ ├── chachapoly_aead.h │ ├── poly1305.c │ ├── poly1305.h │ └── tests.c ├── deprecated │ ├── PartialMerkle.h │ ├── TransactionBatch.cpp │ ├── TransactionBatch.h │ ├── old_not_very_good_tests.cpp │ ├── playground.cpp │ └── util.h ├── get_distro.sh ├── gtest │ ├── BIP151RekeyTest.cpp │ ├── BridgeTests.cpp │ ├── CMakeLists.txt │ ├── ContainerTests.cpp │ ├── CppBlockUtilsTests.cpp │ ├── DB1kIterTest.cpp │ ├── MockedNode.cpp │ ├── MockedNode.h │ ├── SignerTests.cpp │ ├── SupernodeTests.cpp │ ├── TestUtils.cpp │ ├── TestUtils.h │ ├── UtilsTests.cpp │ ├── WalletTests.cpp │ ├── ZeroConfTests.cpp │ └── input_files │ │ ├── bip150v0_cli1 │ │ ├── authorized-peers-v4 │ │ ├── identity-key-ipv4 │ │ ├── identity-key-ipv4.pub │ │ └── known-peers-v4 │ │ ├── bip150v0_srv1 │ │ ├── authorized-peers-v4 │ │ ├── identity-key-ipv4 │ │ ├── identity-key-ipv4.pub │ │ └── known-peers-v4 │ │ └── legacy.wallet ├── guardian │ ├── guardian.cpp │ ├── guardian.sln │ ├── guardian.vcproj │ ├── guardian.vcxproj │ └── guardian.vcxproj.filters ├── hkdf │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── hkdf.c │ └── hkdf.h ├── lmdbpp │ ├── lmdbpp.cpp │ └── lmdbpp.h ├── main.cpp ├── nodeRPC.cpp ├── nodeRPC.h ├── reorgTest │ ├── LBZC.tx │ ├── ZCtx.tx │ ├── blk_0.dat │ ├── blk_1.dat │ ├── blk_2.dat │ ├── blk_3.dat │ ├── blk_4.dat │ ├── blk_4A.dat │ ├── blk_5.dat │ ├── blk_5A.dat │ ├── blkdata.h │ └── botched_block.dat └── testReadBlkUpdTestnet │ ├── blk00000.dat │ ├── blk00000_test1.dat │ ├── blk00000_test2.dat │ ├── blk00001_test3.dat │ ├── blk00002_test4.dat │ ├── blk00002_test5.dat │ └── blk00003_test5.dat ├── dpkgfiles ├── armory ├── armory.desktop ├── armoryoffline.desktop ├── armorytestnet.desktop ├── control32 ├── control64 ├── copyright ├── make_deb_package.py ├── postinst ├── postrm └── rules ├── dynamicImport.py ├── edit_icons.bat ├── edit_icons.rts ├── extras ├── BDMbasics_listUTXOs.py ├── BDMbasics_traceTxHistory.py ├── BDMbasics_watchBalance.py ├── LastBlockHash.py ├── LatestBlocksFinder.py ├── PromoKit.py ├── README ├── __init__.py ├── armoryengine_basics.py ├── blk135687.hex ├── blk170.bin ├── breakDownWallet.py ├── cli_sign_txdp.py ├── createTestBlocksForReadBlkUpdate.py ├── createTestChain.py ├── createTxFromAddrList.py ├── dataIDTest.hex ├── dlscript.py ├── extractKeysFromWallet.py ├── findpass.py ├── frag_wallet.py ├── genPrivPubKeyPair.py ├── lookathex.py ├── manually_import_500k_addr.py ├── mysteryHex.py ├── sample_armory_code.py ├── satoshiDiceStats.py ├── scriptEvalStackState.txt ├── scriptTests.txt ├── sign_dl_list.py ├── sign_release.py ├── test │ ├── FOUND_PASSWORD.txt │ ├── FakeWallet123.wallet │ ├── FakeWallet123_backup.wallet │ ├── FindPassTest.py │ ├── OnlineVersionOfEncryptedWallet.bin │ ├── OnlineVersionOfEncryptedWallet_backup.bin │ └── __init__.py ├── testnetNonStdScript.txt ├── unfrag_wallet.py └── verify_dl_list.py ├── guardian.py ├── guitest └── testMainWindow.py ├── img ├── 2c.png ├── 2d.png ├── 2h.png ├── 2s.png ├── 3c.png ├── 3d.png ├── 3h.png ├── 3s.png ├── 4c.png ├── 4d.png ├── 4h.png ├── 4s.png ├── 5c.png ├── 5d.png ├── 5h.png ├── 5s.png ├── 6c.png ├── 6d.png ├── 6h.png ├── 6s.png ├── 7c.png ├── 7d.png ├── 7h.png ├── 7s.png ├── 8c.png ├── 8d.png ├── 8h.png ├── 8s.png ├── 9c.png ├── 9d.png ├── 9h.png ├── 9s.png ├── Ac.png ├── Ad.png ├── Ah.png ├── As.png ├── Jc.png ├── Jd.png ├── Jh.png ├── Js.png ├── Kc.png ├── Kd.png ├── Kh.png ├── Ks.png ├── MsgBox_critical24.png ├── MsgBox_critical64.png ├── MsgBox_error32.png ├── MsgBox_error64.png ├── MsgBox_good48.png ├── MsgBox_info32.png ├── MsgBox_info48.png ├── MsgBox_question32.png ├── MsgBox_question64.png ├── MsgBox_warning48.png ├── Qc.png ├── Qd.png ├── Qh.png ├── Qs.png ├── Tc.png ├── Td.png ├── Th.png ├── Ts.png ├── addr_book_icon.png ├── armory16x16.ico ├── armory24x24.ico ├── armory256x256.ico ├── armory32x32.ico ├── armory48x48.ico ├── armory64x64.ico ├── armory_icon_24x24.png ├── armory_icon_32x32.png ├── armory_icon_64x64.png ├── armory_icon_fullres.icns ├── armory_icon_fullres.png ├── armory_icon_green_24x24.png ├── armory_icon_green_32x32.png ├── armory_icon_green_64x64.png ├── armory_icon_green_fullres.png ├── armory_logo_fullres.png ├── armory_logo_green_h56.png ├── armory_logo_green_h72.png ├── armory_logo_h36.png ├── armory_logo_h44.png ├── armory_logo_h48.png ├── armory_logo_h56.png ├── armory_logo_h72.png ├── armory_logo_white_text_green_h56.png ├── armory_logo_white_text_green_h72.png ├── armory_logo_white_text_h56.png ├── armory_logo_white_text_h72.png ├── armory_rightclickcopy.png ├── arrow_down.png ├── arrow_down32.png ├── arrow_left.png ├── arrow_left32.png ├── arrow_right.png ├── arrow_right32.png ├── arrow_right_24x24.png ├── arrow_right_blue_24x24.png ├── arrow_right_green_24x24.png ├── arrow_right_red_24x24.png ├── arrow_up.png ├── arrow_up32.png ├── asterisk_orange.png ├── bitcoinlogo.png ├── busy.gif ├── button-blue.png ├── button-green.png ├── button-purple.png ├── button-red.png ├── button-seagreen.png ├── button-yellow.png ├── checkmark32.png ├── checkmark32_blue.png ├── checkmark32_orange.png ├── checkmark_okay.png ├── circle_blue.png ├── circle_green.png ├── circle_orange.png ├── circle_purple.png ├── circle_red.png ├── circle_tan.png ├── circle_yellow.png ├── conf0t.png ├── conf0t_nonum.png ├── conf1t.png ├── conf1t_nonum.png ├── conf2t.png ├── conf2t_nonum.png ├── conf3t.png ├── conf3t_nonum.png ├── conf4t.png ├── conf4t_nonum.png ├── conf5t.png ├── conf5t_nonum.png ├── conf6t.png ├── folder-new-5.png ├── folder.png ├── folder24.png ├── frag1f.png ├── frag2f.png ├── frag3f.png ├── frag4f.png ├── frag5f.png ├── frag6f.png ├── frag7f.png ├── frag8f.png ├── inkscapeIconFactory.svg ├── keyhole_blue.png ├── keyhole_gray.png ├── keyhole_green.png ├── keyhole_red.png ├── keyhole_white.png ├── loadicon_0.png ├── loadicon_1.png ├── loadicon_2.png ├── loadicon_3.png ├── loadicon_4.png ├── loadicon_5.png ├── lockedIcon.png ├── logo_vert_black_text.png ├── logo_vert_black_text_antialiased.png ├── logo_vert_black_text_green.png ├── logo_vert_white_text.png ├── moneyCoinbase.png ├── moneyIn.png ├── moneyOut.png ├── moneySelf.png ├── plus_orange.png ├── preferences.png ├── preferences256.png ├── printer_icon.png ├── process-stop-4.png ├── red_X.png ├── scroll_down_18.png ├── scroll_down_24.png ├── scroll_up_18.png ├── scroll_up_24.png ├── sent_to_self.png ├── splashlogo.png ├── splashlogo_testnet.png ├── unlockedIcon.png ├── view-refresh-4.png ├── visible.png ├── visible2.png ├── wallet_16x12.png └── x-office-address-book.png ├── imgList.xml ├── jasvet.py ├── lang ├── armory_da.ts ├── armory_de.ts ├── armory_el.ts ├── armory_en.ts ├── armory_es.ts ├── armory_fr.ts ├── armory_he.ts ├── armory_hr.ts ├── armory_id.ts ├── armory_ru.ts └── armory_sv.ts ├── nginx_example.conf ├── pytest ├── SendTx.py ├── Tiab.py ├── __init__.py ├── testAnnounce.py ├── testArmoryD.py ├── testArmoryDStartup.py ├── testArmoryDTiab.py ├── testArmoryEngineUtils.py ├── testDecorators.py ├── testFragmentedBackup.py ├── testJasvet.py ├── testMultisig.py ├── testParseAnnounce.py ├── testPyBtcAddress.py ├── testPyBtcWallet.py ├── testPyBtcWalletRecovery.py ├── testPyTX.py ├── testSigning.py ├── testSplitSecret.py ├── testUserAddress.py ├── testUtility.py └── tiab.zip ├── qrcodenative.py ├── qtdialogs ├── .pylintrc ├── ArmoryDialog.py ├── DlgAddressBook.py ├── DlgAddressInfo.py ├── DlgBackupCenter.py ├── DlgBrowserWarn.py ├── DlgChangePassphrase.py ├── DlgConfirmSend.py ├── DlgCorruptWallet.py ├── DlgDispTxInfo.py ├── DlgEULA.py ├── DlgExportTxHistory.py ├── DlgExportWO.py ├── DlgHelpAbout.py ├── DlgIntroMessage.py ├── DlgKeypoolSettings.py ├── DlgMigrateWallet.py ├── DlgNewAddress.py ├── DlgOfflineTx.py ├── DlgPasswd3.py ├── DlgProgress.py ├── DlgQRCodeDisplay.py ├── DlgRemoveWallet.py ├── DlgReplaceWallet.py ├── DlgRequestPayment.py ├── DlgRestore.py ├── DlgSendBitcoins.py ├── DlgSetComment.py ├── DlgSettings.py ├── DlgShowKeyList.py ├── DlgUniversalRestoreSelect.py ├── DlgUnlockWallet.py ├── DlgUriCopyAndPaste.py ├── DlgWalletDetails.py ├── DlgWalletMigration.py ├── DlgWalletSelect.py ├── DlgWltRecoverWallet.py ├── MsgBoxCustom.py ├── MsgBoxWithDNAA.py ├── QRCodeWidget.py ├── __init__.py ├── qtdefines.py └── qtdialogs.py ├── r-pi ├── README.md ├── crosscompile.py └── r-pi_dl_packages.sh ├── release_scripts ├── README.txt ├── Step1_Online_PrepareForSigning.py ├── Step2_Offline_PackageSigning.py ├── Step3_Online_VerifyAndUpload.py ├── release_utils.py └── signannounce.py ├── samplemodules ├── DustBGonePlugin.py ├── LoggingPlugin.py ├── PassPhraseFinderPlugin.py ├── SearchPlugin.py └── testPlugin.py ├── setup.py ├── translations.md ├── ui ├── AddressTypeSelectDialog.py ├── CoinControlUI.py ├── FeeSelectUI.py ├── MultiSigDialogs.py ├── MultiSigModels.py ├── QrCodeMatrix.py ├── QtExecuteSignal.py ├── TreeViewGUI.py ├── TxFrames.py ├── TxFramesOffline.py ├── WalletFrames.py ├── Wizards.py ├── __init__.py └── toolsDialogs.py ├── update_version.py ├── webshop ├── README.md ├── orders │ └── README.md ├── refunds │ └── README.md ├── server.py ├── static │ ├── custom.css │ ├── customjs.js │ ├── key.jpg │ ├── shirt.jpg │ └── sprite.png └── templates │ ├── base.html │ ├── cart.html │ ├── home.html │ ├── pay.html │ ├── product.html │ ├── refund.html │ └── ship.html └── writeNSISCompilerArgs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/.tx/config -------------------------------------------------------------------------------- /ArmoryQt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ArmoryQt.py -------------------------------------------------------------------------------- /ArmorySetup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ArmorySetup.nsi -------------------------------------------------------------------------------- /BIP150_151.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/BIP150_151.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-ATI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/LICENSE-ATI -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/LICENSE.py -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/Makefile.am -------------------------------------------------------------------------------- /PublicKeys/goatpig-signing-key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/PublicKeys/goatpig-signing-key.asc -------------------------------------------------------------------------------- /PublicKeys/laanwj-releases.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/PublicKeys/laanwj-releases.asc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/README.md -------------------------------------------------------------------------------- /README_3rdPartyLibraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/README_3rdPartyLibraries.md -------------------------------------------------------------------------------- /README_ArmoryDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/README_ArmoryDB.md -------------------------------------------------------------------------------- /README_macOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/README_macOS.md -------------------------------------------------------------------------------- /armorycolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armorycolors.py -------------------------------------------------------------------------------- /armoryd.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryd.README -------------------------------------------------------------------------------- /armoryengine/ALL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/ALL.py -------------------------------------------------------------------------------- /armoryengine/AddressUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/AddressUtils.py -------------------------------------------------------------------------------- /armoryengine/ArmoryUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/ArmoryUtils.py -------------------------------------------------------------------------------- /armoryengine/AsciiSerialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/AsciiSerialize.py -------------------------------------------------------------------------------- /armoryengine/BDM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/BDM.py -------------------------------------------------------------------------------- /armoryengine/BIP15x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/BIP15x.py -------------------------------------------------------------------------------- /armoryengine/BinaryPacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/BinaryPacker.py -------------------------------------------------------------------------------- /armoryengine/BinaryUnpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/BinaryUnpacker.py -------------------------------------------------------------------------------- /armoryengine/Block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/Block.py -------------------------------------------------------------------------------- /armoryengine/CoinSelection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/CoinSelection.py -------------------------------------------------------------------------------- /armoryengine/CppBridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/CppBridge.py -------------------------------------------------------------------------------- /armoryengine/Decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/Decorators.py -------------------------------------------------------------------------------- /armoryengine/MultiSigUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/MultiSigUtils.py -------------------------------------------------------------------------------- /armoryengine/PyBtcAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/PyBtcAddress.py -------------------------------------------------------------------------------- /armoryengine/PyBtcWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/PyBtcWallet.py -------------------------------------------------------------------------------- /armoryengine/Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/Script.py -------------------------------------------------------------------------------- /armoryengine/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/Settings.py -------------------------------------------------------------------------------- /armoryengine/Timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/Timer.py -------------------------------------------------------------------------------- /armoryengine/Transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/Transaction.py -------------------------------------------------------------------------------- /armoryengine/UserAddressUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/UserAddressUtils.py -------------------------------------------------------------------------------- /armoryengine/WalletUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armoryengine/WalletUtils.py -------------------------------------------------------------------------------- /armoryengine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /armorymodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/armorymodels.py -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/autogen.sh -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/changelog.txt -------------------------------------------------------------------------------- /cmake/ArmorySupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cmake/ArmorySupport.cmake -------------------------------------------------------------------------------- /cmake/CompilerColorDiagnostics.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cmake/CompilerColorDiagnostics.cmake -------------------------------------------------------------------------------- /cmake/CompilerWarnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cmake/CompilerWarnings.cmake -------------------------------------------------------------------------------- /cmake/FindPython/Support.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cmake/FindPython/Support.cmake -------------------------------------------------------------------------------- /cmake/GCCToolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cmake/GCCToolchain.cmake -------------------------------------------------------------------------------- /cmake/LLVMToolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cmake/LLVMToolchain.cmake -------------------------------------------------------------------------------- /cmake/LTO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cmake/LTO.cmake -------------------------------------------------------------------------------- /cmake/Set-Toolchain-vcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cmake/Set-Toolchain-vcpkg.cmake -------------------------------------------------------------------------------- /cmake/scripts/RewriteArmoryScriptPrefix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cmake/scripts/RewriteArmoryScriptPrefix.cmake -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/configure.ac -------------------------------------------------------------------------------- /cppForSwig/AsyncClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/AsyncClient.cpp -------------------------------------------------------------------------------- /cppForSwig/AsyncClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/AsyncClient.h -------------------------------------------------------------------------------- /cppForSwig/BDM_Client/build_installer_64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BDM_Client/build_installer_64.bat -------------------------------------------------------------------------------- /cppForSwig/BDM_Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BDM_Server.cpp -------------------------------------------------------------------------------- /cppForSwig/BDM_Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BDM_Server.h -------------------------------------------------------------------------------- /cppForSwig/BDM_mainthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BDM_mainthread.cpp -------------------------------------------------------------------------------- /cppForSwig/BDM_mainthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BDM_mainthread.h -------------------------------------------------------------------------------- /cppForSwig/BDV_Notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BDV_Notification.cpp -------------------------------------------------------------------------------- /cppForSwig/BDV_Notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BDV_Notification.h -------------------------------------------------------------------------------- /cppForSwig/BitcoinArmory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BitcoinArmory.sln -------------------------------------------------------------------------------- /cppForSwig/BitcoinP2P.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BitcoinP2P.cpp -------------------------------------------------------------------------------- /cppForSwig/BitcoinP2P.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BitcoinP2P.h -------------------------------------------------------------------------------- /cppForSwig/BlockDataViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockDataViewer.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockDataViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockDataViewer.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockDataMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockDataMap.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockDataMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockDataMap.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockObj.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockObj.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockUtils.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockUtils.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/Blockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/Blockchain.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/Blockchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/Blockchain.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockchainScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockchainScanner.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockchainScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockchainScanner.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockchainScanner_Super.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockchainScanner_Super.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/BlockchainScanner_Super.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/BlockchainScanner_Super.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/DatabaseBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/DatabaseBuilder.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/DatabaseBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/DatabaseBuilder.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/ScrAddrFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/ScrAddrFilter.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/ScrAddrFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/ScrAddrFilter.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/SshParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/SshParser.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/SshParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/SshParser.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/StoredBlockObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/StoredBlockObj.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/StoredBlockObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/StoredBlockObj.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/TxHashFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/TxHashFilters.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/TxHashFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/TxHashFilters.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/lmdb_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/lmdb_wrapper.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/lmdb_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/lmdb_wrapper.h -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/txio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/txio.cpp -------------------------------------------------------------------------------- /cppForSwig/BlockchainDatabase/txio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BlockchainDatabase/txio.h -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/BlockchainDbClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/BlockchainDbClient.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/BlockchainDbClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/BlockchainDbClient.h -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/BridgeMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/BridgeMain.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/BridgeSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/BridgeSocket.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/BridgeSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/BridgeSocket.h -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/CppBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/CppBridge.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/CppBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/CppBridge.h -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/PassphrasePrompt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/PassphrasePrompt.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/PassphrasePrompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/PassphrasePrompt.h -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/ProtoCommandParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/ProtoCommandParser.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/ProtoCommandParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/ProtoCommandParser.h -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/Wallets/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/Wallets/Container.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/Wallets/Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/Wallets/Container.h -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/Wallets/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/Wallets/Loader.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/Wallets/Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/Wallets/Loader.h -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/Wallets/Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/Wallets/Manager.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/Wallets/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/Wallets/Manager.h -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/Wallets/Notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/Wallets/Notifications.cpp -------------------------------------------------------------------------------- /cppForSwig/BridgeAPI/Wallets/Notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BridgeAPI/Wallets/Notifications.h -------------------------------------------------------------------------------- /cppForSwig/BtcWallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BtcWallet.cpp -------------------------------------------------------------------------------- /cppForSwig/BtcWallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/BtcWallet.h -------------------------------------------------------------------------------- /cppForSwig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/CMakeLists.txt -------------------------------------------------------------------------------- /cppForSwig/DBClientClasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/DBClientClasses.cpp -------------------------------------------------------------------------------- /cppForSwig/DBClientClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/DBClientClasses.h -------------------------------------------------------------------------------- /cppForSwig/KeyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/KeyManager.cpp -------------------------------------------------------------------------------- /cppForSwig/Ledgers/HistoryPager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Ledgers/HistoryPager.cpp -------------------------------------------------------------------------------- /cppForSwig/Ledgers/HistoryPager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Ledgers/HistoryPager.h -------------------------------------------------------------------------------- /cppForSwig/Ledgers/LedgerEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Ledgers/LedgerEntry.cpp -------------------------------------------------------------------------------- /cppForSwig/Ledgers/LedgerEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Ledgers/LedgerEntry.h -------------------------------------------------------------------------------- /cppForSwig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Makefile.am -------------------------------------------------------------------------------- /cppForSwig/Makefile.tests.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Makefile.tests.include -------------------------------------------------------------------------------- /cppForSwig/Progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Progress.cpp -------------------------------------------------------------------------------- /cppForSwig/Progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Progress.h -------------------------------------------------------------------------------- /cppForSwig/ScrAddrObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/ScrAddrObj.cpp -------------------------------------------------------------------------------- /cppForSwig/ScrAddrObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/ScrAddrObj.h -------------------------------------------------------------------------------- /cppForSwig/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Server.cpp -------------------------------------------------------------------------------- /cppForSwig/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Server.h -------------------------------------------------------------------------------- /cppForSwig/Signer/CoinSelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/CoinSelection.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/CoinSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/CoinSelection.h -------------------------------------------------------------------------------- /cppForSwig/Signer/LegacySigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/LegacySigner.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/LegacySigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/LegacySigner.h -------------------------------------------------------------------------------- /cppForSwig/Signer/PSBT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/PSBT.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/PSBT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/PSBT.h -------------------------------------------------------------------------------- /cppForSwig/Signer/ResolverFeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/ResolverFeed.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/ResolverFeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/ResolverFeed.h -------------------------------------------------------------------------------- /cppForSwig/Signer/ResolverFeed_Wallets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/ResolverFeed_Wallets.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/ResolverFeed_Wallets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/ResolverFeed_Wallets.h -------------------------------------------------------------------------------- /cppForSwig/Signer/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/Script.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/Script.h -------------------------------------------------------------------------------- /cppForSwig/Signer/ScriptRecipient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/ScriptRecipient.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/ScriptRecipient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/ScriptRecipient.h -------------------------------------------------------------------------------- /cppForSwig/Signer/ScriptSpender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/ScriptSpender.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/ScriptSpender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/ScriptSpender.h -------------------------------------------------------------------------------- /cppForSwig/Signer/SigHashEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/SigHashEnum.h -------------------------------------------------------------------------------- /cppForSwig/Signer/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/Signer.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/Signer.h -------------------------------------------------------------------------------- /cppForSwig/Signer/StackItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/StackItems.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/StackItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/StackItems.h -------------------------------------------------------------------------------- /cppForSwig/Signer/Transactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/Transactions.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/Transactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/Transactions.h -------------------------------------------------------------------------------- /cppForSwig/Signer/TxEvalState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/TxEvalState.cpp -------------------------------------------------------------------------------- /cppForSwig/Signer/TxEvalState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Signer/TxEvalState.h -------------------------------------------------------------------------------- /cppForSwig/SocketIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/SocketIncludes.h -------------------------------------------------------------------------------- /cppForSwig/SocketObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/SocketObject.cpp -------------------------------------------------------------------------------- /cppForSwig/SocketObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/SocketObject.h -------------------------------------------------------------------------------- /cppForSwig/SocketService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/SocketService.h -------------------------------------------------------------------------------- /cppForSwig/SocketService_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/SocketService_unix.cpp -------------------------------------------------------------------------------- /cppForSwig/SocketService_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/SocketService_win32.cpp -------------------------------------------------------------------------------- /cppForSwig/SocketWritePayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/SocketWritePayload.h -------------------------------------------------------------------------------- /cppForSwig/StringSockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/StringSockets.cpp -------------------------------------------------------------------------------- /cppForSwig/StringSockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/StringSockets.h -------------------------------------------------------------------------------- /cppForSwig/TerminalPassphrasePrompt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/TerminalPassphrasePrompt.cpp -------------------------------------------------------------------------------- /cppForSwig/TerminalPassphrasePrompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/TerminalPassphrasePrompt.h -------------------------------------------------------------------------------- /cppForSwig/TxClasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/TxClasses.cpp -------------------------------------------------------------------------------- /cppForSwig/TxClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/TxClasses.h -------------------------------------------------------------------------------- /cppForSwig/Utils/ArmoryConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/ArmoryConfig.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/ArmoryConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/ArmoryConfig.h -------------------------------------------------------------------------------- /cppForSwig/Utils/ArmoryErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/ArmoryErrors.h -------------------------------------------------------------------------------- /cppForSwig/Utils/BCTX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BCTX.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/BCTX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BCTX.h -------------------------------------------------------------------------------- /cppForSwig/Utils/BIP150_151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BIP150_151.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/BIP150_151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BIP150_151.h -------------------------------------------------------------------------------- /cppForSwig/Utils/BIP15x_Handshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BIP15x_Handshake.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/BIP15x_Handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BIP15x_Handshake.h -------------------------------------------------------------------------------- /cppForSwig/Utils/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BinaryData.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BinaryData.h -------------------------------------------------------------------------------- /cppForSwig/Utils/BitcoinSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BitcoinSettings.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/BitcoinSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BitcoinSettings.h -------------------------------------------------------------------------------- /cppForSwig/Utils/BtcUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BtcUtils.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/BtcUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/BtcUtils.h -------------------------------------------------------------------------------- /cppForSwig/Utils/Cryptography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/Cryptography.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/Cryptography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/Cryptography.h -------------------------------------------------------------------------------- /cppForSwig/Utils/DBUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/DBUtils.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/DBUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/DBUtils.h -------------------------------------------------------------------------------- /cppForSwig/Utils/HttpMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/HttpMessage.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/HttpMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/HttpMessage.h -------------------------------------------------------------------------------- /cppForSwig/Utils/JSON_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/JSON_codec.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/JSON_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/JSON_codec.h -------------------------------------------------------------------------------- /cppForSwig/Utils/OpCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/OpCodes.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/OpCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/OpCodes.h -------------------------------------------------------------------------------- /cppForSwig/Utils/ReentrantLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/ReentrantLock.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/ReentrantLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/ReentrantLock.h -------------------------------------------------------------------------------- /cppForSwig/Utils/SecureBinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/SecureBinaryData.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/SecureBinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/SecureBinaryData.h -------------------------------------------------------------------------------- /cppForSwig/Utils/ThreadSafeClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/ThreadSafeClasses.h -------------------------------------------------------------------------------- /cppForSwig/Utils/TxOutScrRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/TxOutScrRef.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/TxOutScrRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/TxOutScrRef.h -------------------------------------------------------------------------------- /cppForSwig/Utils/UniversalTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/UniversalTimer.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/UniversalTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/UniversalTimer.h -------------------------------------------------------------------------------- /cppForSwig/Utils/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/log.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/log.h -------------------------------------------------------------------------------- /cppForSwig/Utils/varint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/varint.cpp -------------------------------------------------------------------------------- /cppForSwig/Utils/varint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Utils/varint.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Accounts/AccountTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Accounts/AccountTypes.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Accounts/AccountTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Accounts/AccountTypes.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Accounts/AddressAccounts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Accounts/AddressAccounts.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Accounts/AddressAccounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Accounts/AddressAccounts.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Accounts/AssetAccounts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Accounts/AssetAccounts.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Accounts/AssetAccounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Accounts/AssetAccounts.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Accounts/MetaAccounts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Accounts/MetaAccounts.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Accounts/MetaAccounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Accounts/MetaAccounts.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Addresses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Addresses.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Addresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Addresses.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/AssetEncryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/AssetEncryption.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/AssetEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/AssetEncryption.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Assets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Assets.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Assets.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/AuthorizedPeers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/AuthorizedPeers.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/AuthorizedPeers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/AuthorizedPeers.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/BIP32_Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/BIP32_Node.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/BIP32_Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/BIP32_Node.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/DecryptedDataContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/DecryptedDataContainer.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/DecryptedDataContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/DecryptedDataContainer.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/DerivationScheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/DerivationScheme.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/DerivationScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/DerivationScheme.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/EncryptedDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/EncryptedDB.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/EncryptedDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/EncryptedDB.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/GetPassphrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/GetPassphrase.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/GetPassphrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/GetPassphrase.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/IOHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/IOHeader.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/KDF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/KDF.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/KDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/KDF.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Progress.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Progress.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Seeds/Backups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Seeds/Backups.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Seeds/Backups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Seeds/Backups.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Seeds/Seeds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Seeds/Seeds.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Seeds/Seeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Seeds/Seeds.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/WalletFileInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/WalletFileInterface.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/WalletFileInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/WalletFileInterface.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/WalletHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/WalletHeader.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/WalletHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/WalletHeader.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/WalletIdTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/WalletIdTypes.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/WalletIdTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/WalletIdTypes.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/Wallets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Wallets.cpp -------------------------------------------------------------------------------- /cppForSwig/Wallets/Wallets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/Wallets.h -------------------------------------------------------------------------------- /cppForSwig/Wallets/random_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/Wallets/random_buffer.c -------------------------------------------------------------------------------- /cppForSwig/WebSocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/WebSocketClient.cpp -------------------------------------------------------------------------------- /cppForSwig/WebSocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/WebSocketClient.h -------------------------------------------------------------------------------- /cppForSwig/WebSocketMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/WebSocketMessage.cpp -------------------------------------------------------------------------------- /cppForSwig/WebSocketMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/WebSocketMessage.h -------------------------------------------------------------------------------- /cppForSwig/ZeroConf/Notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/ZeroConf/Notifications.cpp -------------------------------------------------------------------------------- /cppForSwig/ZeroConf/Notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/ZeroConf/Notifications.h -------------------------------------------------------------------------------- /cppForSwig/ZeroConf/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/ZeroConf/Parser.cpp -------------------------------------------------------------------------------- /cppForSwig/ZeroConf/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/ZeroConf/Parser.h -------------------------------------------------------------------------------- /cppForSwig/ZeroConf/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/ZeroConf/Utils.cpp -------------------------------------------------------------------------------- /cppForSwig/ZeroConf/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/ZeroConf/Utils.h -------------------------------------------------------------------------------- /cppForSwig/bdmenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/bdmenums.h -------------------------------------------------------------------------------- /cppForSwig/capnp/BDV.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/capnp/BDV.capnp -------------------------------------------------------------------------------- /cppForSwig/capnp/Bridge.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/capnp/Bridge.capnp -------------------------------------------------------------------------------- /cppForSwig/capnp/Signer.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/capnp/Signer.capnp -------------------------------------------------------------------------------- /cppForSwig/capnp/Types.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/capnp/Types.capnp -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/CMakeLists.txt -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/Makefile.am -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/README.md -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/bench.c -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/chacha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/chacha.c -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/chacha.h -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/chachapoly_aead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/chachapoly_aead.c -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/chachapoly_aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/chachapoly_aead.h -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/poly1305.c -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/poly1305.h -------------------------------------------------------------------------------- /cppForSwig/chacha20poly1305/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/chacha20poly1305/tests.c -------------------------------------------------------------------------------- /cppForSwig/deprecated/PartialMerkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/deprecated/PartialMerkle.h -------------------------------------------------------------------------------- /cppForSwig/deprecated/TransactionBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/deprecated/TransactionBatch.cpp -------------------------------------------------------------------------------- /cppForSwig/deprecated/TransactionBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/deprecated/TransactionBatch.h -------------------------------------------------------------------------------- /cppForSwig/deprecated/old_not_very_good_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/deprecated/old_not_very_good_tests.cpp -------------------------------------------------------------------------------- /cppForSwig/deprecated/playground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/deprecated/playground.cpp -------------------------------------------------------------------------------- /cppForSwig/deprecated/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/deprecated/util.h -------------------------------------------------------------------------------- /cppForSwig/get_distro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/get_distro.sh -------------------------------------------------------------------------------- /cppForSwig/gtest/BIP151RekeyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/BIP151RekeyTest.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/BridgeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/BridgeTests.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /cppForSwig/gtest/ContainerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/ContainerTests.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/CppBlockUtilsTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/CppBlockUtilsTests.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/DB1kIterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/DB1kIterTest.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/MockedNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/MockedNode.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/MockedNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/MockedNode.h -------------------------------------------------------------------------------- /cppForSwig/gtest/SignerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/SignerTests.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/SupernodeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/SupernodeTests.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/TestUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/TestUtils.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/TestUtils.h -------------------------------------------------------------------------------- /cppForSwig/gtest/UtilsTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/UtilsTests.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/WalletTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/WalletTests.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/ZeroConfTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/ZeroConfTests.cpp -------------------------------------------------------------------------------- /cppForSwig/gtest/input_files/bip150v0_cli1/authorized-peers-v4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/input_files/bip150v0_cli1/authorized-peers-v4 -------------------------------------------------------------------------------- /cppForSwig/gtest/input_files/bip150v0_cli1/identity-key-ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/input_files/bip150v0_cli1/identity-key-ipv4 -------------------------------------------------------------------------------- /cppForSwig/gtest/input_files/bip150v0_cli1/identity-key-ipv4.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/input_files/bip150v0_cli1/identity-key-ipv4.pub -------------------------------------------------------------------------------- /cppForSwig/gtest/input_files/bip150v0_cli1/known-peers-v4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/input_files/bip150v0_cli1/known-peers-v4 -------------------------------------------------------------------------------- /cppForSwig/gtest/input_files/bip150v0_srv1/authorized-peers-v4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/input_files/bip150v0_srv1/authorized-peers-v4 -------------------------------------------------------------------------------- /cppForSwig/gtest/input_files/bip150v0_srv1/identity-key-ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/input_files/bip150v0_srv1/identity-key-ipv4 -------------------------------------------------------------------------------- /cppForSwig/gtest/input_files/bip150v0_srv1/identity-key-ipv4.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/input_files/bip150v0_srv1/identity-key-ipv4.pub -------------------------------------------------------------------------------- /cppForSwig/gtest/input_files/bip150v0_srv1/known-peers-v4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/input_files/bip150v0_srv1/known-peers-v4 -------------------------------------------------------------------------------- /cppForSwig/gtest/input_files/legacy.wallet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/gtest/input_files/legacy.wallet -------------------------------------------------------------------------------- /cppForSwig/guardian/guardian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/guardian/guardian.cpp -------------------------------------------------------------------------------- /cppForSwig/guardian/guardian.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/guardian/guardian.sln -------------------------------------------------------------------------------- /cppForSwig/guardian/guardian.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/guardian/guardian.vcproj -------------------------------------------------------------------------------- /cppForSwig/guardian/guardian.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/guardian/guardian.vcxproj -------------------------------------------------------------------------------- /cppForSwig/guardian/guardian.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/guardian/guardian.vcxproj.filters -------------------------------------------------------------------------------- /cppForSwig/hkdf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/hkdf/CMakeLists.txt -------------------------------------------------------------------------------- /cppForSwig/hkdf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/hkdf/Makefile.am -------------------------------------------------------------------------------- /cppForSwig/hkdf/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/hkdf/hkdf.c -------------------------------------------------------------------------------- /cppForSwig/hkdf/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/hkdf/hkdf.h -------------------------------------------------------------------------------- /cppForSwig/lmdbpp/lmdbpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/lmdbpp/lmdbpp.cpp -------------------------------------------------------------------------------- /cppForSwig/lmdbpp/lmdbpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/lmdbpp/lmdbpp.h -------------------------------------------------------------------------------- /cppForSwig/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/main.cpp -------------------------------------------------------------------------------- /cppForSwig/nodeRPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/nodeRPC.cpp -------------------------------------------------------------------------------- /cppForSwig/nodeRPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/nodeRPC.h -------------------------------------------------------------------------------- /cppForSwig/reorgTest/LBZC.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/LBZC.tx -------------------------------------------------------------------------------- /cppForSwig/reorgTest/ZCtx.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/ZCtx.tx -------------------------------------------------------------------------------- /cppForSwig/reorgTest/blk_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/blk_0.dat -------------------------------------------------------------------------------- /cppForSwig/reorgTest/blk_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/blk_1.dat -------------------------------------------------------------------------------- /cppForSwig/reorgTest/blk_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/blk_2.dat -------------------------------------------------------------------------------- /cppForSwig/reorgTest/blk_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/blk_3.dat -------------------------------------------------------------------------------- /cppForSwig/reorgTest/blk_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/blk_4.dat -------------------------------------------------------------------------------- /cppForSwig/reorgTest/blk_4A.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/blk_4A.dat -------------------------------------------------------------------------------- /cppForSwig/reorgTest/blk_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/blk_5.dat -------------------------------------------------------------------------------- /cppForSwig/reorgTest/blk_5A.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/blk_5A.dat -------------------------------------------------------------------------------- /cppForSwig/reorgTest/blkdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/blkdata.h -------------------------------------------------------------------------------- /cppForSwig/reorgTest/botched_block.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/reorgTest/botched_block.dat -------------------------------------------------------------------------------- /cppForSwig/testReadBlkUpdTestnet/blk00000.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/testReadBlkUpdTestnet/blk00000.dat -------------------------------------------------------------------------------- /cppForSwig/testReadBlkUpdTestnet/blk00000_test1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/testReadBlkUpdTestnet/blk00000_test1.dat -------------------------------------------------------------------------------- /cppForSwig/testReadBlkUpdTestnet/blk00000_test2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/testReadBlkUpdTestnet/blk00000_test2.dat -------------------------------------------------------------------------------- /cppForSwig/testReadBlkUpdTestnet/blk00001_test3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/testReadBlkUpdTestnet/blk00001_test3.dat -------------------------------------------------------------------------------- /cppForSwig/testReadBlkUpdTestnet/blk00002_test4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/testReadBlkUpdTestnet/blk00002_test4.dat -------------------------------------------------------------------------------- /cppForSwig/testReadBlkUpdTestnet/blk00002_test5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/testReadBlkUpdTestnet/blk00002_test5.dat -------------------------------------------------------------------------------- /cppForSwig/testReadBlkUpdTestnet/blk00003_test5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/cppForSwig/testReadBlkUpdTestnet/blk00003_test5.dat -------------------------------------------------------------------------------- /dpkgfiles/armory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/armory -------------------------------------------------------------------------------- /dpkgfiles/armory.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/armory.desktop -------------------------------------------------------------------------------- /dpkgfiles/armoryoffline.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/armoryoffline.desktop -------------------------------------------------------------------------------- /dpkgfiles/armorytestnet.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/armorytestnet.desktop -------------------------------------------------------------------------------- /dpkgfiles/control32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/control32 -------------------------------------------------------------------------------- /dpkgfiles/control64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/control64 -------------------------------------------------------------------------------- /dpkgfiles/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/copyright -------------------------------------------------------------------------------- /dpkgfiles/make_deb_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/make_deb_package.py -------------------------------------------------------------------------------- /dpkgfiles/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/postinst -------------------------------------------------------------------------------- /dpkgfiles/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/postrm -------------------------------------------------------------------------------- /dpkgfiles/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dpkgfiles/rules -------------------------------------------------------------------------------- /dynamicImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/dynamicImport.py -------------------------------------------------------------------------------- /edit_icons.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/edit_icons.bat -------------------------------------------------------------------------------- /edit_icons.rts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/edit_icons.rts -------------------------------------------------------------------------------- /extras/BDMbasics_listUTXOs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/BDMbasics_listUTXOs.py -------------------------------------------------------------------------------- /extras/BDMbasics_traceTxHistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/BDMbasics_traceTxHistory.py -------------------------------------------------------------------------------- /extras/BDMbasics_watchBalance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/BDMbasics_watchBalance.py -------------------------------------------------------------------------------- /extras/LastBlockHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/LastBlockHash.py -------------------------------------------------------------------------------- /extras/LatestBlocksFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/LatestBlocksFinder.py -------------------------------------------------------------------------------- /extras/PromoKit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/PromoKit.py -------------------------------------------------------------------------------- /extras/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/README -------------------------------------------------------------------------------- /extras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extras/armoryengine_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/armoryengine_basics.py -------------------------------------------------------------------------------- /extras/blk135687.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/blk135687.hex -------------------------------------------------------------------------------- /extras/blk170.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/blk170.bin -------------------------------------------------------------------------------- /extras/breakDownWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/breakDownWallet.py -------------------------------------------------------------------------------- /extras/cli_sign_txdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/cli_sign_txdp.py -------------------------------------------------------------------------------- /extras/createTestBlocksForReadBlkUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/createTestBlocksForReadBlkUpdate.py -------------------------------------------------------------------------------- /extras/createTestChain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/createTestChain.py -------------------------------------------------------------------------------- /extras/createTxFromAddrList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/createTxFromAddrList.py -------------------------------------------------------------------------------- /extras/dataIDTest.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/dataIDTest.hex -------------------------------------------------------------------------------- /extras/dlscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/dlscript.py -------------------------------------------------------------------------------- /extras/extractKeysFromWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/extractKeysFromWallet.py -------------------------------------------------------------------------------- /extras/findpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/findpass.py -------------------------------------------------------------------------------- /extras/frag_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/frag_wallet.py -------------------------------------------------------------------------------- /extras/genPrivPubKeyPair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/genPrivPubKeyPair.py -------------------------------------------------------------------------------- /extras/lookathex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/lookathex.py -------------------------------------------------------------------------------- /extras/manually_import_500k_addr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/manually_import_500k_addr.py -------------------------------------------------------------------------------- /extras/mysteryHex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/mysteryHex.py -------------------------------------------------------------------------------- /extras/sample_armory_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/sample_armory_code.py -------------------------------------------------------------------------------- /extras/satoshiDiceStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/satoshiDiceStats.py -------------------------------------------------------------------------------- /extras/scriptEvalStackState.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/scriptEvalStackState.txt -------------------------------------------------------------------------------- /extras/scriptTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/scriptTests.txt -------------------------------------------------------------------------------- /extras/sign_dl_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/sign_dl_list.py -------------------------------------------------------------------------------- /extras/sign_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/sign_release.py -------------------------------------------------------------------------------- /extras/test/FOUND_PASSWORD.txt: -------------------------------------------------------------------------------- 1 | FakeWallet123 -------------------------------------------------------------------------------- /extras/test/FakeWallet123.wallet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/test/FakeWallet123.wallet -------------------------------------------------------------------------------- /extras/test/FakeWallet123_backup.wallet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/test/FakeWallet123_backup.wallet -------------------------------------------------------------------------------- /extras/test/FindPassTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/test/FindPassTest.py -------------------------------------------------------------------------------- /extras/test/OnlineVersionOfEncryptedWallet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/test/OnlineVersionOfEncryptedWallet.bin -------------------------------------------------------------------------------- /extras/test/OnlineVersionOfEncryptedWallet_backup.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/test/OnlineVersionOfEncryptedWallet_backup.bin -------------------------------------------------------------------------------- /extras/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extras/testnetNonStdScript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/testnetNonStdScript.txt -------------------------------------------------------------------------------- /extras/unfrag_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/unfrag_wallet.py -------------------------------------------------------------------------------- /extras/verify_dl_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/extras/verify_dl_list.py -------------------------------------------------------------------------------- /guardian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/guardian.py -------------------------------------------------------------------------------- /guitest/testMainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/guitest/testMainWindow.py -------------------------------------------------------------------------------- /img/2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/2c.png -------------------------------------------------------------------------------- /img/2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/2d.png -------------------------------------------------------------------------------- /img/2h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/2h.png -------------------------------------------------------------------------------- /img/2s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/2s.png -------------------------------------------------------------------------------- /img/3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/3c.png -------------------------------------------------------------------------------- /img/3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/3d.png -------------------------------------------------------------------------------- /img/3h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/3h.png -------------------------------------------------------------------------------- /img/3s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/3s.png -------------------------------------------------------------------------------- /img/4c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/4c.png -------------------------------------------------------------------------------- /img/4d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/4d.png -------------------------------------------------------------------------------- /img/4h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/4h.png -------------------------------------------------------------------------------- /img/4s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/4s.png -------------------------------------------------------------------------------- /img/5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/5c.png -------------------------------------------------------------------------------- /img/5d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/5d.png -------------------------------------------------------------------------------- /img/5h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/5h.png -------------------------------------------------------------------------------- /img/5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/5s.png -------------------------------------------------------------------------------- /img/6c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/6c.png -------------------------------------------------------------------------------- /img/6d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/6d.png -------------------------------------------------------------------------------- /img/6h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/6h.png -------------------------------------------------------------------------------- /img/6s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/6s.png -------------------------------------------------------------------------------- /img/7c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/7c.png -------------------------------------------------------------------------------- /img/7d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/7d.png -------------------------------------------------------------------------------- /img/7h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/7h.png -------------------------------------------------------------------------------- /img/7s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/7s.png -------------------------------------------------------------------------------- /img/8c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/8c.png -------------------------------------------------------------------------------- /img/8d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/8d.png -------------------------------------------------------------------------------- /img/8h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/8h.png -------------------------------------------------------------------------------- /img/8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/8s.png -------------------------------------------------------------------------------- /img/9c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/9c.png -------------------------------------------------------------------------------- /img/9d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/9d.png -------------------------------------------------------------------------------- /img/9h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/9h.png -------------------------------------------------------------------------------- /img/9s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/9s.png -------------------------------------------------------------------------------- /img/Ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Ac.png -------------------------------------------------------------------------------- /img/Ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Ad.png -------------------------------------------------------------------------------- /img/Ah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Ah.png -------------------------------------------------------------------------------- /img/As.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/As.png -------------------------------------------------------------------------------- /img/Jc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Jc.png -------------------------------------------------------------------------------- /img/Jd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Jd.png -------------------------------------------------------------------------------- /img/Jh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Jh.png -------------------------------------------------------------------------------- /img/Js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Js.png -------------------------------------------------------------------------------- /img/Kc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Kc.png -------------------------------------------------------------------------------- /img/Kd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Kd.png -------------------------------------------------------------------------------- /img/Kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Kh.png -------------------------------------------------------------------------------- /img/Ks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Ks.png -------------------------------------------------------------------------------- /img/MsgBox_critical24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_critical24.png -------------------------------------------------------------------------------- /img/MsgBox_critical64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_critical64.png -------------------------------------------------------------------------------- /img/MsgBox_error32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_error32.png -------------------------------------------------------------------------------- /img/MsgBox_error64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_error64.png -------------------------------------------------------------------------------- /img/MsgBox_good48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_good48.png -------------------------------------------------------------------------------- /img/MsgBox_info32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_info32.png -------------------------------------------------------------------------------- /img/MsgBox_info48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_info48.png -------------------------------------------------------------------------------- /img/MsgBox_question32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_question32.png -------------------------------------------------------------------------------- /img/MsgBox_question64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_question64.png -------------------------------------------------------------------------------- /img/MsgBox_warning48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/MsgBox_warning48.png -------------------------------------------------------------------------------- /img/Qc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Qc.png -------------------------------------------------------------------------------- /img/Qd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Qd.png -------------------------------------------------------------------------------- /img/Qh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Qh.png -------------------------------------------------------------------------------- /img/Qs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Qs.png -------------------------------------------------------------------------------- /img/Tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Tc.png -------------------------------------------------------------------------------- /img/Td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Td.png -------------------------------------------------------------------------------- /img/Th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Th.png -------------------------------------------------------------------------------- /img/Ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/Ts.png -------------------------------------------------------------------------------- /img/addr_book_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/addr_book_icon.png -------------------------------------------------------------------------------- /img/armory16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory16x16.ico -------------------------------------------------------------------------------- /img/armory24x24.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory24x24.ico -------------------------------------------------------------------------------- /img/armory256x256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory256x256.ico -------------------------------------------------------------------------------- /img/armory32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory32x32.ico -------------------------------------------------------------------------------- /img/armory48x48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory48x48.ico -------------------------------------------------------------------------------- /img/armory64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory64x64.ico -------------------------------------------------------------------------------- /img/armory_icon_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_icon_24x24.png -------------------------------------------------------------------------------- /img/armory_icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_icon_32x32.png -------------------------------------------------------------------------------- /img/armory_icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_icon_64x64.png -------------------------------------------------------------------------------- /img/armory_icon_fullres.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_icon_fullres.icns -------------------------------------------------------------------------------- /img/armory_icon_fullres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_icon_fullres.png -------------------------------------------------------------------------------- /img/armory_icon_green_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_icon_green_24x24.png -------------------------------------------------------------------------------- /img/armory_icon_green_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_icon_green_32x32.png -------------------------------------------------------------------------------- /img/armory_icon_green_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_icon_green_64x64.png -------------------------------------------------------------------------------- /img/armory_icon_green_fullres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_icon_green_fullres.png -------------------------------------------------------------------------------- /img/armory_logo_fullres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_fullres.png -------------------------------------------------------------------------------- /img/armory_logo_green_h56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_green_h56.png -------------------------------------------------------------------------------- /img/armory_logo_green_h72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_green_h72.png -------------------------------------------------------------------------------- /img/armory_logo_h36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_h36.png -------------------------------------------------------------------------------- /img/armory_logo_h44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_h44.png -------------------------------------------------------------------------------- /img/armory_logo_h48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_h48.png -------------------------------------------------------------------------------- /img/armory_logo_h56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_h56.png -------------------------------------------------------------------------------- /img/armory_logo_h72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_h72.png -------------------------------------------------------------------------------- /img/armory_logo_white_text_green_h56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_white_text_green_h56.png -------------------------------------------------------------------------------- /img/armory_logo_white_text_green_h72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_white_text_green_h72.png -------------------------------------------------------------------------------- /img/armory_logo_white_text_h56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_white_text_h56.png -------------------------------------------------------------------------------- /img/armory_logo_white_text_h72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_logo_white_text_h72.png -------------------------------------------------------------------------------- /img/armory_rightclickcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/armory_rightclickcopy.png -------------------------------------------------------------------------------- /img/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_down.png -------------------------------------------------------------------------------- /img/arrow_down32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_down32.png -------------------------------------------------------------------------------- /img/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_left.png -------------------------------------------------------------------------------- /img/arrow_left32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_left32.png -------------------------------------------------------------------------------- /img/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_right.png -------------------------------------------------------------------------------- /img/arrow_right32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_right32.png -------------------------------------------------------------------------------- /img/arrow_right_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_right_24x24.png -------------------------------------------------------------------------------- /img/arrow_right_blue_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_right_blue_24x24.png -------------------------------------------------------------------------------- /img/arrow_right_green_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_right_green_24x24.png -------------------------------------------------------------------------------- /img/arrow_right_red_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_right_red_24x24.png -------------------------------------------------------------------------------- /img/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_up.png -------------------------------------------------------------------------------- /img/arrow_up32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/arrow_up32.png -------------------------------------------------------------------------------- /img/asterisk_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/asterisk_orange.png -------------------------------------------------------------------------------- /img/bitcoinlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/bitcoinlogo.png -------------------------------------------------------------------------------- /img/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/busy.gif -------------------------------------------------------------------------------- /img/button-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/button-blue.png -------------------------------------------------------------------------------- /img/button-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/button-green.png -------------------------------------------------------------------------------- /img/button-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/button-purple.png -------------------------------------------------------------------------------- /img/button-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/button-red.png -------------------------------------------------------------------------------- /img/button-seagreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/button-seagreen.png -------------------------------------------------------------------------------- /img/button-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/button-yellow.png -------------------------------------------------------------------------------- /img/checkmark32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/checkmark32.png -------------------------------------------------------------------------------- /img/checkmark32_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/checkmark32_blue.png -------------------------------------------------------------------------------- /img/checkmark32_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/checkmark32_orange.png -------------------------------------------------------------------------------- /img/checkmark_okay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/checkmark_okay.png -------------------------------------------------------------------------------- /img/circle_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/circle_blue.png -------------------------------------------------------------------------------- /img/circle_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/circle_green.png -------------------------------------------------------------------------------- /img/circle_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/circle_orange.png -------------------------------------------------------------------------------- /img/circle_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/circle_purple.png -------------------------------------------------------------------------------- /img/circle_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/circle_red.png -------------------------------------------------------------------------------- /img/circle_tan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/circle_tan.png -------------------------------------------------------------------------------- /img/circle_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/circle_yellow.png -------------------------------------------------------------------------------- /img/conf0t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf0t.png -------------------------------------------------------------------------------- /img/conf0t_nonum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf0t_nonum.png -------------------------------------------------------------------------------- /img/conf1t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf1t.png -------------------------------------------------------------------------------- /img/conf1t_nonum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf1t_nonum.png -------------------------------------------------------------------------------- /img/conf2t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf2t.png -------------------------------------------------------------------------------- /img/conf2t_nonum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf2t_nonum.png -------------------------------------------------------------------------------- /img/conf3t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf3t.png -------------------------------------------------------------------------------- /img/conf3t_nonum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf3t_nonum.png -------------------------------------------------------------------------------- /img/conf4t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf4t.png -------------------------------------------------------------------------------- /img/conf4t_nonum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf4t_nonum.png -------------------------------------------------------------------------------- /img/conf5t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf5t.png -------------------------------------------------------------------------------- /img/conf5t_nonum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf5t_nonum.png -------------------------------------------------------------------------------- /img/conf6t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/conf6t.png -------------------------------------------------------------------------------- /img/folder-new-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/folder-new-5.png -------------------------------------------------------------------------------- /img/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/folder.png -------------------------------------------------------------------------------- /img/folder24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/folder24.png -------------------------------------------------------------------------------- /img/frag1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/frag1f.png -------------------------------------------------------------------------------- /img/frag2f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/frag2f.png -------------------------------------------------------------------------------- /img/frag3f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/frag3f.png -------------------------------------------------------------------------------- /img/frag4f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/frag4f.png -------------------------------------------------------------------------------- /img/frag5f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/frag5f.png -------------------------------------------------------------------------------- /img/frag6f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/frag6f.png -------------------------------------------------------------------------------- /img/frag7f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/frag7f.png -------------------------------------------------------------------------------- /img/frag8f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/frag8f.png -------------------------------------------------------------------------------- /img/inkscapeIconFactory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/inkscapeIconFactory.svg -------------------------------------------------------------------------------- /img/keyhole_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/keyhole_blue.png -------------------------------------------------------------------------------- /img/keyhole_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/keyhole_gray.png -------------------------------------------------------------------------------- /img/keyhole_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/keyhole_green.png -------------------------------------------------------------------------------- /img/keyhole_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/keyhole_red.png -------------------------------------------------------------------------------- /img/keyhole_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/keyhole_white.png -------------------------------------------------------------------------------- /img/loadicon_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/loadicon_0.png -------------------------------------------------------------------------------- /img/loadicon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/loadicon_1.png -------------------------------------------------------------------------------- /img/loadicon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/loadicon_2.png -------------------------------------------------------------------------------- /img/loadicon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/loadicon_3.png -------------------------------------------------------------------------------- /img/loadicon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/loadicon_4.png -------------------------------------------------------------------------------- /img/loadicon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/loadicon_5.png -------------------------------------------------------------------------------- /img/lockedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/lockedIcon.png -------------------------------------------------------------------------------- /img/logo_vert_black_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/logo_vert_black_text.png -------------------------------------------------------------------------------- /img/logo_vert_black_text_antialiased.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/logo_vert_black_text_antialiased.png -------------------------------------------------------------------------------- /img/logo_vert_black_text_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/logo_vert_black_text_green.png -------------------------------------------------------------------------------- /img/logo_vert_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/logo_vert_white_text.png -------------------------------------------------------------------------------- /img/moneyCoinbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/moneyCoinbase.png -------------------------------------------------------------------------------- /img/moneyIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/moneyIn.png -------------------------------------------------------------------------------- /img/moneyOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/moneyOut.png -------------------------------------------------------------------------------- /img/moneySelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/moneySelf.png -------------------------------------------------------------------------------- /img/plus_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/plus_orange.png -------------------------------------------------------------------------------- /img/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/preferences.png -------------------------------------------------------------------------------- /img/preferences256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/preferences256.png -------------------------------------------------------------------------------- /img/printer_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/printer_icon.png -------------------------------------------------------------------------------- /img/process-stop-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/process-stop-4.png -------------------------------------------------------------------------------- /img/red_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/red_X.png -------------------------------------------------------------------------------- /img/scroll_down_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/scroll_down_18.png -------------------------------------------------------------------------------- /img/scroll_down_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/scroll_down_24.png -------------------------------------------------------------------------------- /img/scroll_up_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/scroll_up_18.png -------------------------------------------------------------------------------- /img/scroll_up_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/scroll_up_24.png -------------------------------------------------------------------------------- /img/sent_to_self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/sent_to_self.png -------------------------------------------------------------------------------- /img/splashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/splashlogo.png -------------------------------------------------------------------------------- /img/splashlogo_testnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/splashlogo_testnet.png -------------------------------------------------------------------------------- /img/unlockedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/unlockedIcon.png -------------------------------------------------------------------------------- /img/view-refresh-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/view-refresh-4.png -------------------------------------------------------------------------------- /img/visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/visible.png -------------------------------------------------------------------------------- /img/visible2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/visible2.png -------------------------------------------------------------------------------- /img/wallet_16x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/wallet_16x12.png -------------------------------------------------------------------------------- /img/x-office-address-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/img/x-office-address-book.png -------------------------------------------------------------------------------- /imgList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/imgList.xml -------------------------------------------------------------------------------- /jasvet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/jasvet.py -------------------------------------------------------------------------------- /lang/armory_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_da.ts -------------------------------------------------------------------------------- /lang/armory_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_de.ts -------------------------------------------------------------------------------- /lang/armory_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_el.ts -------------------------------------------------------------------------------- /lang/armory_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_en.ts -------------------------------------------------------------------------------- /lang/armory_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_es.ts -------------------------------------------------------------------------------- /lang/armory_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_fr.ts -------------------------------------------------------------------------------- /lang/armory_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_he.ts -------------------------------------------------------------------------------- /lang/armory_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_hr.ts -------------------------------------------------------------------------------- /lang/armory_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_id.ts -------------------------------------------------------------------------------- /lang/armory_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_ru.ts -------------------------------------------------------------------------------- /lang/armory_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/lang/armory_sv.ts -------------------------------------------------------------------------------- /nginx_example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/nginx_example.conf -------------------------------------------------------------------------------- /pytest/SendTx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/SendTx.py -------------------------------------------------------------------------------- /pytest/Tiab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/Tiab.py -------------------------------------------------------------------------------- /pytest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/__init__.py -------------------------------------------------------------------------------- /pytest/testAnnounce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testAnnounce.py -------------------------------------------------------------------------------- /pytest/testArmoryD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testArmoryD.py -------------------------------------------------------------------------------- /pytest/testArmoryDStartup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testArmoryDStartup.py -------------------------------------------------------------------------------- /pytest/testArmoryDTiab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testArmoryDTiab.py -------------------------------------------------------------------------------- /pytest/testArmoryEngineUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testArmoryEngineUtils.py -------------------------------------------------------------------------------- /pytest/testDecorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testDecorators.py -------------------------------------------------------------------------------- /pytest/testFragmentedBackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testFragmentedBackup.py -------------------------------------------------------------------------------- /pytest/testJasvet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testJasvet.py -------------------------------------------------------------------------------- /pytest/testMultisig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testMultisig.py -------------------------------------------------------------------------------- /pytest/testParseAnnounce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testParseAnnounce.py -------------------------------------------------------------------------------- /pytest/testPyBtcAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testPyBtcAddress.py -------------------------------------------------------------------------------- /pytest/testPyBtcWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testPyBtcWallet.py -------------------------------------------------------------------------------- /pytest/testPyBtcWalletRecovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testPyBtcWalletRecovery.py -------------------------------------------------------------------------------- /pytest/testPyTX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testPyTX.py -------------------------------------------------------------------------------- /pytest/testSigning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testSigning.py -------------------------------------------------------------------------------- /pytest/testSplitSecret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testSplitSecret.py -------------------------------------------------------------------------------- /pytest/testUserAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testUserAddress.py -------------------------------------------------------------------------------- /pytest/testUtility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/testUtility.py -------------------------------------------------------------------------------- /pytest/tiab.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/pytest/tiab.zip -------------------------------------------------------------------------------- /qrcodenative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qrcodenative.py -------------------------------------------------------------------------------- /qtdialogs/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/.pylintrc -------------------------------------------------------------------------------- /qtdialogs/ArmoryDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/ArmoryDialog.py -------------------------------------------------------------------------------- /qtdialogs/DlgAddressBook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgAddressBook.py -------------------------------------------------------------------------------- /qtdialogs/DlgAddressInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgAddressInfo.py -------------------------------------------------------------------------------- /qtdialogs/DlgBackupCenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgBackupCenter.py -------------------------------------------------------------------------------- /qtdialogs/DlgBrowserWarn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgBrowserWarn.py -------------------------------------------------------------------------------- /qtdialogs/DlgChangePassphrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgChangePassphrase.py -------------------------------------------------------------------------------- /qtdialogs/DlgConfirmSend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgConfirmSend.py -------------------------------------------------------------------------------- /qtdialogs/DlgCorruptWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgCorruptWallet.py -------------------------------------------------------------------------------- /qtdialogs/DlgDispTxInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgDispTxInfo.py -------------------------------------------------------------------------------- /qtdialogs/DlgEULA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgEULA.py -------------------------------------------------------------------------------- /qtdialogs/DlgExportTxHistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgExportTxHistory.py -------------------------------------------------------------------------------- /qtdialogs/DlgExportWO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgExportWO.py -------------------------------------------------------------------------------- /qtdialogs/DlgHelpAbout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgHelpAbout.py -------------------------------------------------------------------------------- /qtdialogs/DlgIntroMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgIntroMessage.py -------------------------------------------------------------------------------- /qtdialogs/DlgKeypoolSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgKeypoolSettings.py -------------------------------------------------------------------------------- /qtdialogs/DlgMigrateWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgMigrateWallet.py -------------------------------------------------------------------------------- /qtdialogs/DlgNewAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgNewAddress.py -------------------------------------------------------------------------------- /qtdialogs/DlgOfflineTx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgOfflineTx.py -------------------------------------------------------------------------------- /qtdialogs/DlgPasswd3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgPasswd3.py -------------------------------------------------------------------------------- /qtdialogs/DlgProgress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgProgress.py -------------------------------------------------------------------------------- /qtdialogs/DlgQRCodeDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgQRCodeDisplay.py -------------------------------------------------------------------------------- /qtdialogs/DlgRemoveWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgRemoveWallet.py -------------------------------------------------------------------------------- /qtdialogs/DlgReplaceWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgReplaceWallet.py -------------------------------------------------------------------------------- /qtdialogs/DlgRequestPayment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgRequestPayment.py -------------------------------------------------------------------------------- /qtdialogs/DlgRestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgRestore.py -------------------------------------------------------------------------------- /qtdialogs/DlgSendBitcoins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgSendBitcoins.py -------------------------------------------------------------------------------- /qtdialogs/DlgSetComment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgSetComment.py -------------------------------------------------------------------------------- /qtdialogs/DlgSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgSettings.py -------------------------------------------------------------------------------- /qtdialogs/DlgShowKeyList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgShowKeyList.py -------------------------------------------------------------------------------- /qtdialogs/DlgUniversalRestoreSelect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgUniversalRestoreSelect.py -------------------------------------------------------------------------------- /qtdialogs/DlgUnlockWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgUnlockWallet.py -------------------------------------------------------------------------------- /qtdialogs/DlgUriCopyAndPaste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgUriCopyAndPaste.py -------------------------------------------------------------------------------- /qtdialogs/DlgWalletDetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgWalletDetails.py -------------------------------------------------------------------------------- /qtdialogs/DlgWalletMigration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgWalletMigration.py -------------------------------------------------------------------------------- /qtdialogs/DlgWalletSelect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgWalletSelect.py -------------------------------------------------------------------------------- /qtdialogs/DlgWltRecoverWallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/DlgWltRecoverWallet.py -------------------------------------------------------------------------------- /qtdialogs/MsgBoxCustom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/MsgBoxCustom.py -------------------------------------------------------------------------------- /qtdialogs/MsgBoxWithDNAA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/MsgBoxWithDNAA.py -------------------------------------------------------------------------------- /qtdialogs/QRCodeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/QRCodeWidget.py -------------------------------------------------------------------------------- /qtdialogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qtdialogs/qtdefines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/qtdefines.py -------------------------------------------------------------------------------- /qtdialogs/qtdialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/qtdialogs/qtdialogs.py -------------------------------------------------------------------------------- /r-pi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/r-pi/README.md -------------------------------------------------------------------------------- /r-pi/crosscompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/r-pi/crosscompile.py -------------------------------------------------------------------------------- /r-pi/r-pi_dl_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/r-pi/r-pi_dl_packages.sh -------------------------------------------------------------------------------- /release_scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/release_scripts/README.txt -------------------------------------------------------------------------------- /release_scripts/Step1_Online_PrepareForSigning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/release_scripts/Step1_Online_PrepareForSigning.py -------------------------------------------------------------------------------- /release_scripts/Step2_Offline_PackageSigning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/release_scripts/Step2_Offline_PackageSigning.py -------------------------------------------------------------------------------- /release_scripts/Step3_Online_VerifyAndUpload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/release_scripts/Step3_Online_VerifyAndUpload.py -------------------------------------------------------------------------------- /release_scripts/release_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/release_scripts/release_utils.py -------------------------------------------------------------------------------- /release_scripts/signannounce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/release_scripts/signannounce.py -------------------------------------------------------------------------------- /samplemodules/DustBGonePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/samplemodules/DustBGonePlugin.py -------------------------------------------------------------------------------- /samplemodules/LoggingPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/samplemodules/LoggingPlugin.py -------------------------------------------------------------------------------- /samplemodules/PassPhraseFinderPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/samplemodules/PassPhraseFinderPlugin.py -------------------------------------------------------------------------------- /samplemodules/SearchPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/samplemodules/SearchPlugin.py -------------------------------------------------------------------------------- /samplemodules/testPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/samplemodules/testPlugin.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/setup.py -------------------------------------------------------------------------------- /translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/translations.md -------------------------------------------------------------------------------- /ui/AddressTypeSelectDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/AddressTypeSelectDialog.py -------------------------------------------------------------------------------- /ui/CoinControlUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/CoinControlUI.py -------------------------------------------------------------------------------- /ui/FeeSelectUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/FeeSelectUI.py -------------------------------------------------------------------------------- /ui/MultiSigDialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/MultiSigDialogs.py -------------------------------------------------------------------------------- /ui/MultiSigModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/MultiSigModels.py -------------------------------------------------------------------------------- /ui/QrCodeMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/QrCodeMatrix.py -------------------------------------------------------------------------------- /ui/QtExecuteSignal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/QtExecuteSignal.py -------------------------------------------------------------------------------- /ui/TreeViewGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/TreeViewGUI.py -------------------------------------------------------------------------------- /ui/TxFrames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/TxFrames.py -------------------------------------------------------------------------------- /ui/TxFramesOffline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/TxFramesOffline.py -------------------------------------------------------------------------------- /ui/WalletFrames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/WalletFrames.py -------------------------------------------------------------------------------- /ui/Wizards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/Wizards.py -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/__init__.py -------------------------------------------------------------------------------- /ui/toolsDialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/ui/toolsDialogs.py -------------------------------------------------------------------------------- /update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/update_version.py -------------------------------------------------------------------------------- /webshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/README.md -------------------------------------------------------------------------------- /webshop/orders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/orders/README.md -------------------------------------------------------------------------------- /webshop/refunds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/refunds/README.md -------------------------------------------------------------------------------- /webshop/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/server.py -------------------------------------------------------------------------------- /webshop/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/static/custom.css -------------------------------------------------------------------------------- /webshop/static/customjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/static/customjs.js -------------------------------------------------------------------------------- /webshop/static/key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/static/key.jpg -------------------------------------------------------------------------------- /webshop/static/shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/static/shirt.jpg -------------------------------------------------------------------------------- /webshop/static/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/static/sprite.png -------------------------------------------------------------------------------- /webshop/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/templates/base.html -------------------------------------------------------------------------------- /webshop/templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/templates/cart.html -------------------------------------------------------------------------------- /webshop/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/templates/home.html -------------------------------------------------------------------------------- /webshop/templates/pay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/templates/pay.html -------------------------------------------------------------------------------- /webshop/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/templates/product.html -------------------------------------------------------------------------------- /webshop/templates/refund.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/templates/refund.html -------------------------------------------------------------------------------- /webshop/templates/ship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/webshop/templates/ship.html -------------------------------------------------------------------------------- /writeNSISCompilerArgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/BitcoinArmory/HEAD/writeNSISCompilerArgs.py --------------------------------------------------------------------------------