├── .coderabbit.yaml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .swiftformat ├── ARCHITECTURE.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── .editorconfig ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── tapsigner_card.svg │ │ ├── java │ │ ├── org │ │ │ └── bitcoinppl │ │ │ │ ├── cove │ │ │ │ ├── AppAlertState.kt │ │ │ │ ├── AppManager.kt │ │ │ │ ├── AppSheetState.kt │ │ │ │ ├── AuthManager.kt │ │ │ │ ├── CoinControlManager.kt │ │ │ │ ├── ContextExt.kt │ │ │ │ ├── CoveApplication.kt │ │ │ │ ├── Extension.kt │ │ │ │ ├── HapticFeedbackExt.kt │ │ │ │ ├── ImportWalletManager.kt │ │ │ │ ├── Log.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── PendingWalletManager.kt │ │ │ │ ├── QrCodeGenerator.kt │ │ │ │ ├── QrCodeScanView.kt │ │ │ │ ├── RouteView.kt │ │ │ │ ├── RouterManager.kt │ │ │ │ ├── Security.kt │ │ │ │ ├── TaggedItem.kt │ │ │ │ ├── WalletManager.kt │ │ │ │ ├── components │ │ │ │ │ ├── ConfirmationIndicatorView.kt │ │ │ │ │ └── FullPageLoadingView.kt │ │ │ │ ├── flows │ │ │ │ │ ├── CoinControlFlow │ │ │ │ │ │ ├── CoinControlContainer.kt │ │ │ │ │ │ └── UtxoListScreen.kt │ │ │ │ │ ├── NewWalletFlow │ │ │ │ │ │ ├── NewWalletContainer.kt │ │ │ │ │ │ ├── NewWalletSelectScreen.kt │ │ │ │ │ │ ├── NfcHelpSheet.kt │ │ │ │ │ │ ├── cold_wallet │ │ │ │ │ │ │ ├── ColdWalletQrScanScreen.kt │ │ │ │ │ │ │ ├── QrCodeImportScreen.kt │ │ │ │ │ │ │ └── WalletImportHelpSheet.kt │ │ │ │ │ │ └── hot_wallet │ │ │ │ │ │ │ ├── HotWalletCreateScreen.kt │ │ │ │ │ │ │ ├── HotWalletImportCard.kt │ │ │ │ │ │ │ ├── HotWalletImportScreen.kt │ │ │ │ │ │ │ ├── HotWalletNfcScannerSheet.kt │ │ │ │ │ │ │ ├── HotWalletQrScannerSheet.kt │ │ │ │ │ │ │ ├── HotWalletSelectScreen.kt │ │ │ │ │ │ │ ├── NewHotWalletContainer.kt │ │ │ │ │ │ │ ├── VerificationCompleteScreen.kt │ │ │ │ │ │ │ ├── VerifyWordsContainer.kt │ │ │ │ │ │ │ └── VerifyWordsScreen.kt │ │ │ │ │ ├── SelectedWalletFlow │ │ │ │ │ │ ├── ReceiveAddressSheet.kt │ │ │ │ │ │ ├── SelectedWalletContainer.kt │ │ │ │ │ │ ├── SelectedWalletScreen.kt │ │ │ │ │ │ ├── TransactionDetails │ │ │ │ │ │ │ ├── HeaderIcon.kt │ │ │ │ │ │ │ ├── ReceivedTransactionDetails.kt │ │ │ │ │ │ │ ├── TransactionDetailsContainer.kt │ │ │ │ │ │ │ ├── TransactionDetailsScreen.kt │ │ │ │ │ │ │ ├── TransactionDetailsWidget.kt │ │ │ │ │ │ │ └── TransactionLabelView.kt │ │ │ │ │ │ ├── TransactionsCardView.kt │ │ │ │ │ │ ├── WalletBalanceHeaderView.kt │ │ │ │ │ │ └── WalletMoreOptionsSheet.kt │ │ │ │ │ ├── SendFlow │ │ │ │ │ │ ├── AdvancedDetailsBottomSheet.kt │ │ │ │ │ │ ├── CoinControlCustomAmountSheet.kt │ │ │ │ │ │ ├── CoinControlSetAmountScreen.kt │ │ │ │ │ │ ├── EnterAddressView.kt │ │ │ │ │ │ ├── EnterAmountView.kt │ │ │ │ │ │ ├── NetworkFeeBottomSheet.kt │ │ │ │ │ │ ├── SendFlowAdvancedDetailsView.kt │ │ │ │ │ │ ├── SendFlowConfirmScreen.kt │ │ │ │ │ │ ├── SendFlowContainer.kt │ │ │ │ │ │ ├── SendFlowHardwareScreen.kt │ │ │ │ │ │ ├── SendFlowHeaderView.kt │ │ │ │ │ │ ├── SendFlowManager.kt │ │ │ │ │ │ ├── SendFlowPresenter.kt │ │ │ │ │ │ └── SendFlowSetAmountScreen.kt │ │ │ │ │ ├── SettingsFlow │ │ │ │ │ │ ├── AppearanceSettingsScreen.kt │ │ │ │ │ │ ├── ChangePinView.kt │ │ │ │ │ │ ├── DecoyPinView.kt │ │ │ │ │ │ ├── FiatCurrencySettingsScreen.kt │ │ │ │ │ │ ├── MainSettingsScreen.kt │ │ │ │ │ │ ├── NetworkSettingsScreen.kt │ │ │ │ │ │ ├── NewPinView.kt │ │ │ │ │ │ ├── NodeSettingsScreen.kt │ │ │ │ │ │ ├── SettingsContainer.kt │ │ │ │ │ │ ├── SettingsListAllWalletsScreen.kt │ │ │ │ │ │ ├── WalletSettingsChangeNameScreen.kt │ │ │ │ │ │ ├── WalletSettingsContainer.kt │ │ │ │ │ │ ├── WalletSettingsScreen.kt │ │ │ │ │ │ └── WipeDataPinView.kt │ │ │ │ │ └── TapSignerFlow │ │ │ │ │ │ ├── BackupExportUtils.kt │ │ │ │ │ │ ├── HiddenPinTextField.kt │ │ │ │ │ │ ├── PinCirclesView.kt │ │ │ │ │ │ ├── TapSignerAdvancedChainCode.kt │ │ │ │ │ │ ├── TapSignerChooseChainCode.kt │ │ │ │ │ │ ├── TapSignerConfirmPinView.kt │ │ │ │ │ │ ├── TapSignerContainer.kt │ │ │ │ │ │ ├── TapSignerEnterPinView.kt │ │ │ │ │ │ ├── TapSignerImportRetryView.kt │ │ │ │ │ │ ├── TapSignerImportSuccessView.kt │ │ │ │ │ │ ├── TapSignerManager.kt │ │ │ │ │ │ ├── TapSignerNewPinView.kt │ │ │ │ │ │ ├── TapSignerNfcHelper.kt │ │ │ │ │ │ ├── TapSignerScanningOverlay.kt │ │ │ │ │ │ ├── TapSignerSetupRetryView.kt │ │ │ │ │ │ ├── TapSignerSetupSuccessView.kt │ │ │ │ │ │ └── TapSignerStartingPinView.kt │ │ │ │ ├── import_wallet │ │ │ │ │ └── ImportWalletScreen.kt │ │ │ │ ├── navigation │ │ │ │ │ └── CoveNavDisplay.kt │ │ │ │ ├── nfc │ │ │ │ │ ├── NfcLabelImportSheet.kt │ │ │ │ │ ├── NfcReader.kt │ │ │ │ │ ├── NfcScanSheet.kt │ │ │ │ │ ├── NfcWriteSheet.kt │ │ │ │ │ ├── NfcWriter.kt │ │ │ │ │ └── TapCardNfcManager.kt │ │ │ │ ├── secret_words │ │ │ │ │ └── SecretWordsScreen.kt │ │ │ │ ├── sheets │ │ │ │ │ ├── CustomFeeRateSheet.kt │ │ │ │ │ └── FeeRateSelectorSheet.kt │ │ │ │ ├── sidebar │ │ │ │ │ ├── SidebarContainer.kt │ │ │ │ │ └── SidebarView.kt │ │ │ │ ├── ui │ │ │ │ │ └── theme │ │ │ │ │ │ ├── Color.kt │ │ │ │ │ │ ├── Motion.kt │ │ │ │ │ │ ├── Spacing.kt │ │ │ │ │ │ ├── Theme.kt │ │ │ │ │ │ └── Type.kt │ │ │ │ ├── utils │ │ │ │ │ ├── FfiColorExt.kt │ │ │ │ │ ├── RoutesExt.kt │ │ │ │ │ └── WalletColorExt.kt │ │ │ │ ├── views │ │ │ │ │ ├── AsyncView.kt │ │ │ │ │ ├── AutoSizeText.kt │ │ │ │ │ ├── BitcoinShieldIcon.kt │ │ │ │ │ ├── CustomBaseViews.kt │ │ │ │ │ ├── DotMenuView.kt │ │ │ │ │ ├── ImageButton.kt │ │ │ │ │ ├── LockView.kt │ │ │ │ │ ├── NumberPadPinView.kt │ │ │ │ │ ├── QrExportView.kt │ │ │ │ │ ├── RecoveryWords.kt │ │ │ │ │ ├── RoundRectImage.kt │ │ │ │ │ ├── SettingsItem.kt │ │ │ │ │ └── WalletIcon.kt │ │ │ │ └── wallet │ │ │ │ │ ├── MoreInfoPopover.kt │ │ │ │ │ └── WalletSheets.kt │ │ │ │ └── cove_core │ │ │ │ ├── cove.kt │ │ │ │ ├── device │ │ │ │ └── cove_device.kt │ │ │ │ ├── nfc │ │ │ │ └── cove_nfc.kt │ │ │ │ ├── tapcard │ │ │ │ └── cove_tap_card.kt │ │ │ │ ├── types │ │ │ │ └── cove_types.kt │ │ │ │ ├── ur │ │ │ │ └── cove_ur.kt │ │ │ │ └── util │ │ │ │ └── cove_util.kt │ │ └── uniffi │ │ │ └── cove_ur │ │ │ └── cove_ur.kt │ │ └── res │ │ ├── drawable │ │ ├── cove_logo.jpg │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── icon_appearance.xml │ │ ├── icon_contactless.xml │ │ ├── icon_currency.xml │ │ ├── icon_currency_bitcoin.xml │ │ ├── icon_network.xml │ │ ├── icon_node.xml │ │ ├── icon_phone_device.xml │ │ ├── icon_qr_code.xml │ │ ├── image_chain_code_pattern_horizontal.xml │ │ └── image_chain_code_pattern_vertical.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ ├── data_extraction_rules.xml │ │ └── file_paths.xml ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── designs ├── Home screen.png ├── initial.fig ├── selected_wallet │ ├── Transactions - Dark.png │ ├── Transactions - Labels BTC │ │ └── Sat.png │ ├── Transactions - Labels.png │ └── Transactions - Light.png └── transaction_details.fig ├── docs └── IOS_ANDROID_PARITY.md ├── greptile.json ├── images ├── cove_logo_github.jpg └── features.png ├── ios ├── CodeScanner │ ├── AVCaptureDevice+bestForBuiltInCamera.swift │ ├── BinaryDecoder.swift │ ├── CodeScanner.swift │ ├── ScannerView.swift │ └── ScannerViewController.swift ├── Cove.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Cove.xcscheme │ └── xcuserdata │ │ ├── justin.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── praveen.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── CoveDevice.xcscheme │ │ └── xcschememanagement.plist ├── Cove │ ├── AlertBuilder.swift │ ├── AppAlertState.swift │ ├── AppIcon.icon │ │ ├── Assets │ │ │ └── logo.svg │ │ └── icon.json │ ├── AppManager.swift │ ├── AppSheetState.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── almostGray.colorset │ │ │ └── Contents.json │ │ ├── almostWhite.colorset │ │ │ └── Contents.json │ │ ├── beige.colorset │ │ │ └── Contents.json │ │ ├── bitcoinShield.imageset │ │ │ ├── Contents.json │ │ │ ├── bitcoin_shield_image.jpg │ │ │ └── bitcoin_shield_image@2x.jpg │ │ ├── btnPrimary.colorset │ │ │ └── Contents.json │ │ ├── chainCodePattern.imageset │ │ │ ├── Contents.json │ │ │ └── chainCodePattern.svg │ │ ├── coveBg.colorset │ │ │ └── Contents.json │ │ ├── coveLightGray.colorset │ │ │ └── Contents.json │ │ ├── duskBlue.colorset │ │ │ └── Contents.json │ │ ├── headerPattern.imageset │ │ │ ├── Contents.json │ │ │ └── header_pattern.svg │ │ ├── icon.imageset │ │ │ ├── Contents.json │ │ │ ├── cove_logo.jpg │ │ │ ├── cove_logo@2x 1.jpg │ │ │ └── cove_logo@2x.jpg │ │ ├── lightMint.colorset │ │ │ └── Contents.json │ │ ├── lightPastelYellow.colorset │ │ │ └── Contents.json │ │ ├── midnightBlue.colorset │ │ │ └── Contents.json │ │ ├── midnightBtn.colorset │ │ │ └── Contents.json │ │ ├── newWalletPattern.imageset │ │ │ ├── Contents.json │ │ │ └── new_wallet_flow_pattern.svg │ │ ├── pastelBlue.colorset │ │ │ └── Contents.json │ │ ├── pastelNavy.colorset │ │ │ └── Contents.json │ │ ├── pastelRed.colorset │ │ │ └── Contents.json │ │ ├── pastelTeal.colorset │ │ │ └── Contents.json │ │ ├── pastelYellow.colorset │ │ │ └── Contents.json │ │ ├── settingsPattern.imageset │ │ │ ├── Contents.json │ │ │ └── settings.svg │ │ ├── tapSignerCard.imageset │ │ │ ├── Contents.json │ │ │ └── tapSignerCard.svg │ │ ├── transactionDetailsPattern.imageset │ │ │ ├── Contents.json │ │ │ └── dark.svg │ │ └── utxoManagementPattern.imageset │ │ │ ├── Contents.json │ │ │ └── utxoManagementPattern.svg │ ├── AsyncPreview.swift │ ├── AuthManager.swift │ ├── CoinControlManager.swift │ ├── Components │ │ └── KeyboardAccessory │ │ │ └── KeyboardAccessoryHost.swift │ ├── Constants.swift │ ├── Cove.entitlements │ ├── CoveApp.swift │ ├── CoveAppDelegate.swift │ ├── CovePopupSceneDelegate.swift │ ├── CoverView.swift │ ├── Device.swift │ ├── ExportTypes.swift │ ├── Extention │ │ ├── Address+Ext.swift │ │ ├── Color+Ext.swift │ │ ├── ColorSchemeSelection+Ext.swift │ │ ├── Enum+Ext.swift │ │ ├── Error+Ext.swift │ │ ├── General+Ext.swift │ │ ├── HapticFeedback+Ext.swift │ │ ├── KeyboardObserver.swift │ │ ├── NodeSelection+Ext.swift │ │ ├── NumberOfWords+Ext.swift │ │ ├── Result+Ext.swift │ │ ├── Routes+Ext.swift │ │ ├── Shape+Ext.swift │ │ ├── String+Ext.swift │ │ ├── StringOrData+Ext.swift │ │ ├── Trait+Ext.swift │ │ ├── Transaction+Ext.swift │ │ ├── Transition+Ext.swift │ │ ├── View+GlassEffect.swift │ │ ├── WalletAddressType+Ext.swift │ │ ├── WalletColor+Ext.swift │ │ ├── WalletMetadata+Ext.swift │ │ └── iOS18Compatibility+Ext.swift │ ├── FFI │ │ ├── FfiColorScheme.swift │ │ ├── MakeIdentifiable.swift │ │ └── WeakReconciler.swift │ ├── FileReader.swift │ ├── FlowLayout.swift │ ├── Flows │ │ ├── CoinControlFlow │ │ │ ├── CoinControlContainer.swift │ │ │ ├── UtxoListScreen.swift │ │ │ └── UtxoRowPreview.swift │ │ ├── NewWalletFlow │ │ │ ├── ColdWallet │ │ │ │ └── QrCodeImportScreen.swift │ │ │ ├── Container │ │ │ │ ├── NewHotWalletContainer.swift │ │ │ │ └── NewWalletContainer.swift │ │ │ ├── HotWallet │ │ │ │ ├── HotWalletCreateScreen.swift │ │ │ │ ├── HotWalletImportCard.swift │ │ │ │ ├── HotWalletImportScreen.swift │ │ │ │ ├── HotWalletSelectScreen.swift │ │ │ │ └── VerifyWords │ │ │ │ │ ├── VerificationCompleteScreen.swift │ │ │ │ │ └── VerifyWordsScreen.swift │ │ │ ├── NewWalletSelectScreen.swift │ │ │ ├── NfcHelpView.swift │ │ │ └── PendingWalletViewModel.swift │ │ ├── SelectedWalletFlow │ │ │ ├── ChooseWalletTypeView.swift │ │ │ ├── MoreInfoPopover.swift │ │ │ ├── QrCodeLabelImportView.swift │ │ │ ├── ReceiveView.swift │ │ │ ├── SecretWordsScreen.swift │ │ │ ├── SelectedWalletContainer.swift │ │ │ ├── SelectedWalletScreen.swift │ │ │ ├── TransactionDetails │ │ │ │ ├── ConfirmationIndicatorView.swift │ │ │ │ ├── HeaderIcon.swift │ │ │ │ ├── ReceivedDetailsExpandedView.swift │ │ │ │ ├── SentDetailsExpandedView.swift │ │ │ │ ├── TransactionDetailsLabelView.swift │ │ │ │ ├── TransactionDetailsView.swift │ │ │ │ └── TransactionsDetailScreen.swift │ │ │ ├── TransactionsCardView.swift │ │ │ └── WalletBalanceHeaderView.swift │ │ ├── SendFlow │ │ │ ├── Common │ │ │ │ ├── SendFlowAccountSection.swift │ │ │ │ ├── SendFlowDetailsSheetView.swift │ │ │ │ ├── SendFlowDetailsView.swift │ │ │ │ ├── SendFlowDurationCapsule.swift │ │ │ │ ├── SendFlowFlowAdvancedDetailsView.swift │ │ │ │ ├── SendFlowHeaderView.swift │ │ │ │ └── SendFlowUtxoCustomAmountSheetView.swift │ │ │ ├── ConfirmScreen │ │ │ │ └── SwipeToSendView.swift │ │ │ ├── SendFlowCoinControlSetAmountScreen.swift │ │ │ ├── SendFlowConfirmScreen.swift │ │ │ ├── SendFlowContainer.swift │ │ │ ├── SendFlowCustomFeeRateView.swift │ │ │ ├── SendFlowHardwareScreen.swift │ │ │ ├── SendFlowManager.swift │ │ │ ├── SendFlowPresenter.swift │ │ │ ├── SendFlowSetAmountScreen.swift │ │ │ └── SetAmountScreen │ │ │ │ ├── AddressTextEditor.swift │ │ │ │ ├── EnterAddressView.swift │ │ │ │ ├── EnterAmountView.swift │ │ │ │ ├── QrCodeAddressView.swift │ │ │ │ └── SendFlowSelectFeeRateView.swift │ │ ├── SettingsFlow │ │ │ ├── MainSettingsScreen.swift │ │ │ ├── SettingsContainer.swift │ │ │ ├── SettingsPicker.swift │ │ │ ├── SettingsScreen │ │ │ │ ├── ChangePinView.swift │ │ │ │ ├── DecoyPinView.swift │ │ │ │ ├── NewPinView.swift │ │ │ │ ├── NodeSelectionView.swift │ │ │ │ ├── SettingsIcon.swift │ │ │ │ ├── SettingsListAllWallets.swift │ │ │ │ ├── SettingsRow.swift │ │ │ │ ├── SettingsToggle.swift │ │ │ │ ├── WalletSettingsSection.swift │ │ │ │ ├── WipeDataPinView.swift │ │ │ │ └── WipePin.swift │ │ │ └── WalletSettings │ │ │ │ ├── WalletSettingsChangeNameView.swift │ │ │ │ ├── WalletSettingsContainer.swift │ │ │ │ └── WalletSettingsView.swift │ │ └── TapSignerFlow │ │ │ ├── TapSignerAdvancedChainCode.swift │ │ │ ├── TapSignerChooseChainCode.swift │ │ │ ├── TapSignerConfirmPinView.swift │ │ │ ├── TapSignerContainer.swift │ │ │ ├── TapSignerEnterPinView.swift │ │ │ ├── TapSignerImportRetryView.swift │ │ │ ├── TapSignerImportSuccessView.swift │ │ │ ├── TapSignerNewPinView.swift │ │ │ ├── TapSignerSetupRetryView.swift │ │ │ ├── TapSignerSetupSuccessView.swift │ │ │ └── TapSignerStartingPinView.swift │ ├── Format.swift │ ├── FullPageLoadingView.swift │ ├── GlobalImports.swift │ ├── HomeScreens │ │ └── ListWalletsScreen.swift │ ├── Icons │ │ └── BitcoinShieldIcon.swift │ ├── ImportWalletManager.swift │ ├── Info.plist │ ├── LoadAndResetContainer.swift │ ├── NFCReader.swift │ ├── NFCWriter.swift │ ├── PSBTFile.swift │ ├── Popups │ │ ├── FloaterPopup.swift │ │ └── MiddlePopup.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── QrCodeScanView.swift │ ├── QrCodeView.swift │ ├── RouteView.swift │ ├── Security.swift │ ├── Shape │ │ └── Line.swift │ ├── ShareSheet.swift │ ├── SidebarContainer.swift │ ├── Styles │ │ ├── ButtonStyle.swift │ │ └── CommonButtonStyles.swift │ ├── TaggedItem.swift │ ├── TapSignerNFC.swift │ ├── Types │ │ └── JSONLDocument.swift │ ├── ViewModifier │ │ └── ClearButton.swift │ ├── Views │ │ ├── AsyncView.swift │ │ ├── ColorView.swift │ │ ├── DotMenuView.swift │ │ ├── DynamicScrollView.swift │ │ ├── FloaterPopupView.swift │ │ ├── LockView.swift │ │ ├── MiddlePopupView.swift │ │ ├── NumberPadPinView.swift │ │ ├── QrExportView.swift │ │ ├── SidebarView.swift │ │ ├── TermsAndConditionsView.swift │ │ ├── ThreeDotsAnimation.swift │ │ └── TransactionCapsule.swift │ └── WalletManager.swift ├── CoveCore │ ├── .gitignore │ ├── Package.swift │ ├── Sources │ │ └── CoveCore │ │ │ ├── CoveCore.swift │ │ │ └── generated │ │ │ ├── cove.swift │ │ │ ├── cove_device.swift │ │ │ ├── cove_nfc.swift │ │ │ ├── cove_tap_card.swift │ │ │ ├── cove_types.swift │ │ │ ├── cove_ur.swift │ │ │ └── cove_util.swift │ └── Tests │ │ └── CoveCoreTests │ │ └── CoveCoreTests.swift └── Logger.swift ├── justfile ├── plan.md ├── plan_context.md ├── plan_progress.md ├── rust-analyzer.json └── rust ├── .cargo └── config.toml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── crates ├── cove-bdk │ ├── Cargo.toml │ └── src │ │ ├── coin_selection.rs │ │ ├── coin_selection │ │ ├── cove_default.rs │ │ └── deterministic_random_draw.rs │ │ ├── descriptor_ext.rs │ │ ├── lib.rs │ │ └── util.rs ├── cove-bip39 │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── cove-common │ ├── Cargo.toml │ └── src │ │ ├── consts.rs │ │ ├── lib.rs │ │ └── logging.rs ├── cove-device │ ├── Cargo.toml │ ├── src │ │ ├── device.rs │ │ ├── keychain.rs │ │ └── lib.rs │ └── uniffi.toml ├── cove-macros │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── cove-nfc │ ├── Cargo.toml │ ├── src │ │ ├── ffi.rs │ │ ├── header.rs │ │ ├── lib.rs │ │ ├── message.rs │ │ ├── message_info.rs │ │ ├── ndef_type.rs │ │ ├── parser.rs │ │ ├── parser │ │ │ └── stream.rs │ │ ├── payload.rs │ │ ├── record.rs │ │ └── resume.rs │ ├── test │ │ └── data │ │ │ ├── descriptor.txt │ │ │ ├── descriptor_bytes.txt │ │ │ ├── export.json │ │ │ ├── export_bytes.txt │ │ │ └── seed_words_bytes.txt │ └── uniffi.toml ├── cove-tap-card │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ └── parse.rs │ └── uniffi.toml ├── cove-tokio-ext │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── cove-types │ ├── Cargo.toml │ ├── src │ │ ├── address.rs │ │ ├── address_index.rs │ │ ├── amount.rs │ │ ├── block_size.rs │ │ ├── chain_position.rs │ │ ├── color.rs │ │ ├── color_scheme.rs │ │ ├── confirm.rs │ │ ├── fees.rs │ │ ├── lib.rs │ │ ├── network.rs │ │ ├── psbt.rs │ │ ├── redb.rs │ │ ├── transaction.rs │ │ ├── transaction │ │ │ ├── out_point.rs │ │ │ ├── sent_and_received.rs │ │ │ ├── tx_id.rs │ │ │ ├── tx_in.rs │ │ │ └── tx_out.rs │ │ ├── unit.rs │ │ ├── utxo.rs │ │ └── wallet_id.rs │ └── uniffi.toml ├── cove-ur │ ├── Cargo.toml │ ├── src │ │ ├── cbor.rs │ │ ├── cbor │ │ │ ├── embedded_cbor.rs │ │ │ ├── fingerprint.rs │ │ │ ├── keypath_components.rs │ │ │ └── optional_bytes.rs │ │ ├── coin_info.rs │ │ ├── crypto_account.rs │ │ ├── crypto_hdkey.rs │ │ ├── crypto_output.rs │ │ ├── crypto_psbt.rs │ │ ├── crypto_seed.rs │ │ ├── error.rs │ │ ├── keypath.rs │ │ ├── lib.rs │ │ ├── registry.rs │ │ └── ur.rs │ └── uniffi.toml ├── cove-util │ ├── Cargo.toml │ ├── src │ │ ├── encryption.rs │ │ ├── format.rs │ │ ├── lib.rs │ │ └── result_ext.rs │ └── uniffi.toml └── uniffi_cli │ ├── Cargo.toml │ └── src │ └── main.rs ├── rustfmt.toml ├── src ├── app.rs ├── app │ └── reconcile.rs ├── auth.rs ├── autocomplete.rs ├── bdk_store.rs ├── build.rs ├── converter.rs ├── database.rs ├── database │ ├── cbor.rs │ ├── error.rs │ ├── global_cache.rs │ ├── global_config.rs │ ├── global_flag.rs │ ├── historical_price.rs │ ├── historical_price │ │ ├── network_block_height.rs │ │ └── record.rs │ ├── key.rs │ ├── key │ │ └── outpoint.rs │ ├── macros.rs │ ├── record.rs │ ├── unsigned_transactions.rs │ ├── wallet.rs │ ├── wallet_data.rs │ └── wallet_data │ │ └── label.rs ├── fee_client.rs ├── fiat.rs ├── fiat │ ├── amount.rs │ ├── client.rs │ └── historical.rs ├── file_handler.rs ├── hardware_export.rs ├── historical_price_service.rs ├── keys.rs ├── label_manager.rs ├── lib.rs ├── manager.rs ├── manager │ ├── auth_manager.rs │ ├── coin_control_manager.rs │ ├── coin_control_manager │ │ └── state.rs │ ├── deferred_dispatch.rs │ ├── deferred_sender.rs │ ├── import_wallet_manager.rs │ ├── pending_wallet_manager.rs │ ├── send_flow_manager.rs │ ├── send_flow_manager │ │ ├── alert_state.rs │ │ ├── amount_or_max.rs │ │ ├── btc_on_change.rs │ │ ├── error.rs │ │ ├── fiat_on_change.rs │ │ ├── sanitize.rs │ │ └── state.rs │ ├── wallet_manager.rs │ └── wallet_manager │ │ └── actor.rs ├── mnemonic.rs ├── mnemonic │ ├── ext.rs │ ├── ffi.rs │ ├── grouped_word.rs │ ├── number_of_bip39_words.rs │ ├── parse.rs │ └── word_access.rs ├── multi_format.rs ├── node.rs ├── node │ ├── client.rs │ ├── client │ │ ├── electrum.rs │ │ └── esplora.rs │ └── client_builder.rs ├── node_connect.rs ├── pending_wallet.rs ├── push_tx.rs ├── qr_scanner.rs ├── reporting.rs ├── router.rs ├── seed_qr.rs ├── send_flow.rs ├── send_flow │ └── header_icon_presenter.rs ├── tap_card.rs ├── tap_card │ └── tap_signer_reader.rs ├── task.rs ├── transaction.rs ├── transaction │ ├── ffi.rs │ ├── transaction_details.rs │ └── unsigned_transaction.rs ├── transaction_watcher.rs ├── unblock.rs ├── ur.rs ├── wallet.rs ├── wallet │ ├── balance.rs │ ├── ffi.rs │ ├── fingerprint.rs │ └── metadata.rs ├── wallet_scanner.rs ├── word_validator.rs ├── word_verify_state_machine.rs └── xpub.rs ├── uniffi.toml └── xtask ├── Cargo.toml └── src ├── android.rs ├── common.rs ├── ios.rs ├── main.rs └── version.rs /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/.swiftformat -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/README.md -------------------------------------------------------------------------------- /android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/.editorconfig -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/tapsigner_card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/assets/tapsigner_card.svg -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/AppAlertState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/AppAlertState.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/AppManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/AppManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/AppSheetState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/AppSheetState.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/AuthManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/AuthManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/CoinControlManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/CoinControlManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/ContextExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/ContextExt.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/CoveApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/CoveApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/Extension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/Extension.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/HapticFeedbackExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/HapticFeedbackExt.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/ImportWalletManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/ImportWalletManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/Log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/Log.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/PendingWalletManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/PendingWalletManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/QrCodeGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/QrCodeGenerator.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/QrCodeScanView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/QrCodeScanView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/RouteView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/RouteView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/RouterManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/RouterManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/Security.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/Security.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/TaggedItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/TaggedItem.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/WalletManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/WalletManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/components/ConfirmationIndicatorView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/components/ConfirmationIndicatorView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/components/FullPageLoadingView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/components/FullPageLoadingView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/CoinControlFlow/CoinControlContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/CoinControlFlow/CoinControlContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/CoinControlFlow/UtxoListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/CoinControlFlow/UtxoListScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/NewWalletContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/NewWalletContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/NewWalletSelectScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/NewWalletSelectScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/NfcHelpSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/NfcHelpSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/cold_wallet/ColdWalletQrScanScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/cold_wallet/ColdWalletQrScanScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/cold_wallet/QrCodeImportScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/cold_wallet/QrCodeImportScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/cold_wallet/WalletImportHelpSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/cold_wallet/WalletImportHelpSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletCreateScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletCreateScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletImportCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletImportCard.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletImportScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletImportScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletNfcScannerSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletNfcScannerSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletQrScannerSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletQrScannerSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletSelectScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/HotWalletSelectScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/NewHotWalletContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/NewHotWalletContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/VerificationCompleteScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/VerificationCompleteScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/VerifyWordsContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/VerifyWordsContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/VerifyWordsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/NewWalletFlow/hot_wallet/VerifyWordsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/ReceiveAddressSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/ReceiveAddressSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/SelectedWalletContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/SelectedWalletContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/SelectedWalletScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/SelectedWalletScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/HeaderIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/HeaderIcon.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/ReceivedTransactionDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/ReceivedTransactionDetails.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsWidget.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/TransactionLabelView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionDetails/TransactionLabelView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionsCardView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/TransactionsCardView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/WalletBalanceHeaderView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/WalletBalanceHeaderView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/WalletMoreOptionsSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SelectedWalletFlow/WalletMoreOptionsSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/AdvancedDetailsBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/AdvancedDetailsBottomSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/CoinControlCustomAmountSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/CoinControlCustomAmountSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/CoinControlSetAmountScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/CoinControlSetAmountScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/EnterAddressView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/EnterAddressView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/EnterAmountView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/EnterAmountView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/NetworkFeeBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/NetworkFeeBottomSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowAdvancedDetailsView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowAdvancedDetailsView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowConfirmScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowConfirmScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowHardwareScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowHardwareScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowHeaderView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowHeaderView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowPresenter.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowSetAmountScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SendFlow/SendFlowSetAmountScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/AppearanceSettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/AppearanceSettingsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/ChangePinView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/ChangePinView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/DecoyPinView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/DecoyPinView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/FiatCurrencySettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/FiatCurrencySettingsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/MainSettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/MainSettingsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/NetworkSettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/NetworkSettingsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/NewPinView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/NewPinView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/NodeSettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/NodeSettingsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/SettingsContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/SettingsContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/SettingsListAllWalletsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/SettingsListAllWalletsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/WalletSettingsChangeNameScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/WalletSettingsChangeNameScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/WalletSettingsContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/WalletSettingsContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/WalletSettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/WalletSettingsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/WipeDataPinView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/SettingsFlow/WipeDataPinView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/BackupExportUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/BackupExportUtils.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/HiddenPinTextField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/HiddenPinTextField.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/PinCirclesView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/PinCirclesView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerAdvancedChainCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerAdvancedChainCode.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerChooseChainCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerChooseChainCode.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerConfirmPinView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerConfirmPinView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerEnterPinView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerEnterPinView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerImportRetryView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerImportRetryView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerImportSuccessView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerImportSuccessView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerNewPinView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerNewPinView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerNfcHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerNfcHelper.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerScanningOverlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerScanningOverlay.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerSetupRetryView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerSetupRetryView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerSetupSuccessView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerSetupSuccessView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerStartingPinView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/flows/TapSignerFlow/TapSignerStartingPinView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/import_wallet/ImportWalletScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/import_wallet/ImportWalletScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/navigation/CoveNavDisplay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/navigation/CoveNavDisplay.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcLabelImportSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcLabelImportSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcReader.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcScanSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcScanSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcWriteSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcWriteSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcWriter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/nfc/NfcWriter.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/nfc/TapCardNfcManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/nfc/TapCardNfcManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/secret_words/SecretWordsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/secret_words/SecretWordsScreen.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/sheets/CustomFeeRateSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/sheets/CustomFeeRateSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/sheets/FeeRateSelectorSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/sheets/FeeRateSelectorSheet.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/sidebar/SidebarContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/sidebar/SidebarContainer.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/sidebar/SidebarView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/sidebar/SidebarView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Color.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Motion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Motion.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Spacing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Spacing.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Theme.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/ui/theme/Type.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/utils/FfiColorExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/utils/FfiColorExt.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/utils/RoutesExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/utils/RoutesExt.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/utils/WalletColorExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/utils/WalletColorExt.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/AsyncView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/AsyncView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/AutoSizeText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/AutoSizeText.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/BitcoinShieldIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/BitcoinShieldIcon.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/CustomBaseViews.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/CustomBaseViews.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/DotMenuView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/DotMenuView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/ImageButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/ImageButton.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/LockView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/LockView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/NumberPadPinView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/NumberPadPinView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/QrExportView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/QrExportView.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/RecoveryWords.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/RecoveryWords.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/RoundRectImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/RoundRectImage.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/SettingsItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/SettingsItem.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/views/WalletIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/views/WalletIcon.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/wallet/MoreInfoPopover.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/wallet/MoreInfoPopover.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove/wallet/WalletSheets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove/wallet/WalletSheets.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove_core/cove.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove_core/cove.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove_core/device/cove_device.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove_core/device/cove_device.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove_core/nfc/cove_nfc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove_core/nfc/cove_nfc.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove_core/tapcard/cove_tap_card.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove_core/tapcard/cove_tap_card.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove_core/types/cove_types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove_core/types/cove_types.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove_core/ur/cove_ur.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove_core/ur/cove_ur.kt -------------------------------------------------------------------------------- /android/app/src/main/java/org/bitcoinppl/cove_core/util/cove_util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/org/bitcoinppl/cove_core/util/cove_util.kt -------------------------------------------------------------------------------- /android/app/src/main/java/uniffi/cove_ur/cove_ur.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/java/uniffi/cove_ur/cove_ur.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/cove_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/cove_logo.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_appearance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/icon_appearance.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_contactless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/icon_contactless.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/icon_currency.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_currency_bitcoin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/icon_currency_bitcoin.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/icon_network.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/icon_node.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_phone_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/icon_phone_device.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/icon_qr_code.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/image_chain_code_pattern_horizontal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/image_chain_code_pattern_horizontal.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/image_chain_code_pattern_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/drawable/image_chain_code_pattern_vertical.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /designs/Home screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/designs/Home screen.png -------------------------------------------------------------------------------- /designs/initial.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/designs/initial.fig -------------------------------------------------------------------------------- /designs/selected_wallet/Transactions - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/designs/selected_wallet/Transactions - Dark.png -------------------------------------------------------------------------------- /designs/selected_wallet/Transactions - Labels BTC/Sat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/designs/selected_wallet/Transactions - Labels BTC/Sat.png -------------------------------------------------------------------------------- /designs/selected_wallet/Transactions - Labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/designs/selected_wallet/Transactions - Labels.png -------------------------------------------------------------------------------- /designs/selected_wallet/Transactions - Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/designs/selected_wallet/Transactions - Light.png -------------------------------------------------------------------------------- /designs/transaction_details.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/designs/transaction_details.fig -------------------------------------------------------------------------------- /docs/IOS_ANDROID_PARITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/docs/IOS_ANDROID_PARITY.md -------------------------------------------------------------------------------- /greptile.json: -------------------------------------------------------------------------------- 1 | { 2 | "skipReview": "AUTOMATIC" 3 | } 4 | -------------------------------------------------------------------------------- /images/cove_logo_github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/images/cove_logo_github.jpg -------------------------------------------------------------------------------- /images/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/images/features.png -------------------------------------------------------------------------------- /ios/CodeScanner/AVCaptureDevice+bestForBuiltInCamera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CodeScanner/AVCaptureDevice+bestForBuiltInCamera.swift -------------------------------------------------------------------------------- /ios/CodeScanner/BinaryDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CodeScanner/BinaryDecoder.swift -------------------------------------------------------------------------------- /ios/CodeScanner/CodeScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CodeScanner/CodeScanner.swift -------------------------------------------------------------------------------- /ios/CodeScanner/ScannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CodeScanner/ScannerView.swift -------------------------------------------------------------------------------- /ios/CodeScanner/ScannerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CodeScanner/ScannerViewController.swift -------------------------------------------------------------------------------- /ios/Cove.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Cove.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Cove.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Cove.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ios/Cove.xcodeproj/xcshareddata/xcschemes/Cove.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove.xcodeproj/xcshareddata/xcschemes/Cove.xcscheme -------------------------------------------------------------------------------- /ios/Cove.xcodeproj/xcuserdata/justin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove.xcodeproj/xcuserdata/justin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/Cove.xcodeproj/xcuserdata/praveen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove.xcodeproj/xcuserdata/praveen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ios/Cove.xcodeproj/xcuserdata/praveen.xcuserdatad/xcschemes/CoveDevice.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove.xcodeproj/xcuserdata/praveen.xcuserdatad/xcschemes/CoveDevice.xcscheme -------------------------------------------------------------------------------- /ios/Cove.xcodeproj/xcuserdata/praveen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove.xcodeproj/xcuserdata/praveen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/Cove/AlertBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/AlertBuilder.swift -------------------------------------------------------------------------------- /ios/Cove/AppAlertState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/AppAlertState.swift -------------------------------------------------------------------------------- /ios/Cove/AppIcon.icon/Assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/AppIcon.icon/Assets/logo.svg -------------------------------------------------------------------------------- /ios/Cove/AppIcon.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/AppIcon.icon/icon.json -------------------------------------------------------------------------------- /ios/Cove/AppManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/AppManager.swift -------------------------------------------------------------------------------- /ios/Cove/AppSheetState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/AppSheetState.swift -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/almostGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/almostGray.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/almostWhite.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/almostWhite.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/beige.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/beige.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/bitcoinShield.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/bitcoinShield.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/bitcoinShield.imageset/bitcoin_shield_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/bitcoinShield.imageset/bitcoin_shield_image.jpg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/bitcoinShield.imageset/bitcoin_shield_image@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/bitcoinShield.imageset/bitcoin_shield_image@2x.jpg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/btnPrimary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/btnPrimary.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/chainCodePattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/chainCodePattern.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/chainCodePattern.imageset/chainCodePattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/chainCodePattern.imageset/chainCodePattern.svg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/coveBg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/coveBg.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/coveLightGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/coveLightGray.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/duskBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/duskBlue.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/headerPattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/headerPattern.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/headerPattern.imageset/header_pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/headerPattern.imageset/header_pattern.svg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/icon.imageset/cove_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/icon.imageset/cove_logo.jpg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/icon.imageset/cove_logo@2x 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/icon.imageset/cove_logo@2x 1.jpg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/icon.imageset/cove_logo@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/icon.imageset/cove_logo@2x.jpg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/lightMint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/lightMint.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/lightPastelYellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/lightPastelYellow.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/midnightBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/midnightBlue.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/midnightBtn.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/midnightBtn.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/newWalletPattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/newWalletPattern.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/newWalletPattern.imageset/new_wallet_flow_pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/newWalletPattern.imageset/new_wallet_flow_pattern.svg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/pastelBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/pastelBlue.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/pastelNavy.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/pastelNavy.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/pastelRed.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/pastelRed.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/pastelTeal.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/pastelTeal.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/pastelYellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/pastelYellow.colorset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/settingsPattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/settingsPattern.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/settingsPattern.imageset/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/settingsPattern.imageset/settings.svg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/tapSignerCard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/tapSignerCard.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/tapSignerCard.imageset/tapSignerCard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/tapSignerCard.imageset/tapSignerCard.svg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/transactionDetailsPattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/transactionDetailsPattern.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/transactionDetailsPattern.imageset/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/transactionDetailsPattern.imageset/dark.svg -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/utxoManagementPattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/utxoManagementPattern.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Cove/Assets.xcassets/utxoManagementPattern.imageset/utxoManagementPattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Assets.xcassets/utxoManagementPattern.imageset/utxoManagementPattern.svg -------------------------------------------------------------------------------- /ios/Cove/AsyncPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/AsyncPreview.swift -------------------------------------------------------------------------------- /ios/Cove/AuthManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/AuthManager.swift -------------------------------------------------------------------------------- /ios/Cove/CoinControlManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/CoinControlManager.swift -------------------------------------------------------------------------------- /ios/Cove/Components/KeyboardAccessory/KeyboardAccessoryHost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Components/KeyboardAccessory/KeyboardAccessoryHost.swift -------------------------------------------------------------------------------- /ios/Cove/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Constants.swift -------------------------------------------------------------------------------- /ios/Cove/Cove.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Cove.entitlements -------------------------------------------------------------------------------- /ios/Cove/CoveApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/CoveApp.swift -------------------------------------------------------------------------------- /ios/Cove/CoveAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/CoveAppDelegate.swift -------------------------------------------------------------------------------- /ios/Cove/CovePopupSceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/CovePopupSceneDelegate.swift -------------------------------------------------------------------------------- /ios/Cove/CoverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/CoverView.swift -------------------------------------------------------------------------------- /ios/Cove/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Device.swift -------------------------------------------------------------------------------- /ios/Cove/ExportTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/ExportTypes.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Address+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Address+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Color+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Color+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/ColorSchemeSelection+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/ColorSchemeSelection+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Enum+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Enum+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Error+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Error+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/General+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/General+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/HapticFeedback+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/HapticFeedback+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/KeyboardObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/KeyboardObserver.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/NodeSelection+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/NodeSelection+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/NumberOfWords+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/NumberOfWords+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Result+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Result+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Routes+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Routes+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Shape+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Shape+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/String+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/String+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/StringOrData+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/StringOrData+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Trait+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Trait+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Transaction+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Transaction+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/Transition+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/Transition+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/View+GlassEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/View+GlassEffect.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/WalletAddressType+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/WalletAddressType+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/WalletColor+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/WalletColor+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/WalletMetadata+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/WalletMetadata+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/Extention/iOS18Compatibility+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Extention/iOS18Compatibility+Ext.swift -------------------------------------------------------------------------------- /ios/Cove/FFI/FfiColorScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/FFI/FfiColorScheme.swift -------------------------------------------------------------------------------- /ios/Cove/FFI/MakeIdentifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/FFI/MakeIdentifiable.swift -------------------------------------------------------------------------------- /ios/Cove/FFI/WeakReconciler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/FFI/WeakReconciler.swift -------------------------------------------------------------------------------- /ios/Cove/FileReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/FileReader.swift -------------------------------------------------------------------------------- /ios/Cove/FlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/FlowLayout.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/CoinControlFlow/CoinControlContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/CoinControlFlow/CoinControlContainer.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/CoinControlFlow/UtxoListScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/CoinControlFlow/UtxoListScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/CoinControlFlow/UtxoRowPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/CoinControlFlow/UtxoRowPreview.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/ColdWallet/QrCodeImportScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/ColdWallet/QrCodeImportScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/Container/NewHotWalletContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/Container/NewHotWalletContainer.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/Container/NewWalletContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/Container/NewWalletContainer.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/HotWallet/HotWalletCreateScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/HotWallet/HotWalletCreateScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/HotWallet/HotWalletImportCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/HotWallet/HotWalletImportCard.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/HotWallet/HotWalletImportScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/HotWallet/HotWalletImportScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/HotWallet/HotWalletSelectScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/HotWallet/HotWalletSelectScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/HotWallet/VerifyWords/VerificationCompleteScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/HotWallet/VerifyWords/VerificationCompleteScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/HotWallet/VerifyWords/VerifyWordsScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/HotWallet/VerifyWords/VerifyWordsScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/NewWalletSelectScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/NewWalletSelectScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/NfcHelpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/NfcHelpView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/NewWalletFlow/PendingWalletViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/NewWalletFlow/PendingWalletViewModel.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/ChooseWalletTypeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/ChooseWalletTypeView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/MoreInfoPopover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/MoreInfoPopover.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/QrCodeLabelImportView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/QrCodeLabelImportView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/ReceiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/ReceiveView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/SecretWordsScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/SecretWordsScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/SelectedWalletContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/SelectedWalletContainer.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/SelectedWalletScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/SelectedWalletScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/ConfirmationIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/ConfirmationIndicatorView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/HeaderIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/HeaderIcon.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/ReceivedDetailsExpandedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/ReceivedDetailsExpandedView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/SentDetailsExpandedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/SentDetailsExpandedView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsLabelView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/TransactionDetailsView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/TransactionsDetailScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/TransactionDetails/TransactionsDetailScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/TransactionsCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/TransactionsCardView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SelectedWalletFlow/WalletBalanceHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SelectedWalletFlow/WalletBalanceHeaderView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/Common/SendFlowAccountSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/Common/SendFlowAccountSection.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/Common/SendFlowDetailsSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/Common/SendFlowDetailsSheetView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/Common/SendFlowDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/Common/SendFlowDetailsView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/Common/SendFlowDurationCapsule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/Common/SendFlowDurationCapsule.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/Common/SendFlowFlowAdvancedDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/Common/SendFlowFlowAdvancedDetailsView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/Common/SendFlowHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/Common/SendFlowHeaderView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/Common/SendFlowUtxoCustomAmountSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/Common/SendFlowUtxoCustomAmountSheetView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/ConfirmScreen/SwipeToSendView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/ConfirmScreen/SwipeToSendView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SendFlowCoinControlSetAmountScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SendFlowCoinControlSetAmountScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SendFlowConfirmScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SendFlowConfirmScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SendFlowContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SendFlowContainer.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SendFlowCustomFeeRateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SendFlowCustomFeeRateView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SendFlowHardwareScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SendFlowHardwareScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SendFlowManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SendFlowManager.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SendFlowPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SendFlowPresenter.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SendFlowSetAmountScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SendFlowSetAmountScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SetAmountScreen/AddressTextEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SetAmountScreen/AddressTextEditor.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SetAmountScreen/EnterAddressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SetAmountScreen/EnterAddressView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SetAmountScreen/EnterAmountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SetAmountScreen/EnterAmountView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SetAmountScreen/QrCodeAddressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SetAmountScreen/QrCodeAddressView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SendFlow/SetAmountScreen/SendFlowSelectFeeRateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SendFlow/SetAmountScreen/SendFlowSelectFeeRateView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/MainSettingsScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/MainSettingsScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsContainer.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsPicker.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/ChangePinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/ChangePinView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/DecoyPinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/DecoyPinView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/NewPinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/NewPinView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/NodeSelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/NodeSelectionView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/SettingsIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/SettingsIcon.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/SettingsListAllWallets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/SettingsListAllWallets.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/SettingsRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/SettingsRow.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/SettingsToggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/SettingsToggle.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/WalletSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/WalletSettingsSection.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/WipeDataPinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/WipeDataPinView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/SettingsScreen/WipePin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/SettingsScreen/WipePin.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/WalletSettings/WalletSettingsChangeNameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/WalletSettings/WalletSettingsChangeNameView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/WalletSettings/WalletSettingsContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/WalletSettings/WalletSettingsContainer.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/SettingsFlow/WalletSettings/WalletSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/SettingsFlow/WalletSettings/WalletSettingsView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerAdvancedChainCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerAdvancedChainCode.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerChooseChainCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerChooseChainCode.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerConfirmPinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerConfirmPinView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerContainer.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerEnterPinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerEnterPinView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerImportRetryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerImportRetryView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerImportSuccessView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerImportSuccessView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerNewPinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerNewPinView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerSetupRetryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerSetupRetryView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerSetupSuccessView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerSetupSuccessView.swift -------------------------------------------------------------------------------- /ios/Cove/Flows/TapSignerFlow/TapSignerStartingPinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Flows/TapSignerFlow/TapSignerStartingPinView.swift -------------------------------------------------------------------------------- /ios/Cove/Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Format.swift -------------------------------------------------------------------------------- /ios/Cove/FullPageLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/FullPageLoadingView.swift -------------------------------------------------------------------------------- /ios/Cove/GlobalImports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/GlobalImports.swift -------------------------------------------------------------------------------- /ios/Cove/HomeScreens/ListWalletsScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/HomeScreens/ListWalletsScreen.swift -------------------------------------------------------------------------------- /ios/Cove/Icons/BitcoinShieldIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Icons/BitcoinShieldIcon.swift -------------------------------------------------------------------------------- /ios/Cove/ImportWalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/ImportWalletManager.swift -------------------------------------------------------------------------------- /ios/Cove/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Info.plist -------------------------------------------------------------------------------- /ios/Cove/LoadAndResetContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/LoadAndResetContainer.swift -------------------------------------------------------------------------------- /ios/Cove/NFCReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/NFCReader.swift -------------------------------------------------------------------------------- /ios/Cove/NFCWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/NFCWriter.swift -------------------------------------------------------------------------------- /ios/Cove/PSBTFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/PSBTFile.swift -------------------------------------------------------------------------------- /ios/Cove/Popups/FloaterPopup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Popups/FloaterPopup.swift -------------------------------------------------------------------------------- /ios/Cove/Popups/MiddlePopup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Popups/MiddlePopup.swift -------------------------------------------------------------------------------- /ios/Cove/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Cove/QrCodeScanView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/QrCodeScanView.swift -------------------------------------------------------------------------------- /ios/Cove/QrCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/QrCodeView.swift -------------------------------------------------------------------------------- /ios/Cove/RouteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/RouteView.swift -------------------------------------------------------------------------------- /ios/Cove/Security.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Security.swift -------------------------------------------------------------------------------- /ios/Cove/Shape/Line.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Shape/Line.swift -------------------------------------------------------------------------------- /ios/Cove/ShareSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/ShareSheet.swift -------------------------------------------------------------------------------- /ios/Cove/SidebarContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/SidebarContainer.swift -------------------------------------------------------------------------------- /ios/Cove/Styles/ButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Styles/ButtonStyle.swift -------------------------------------------------------------------------------- /ios/Cove/Styles/CommonButtonStyles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Styles/CommonButtonStyles.swift -------------------------------------------------------------------------------- /ios/Cove/TaggedItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/TaggedItem.swift -------------------------------------------------------------------------------- /ios/Cove/TapSignerNFC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/TapSignerNFC.swift -------------------------------------------------------------------------------- /ios/Cove/Types/JSONLDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Types/JSONLDocument.swift -------------------------------------------------------------------------------- /ios/Cove/ViewModifier/ClearButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/ViewModifier/ClearButton.swift -------------------------------------------------------------------------------- /ios/Cove/Views/AsyncView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/AsyncView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/ColorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/ColorView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/DotMenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/DotMenuView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/DynamicScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/DynamicScrollView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/FloaterPopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/FloaterPopupView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/LockView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/LockView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/MiddlePopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/MiddlePopupView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/NumberPadPinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/NumberPadPinView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/QrExportView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/QrExportView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/SidebarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/SidebarView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/TermsAndConditionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/TermsAndConditionsView.swift -------------------------------------------------------------------------------- /ios/Cove/Views/ThreeDotsAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/ThreeDotsAnimation.swift -------------------------------------------------------------------------------- /ios/Cove/Views/TransactionCapsule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/Views/TransactionCapsule.swift -------------------------------------------------------------------------------- /ios/Cove/WalletManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Cove/WalletManager.swift -------------------------------------------------------------------------------- /ios/CoveCore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/.gitignore -------------------------------------------------------------------------------- /ios/CoveCore/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Package.swift -------------------------------------------------------------------------------- /ios/CoveCore/Sources/CoveCore/CoveCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Sources/CoveCore/CoveCore.swift -------------------------------------------------------------------------------- /ios/CoveCore/Sources/CoveCore/generated/cove.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Sources/CoveCore/generated/cove.swift -------------------------------------------------------------------------------- /ios/CoveCore/Sources/CoveCore/generated/cove_device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Sources/CoveCore/generated/cove_device.swift -------------------------------------------------------------------------------- /ios/CoveCore/Sources/CoveCore/generated/cove_nfc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Sources/CoveCore/generated/cove_nfc.swift -------------------------------------------------------------------------------- /ios/CoveCore/Sources/CoveCore/generated/cove_tap_card.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Sources/CoveCore/generated/cove_tap_card.swift -------------------------------------------------------------------------------- /ios/CoveCore/Sources/CoveCore/generated/cove_types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Sources/CoveCore/generated/cove_types.swift -------------------------------------------------------------------------------- /ios/CoveCore/Sources/CoveCore/generated/cove_ur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Sources/CoveCore/generated/cove_ur.swift -------------------------------------------------------------------------------- /ios/CoveCore/Sources/CoveCore/generated/cove_util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Sources/CoveCore/generated/cove_util.swift -------------------------------------------------------------------------------- /ios/CoveCore/Tests/CoveCoreTests/CoveCoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/CoveCore/Tests/CoveCoreTests/CoveCoreTests.swift -------------------------------------------------------------------------------- /ios/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/ios/Logger.swift -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/justfile -------------------------------------------------------------------------------- /plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/plan.md -------------------------------------------------------------------------------- /plan_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/plan_context.md -------------------------------------------------------------------------------- /plan_progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/plan_progress.md -------------------------------------------------------------------------------- /rust-analyzer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust-analyzer.json -------------------------------------------------------------------------------- /rust/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/.cargo/config.toml -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | 3 | # ios 4 | /ios/Cove.xcframework 5 | -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/build.rs -------------------------------------------------------------------------------- /rust/crates/cove-bdk/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-bdk/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-bdk/src/coin_selection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-bdk/src/coin_selection.rs -------------------------------------------------------------------------------- /rust/crates/cove-bdk/src/coin_selection/cove_default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-bdk/src/coin_selection/cove_default.rs -------------------------------------------------------------------------------- /rust/crates/cove-bdk/src/coin_selection/deterministic_random_draw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-bdk/src/coin_selection/deterministic_random_draw.rs -------------------------------------------------------------------------------- /rust/crates/cove-bdk/src/descriptor_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-bdk/src/descriptor_ext.rs -------------------------------------------------------------------------------- /rust/crates/cove-bdk/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-bdk/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-bdk/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-bdk/src/util.rs -------------------------------------------------------------------------------- /rust/crates/cove-bip39/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-bip39/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-bip39/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-bip39/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-common/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-common/src/consts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-common/src/consts.rs -------------------------------------------------------------------------------- /rust/crates/cove-common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-common/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-common/src/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-common/src/logging.rs -------------------------------------------------------------------------------- /rust/crates/cove-device/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-device/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-device/src/device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-device/src/device.rs -------------------------------------------------------------------------------- /rust/crates/cove-device/src/keychain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-device/src/keychain.rs -------------------------------------------------------------------------------- /rust/crates/cove-device/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-device/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-device/uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-device/uniffi.toml -------------------------------------------------------------------------------- /rust/crates/cove-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-macros/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-macros/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/ffi.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/header.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/message.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/message_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/message_info.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/ndef_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/ndef_type.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/parser.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/parser/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/parser/stream.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/payload.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/record.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/src/resume.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/src/resume.rs -------------------------------------------------------------------------------- /rust/crates/cove-nfc/test/data/descriptor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/test/data/descriptor.txt -------------------------------------------------------------------------------- /rust/crates/cove-nfc/test/data/descriptor_bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/test/data/descriptor_bytes.txt -------------------------------------------------------------------------------- /rust/crates/cove-nfc/test/data/export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/test/data/export.json -------------------------------------------------------------------------------- /rust/crates/cove-nfc/test/data/export_bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/test/data/export_bytes.txt -------------------------------------------------------------------------------- /rust/crates/cove-nfc/test/data/seed_words_bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/test/data/seed_words_bytes.txt -------------------------------------------------------------------------------- /rust/crates/cove-nfc/uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-nfc/uniffi.toml -------------------------------------------------------------------------------- /rust/crates/cove-tap-card/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-tap-card/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-tap-card/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-tap-card/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-tap-card/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-tap-card/src/parse.rs -------------------------------------------------------------------------------- /rust/crates/cove-tap-card/uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-tap-card/uniffi.toml -------------------------------------------------------------------------------- /rust/crates/cove-tokio-ext/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-tokio-ext/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-tokio-ext/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-tokio-ext/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-types/src/address.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/address.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/address_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/address_index.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/amount.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/amount.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/block_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/block_size.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/chain_position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/chain_position.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/color.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/color_scheme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/color_scheme.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/confirm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/confirm.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/fees.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/fees.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/network.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/psbt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/psbt.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/redb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/redb.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/transaction.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/transaction/out_point.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/transaction/out_point.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/transaction/sent_and_received.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/transaction/sent_and_received.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/transaction/tx_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/transaction/tx_id.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/transaction/tx_in.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/transaction/tx_in.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/transaction/tx_out.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/transaction/tx_out.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/unit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/unit.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/utxo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/utxo.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/src/wallet_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/src/wallet_id.rs -------------------------------------------------------------------------------- /rust/crates/cove-types/uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-types/uniffi.toml -------------------------------------------------------------------------------- /rust/crates/cove-ur/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/cbor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/cbor.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/cbor/embedded_cbor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/cbor/embedded_cbor.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/cbor/fingerprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/cbor/fingerprint.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/cbor/keypath_components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/cbor/keypath_components.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/cbor/optional_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/cbor/optional_bytes.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/coin_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/coin_info.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/crypto_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/crypto_account.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/crypto_hdkey.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/crypto_hdkey.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/crypto_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/crypto_output.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/crypto_psbt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/crypto_psbt.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/crypto_seed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/crypto_seed.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/error.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/keypath.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/keypath.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/registry.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/src/ur.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/src/ur.rs -------------------------------------------------------------------------------- /rust/crates/cove-ur/uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-ur/uniffi.toml -------------------------------------------------------------------------------- /rust/crates/cove-util/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-util/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/cove-util/src/encryption.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-util/src/encryption.rs -------------------------------------------------------------------------------- /rust/crates/cove-util/src/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-util/src/format.rs -------------------------------------------------------------------------------- /rust/crates/cove-util/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-util/src/lib.rs -------------------------------------------------------------------------------- /rust/crates/cove-util/src/result_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-util/src/result_ext.rs -------------------------------------------------------------------------------- /rust/crates/cove-util/uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/cove-util/uniffi.toml -------------------------------------------------------------------------------- /rust/crates/uniffi_cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/uniffi_cli/Cargo.toml -------------------------------------------------------------------------------- /rust/crates/uniffi_cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/crates/uniffi_cli/src/main.rs -------------------------------------------------------------------------------- /rust/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/rustfmt.toml -------------------------------------------------------------------------------- /rust/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/app.rs -------------------------------------------------------------------------------- /rust/src/app/reconcile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/app/reconcile.rs -------------------------------------------------------------------------------- /rust/src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/auth.rs -------------------------------------------------------------------------------- /rust/src/autocomplete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/autocomplete.rs -------------------------------------------------------------------------------- /rust/src/bdk_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/bdk_store.rs -------------------------------------------------------------------------------- /rust/src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/build.rs -------------------------------------------------------------------------------- /rust/src/converter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/converter.rs -------------------------------------------------------------------------------- /rust/src/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database.rs -------------------------------------------------------------------------------- /rust/src/database/cbor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/cbor.rs -------------------------------------------------------------------------------- /rust/src/database/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/error.rs -------------------------------------------------------------------------------- /rust/src/database/global_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/global_cache.rs -------------------------------------------------------------------------------- /rust/src/database/global_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/global_config.rs -------------------------------------------------------------------------------- /rust/src/database/global_flag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/global_flag.rs -------------------------------------------------------------------------------- /rust/src/database/historical_price.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/historical_price.rs -------------------------------------------------------------------------------- /rust/src/database/historical_price/network_block_height.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/historical_price/network_block_height.rs -------------------------------------------------------------------------------- /rust/src/database/historical_price/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/historical_price/record.rs -------------------------------------------------------------------------------- /rust/src/database/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/key.rs -------------------------------------------------------------------------------- /rust/src/database/key/outpoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/key/outpoint.rs -------------------------------------------------------------------------------- /rust/src/database/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/macros.rs -------------------------------------------------------------------------------- /rust/src/database/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/record.rs -------------------------------------------------------------------------------- /rust/src/database/unsigned_transactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/unsigned_transactions.rs -------------------------------------------------------------------------------- /rust/src/database/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/wallet.rs -------------------------------------------------------------------------------- /rust/src/database/wallet_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/wallet_data.rs -------------------------------------------------------------------------------- /rust/src/database/wallet_data/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/database/wallet_data/label.rs -------------------------------------------------------------------------------- /rust/src/fee_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/fee_client.rs -------------------------------------------------------------------------------- /rust/src/fiat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/fiat.rs -------------------------------------------------------------------------------- /rust/src/fiat/amount.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/fiat/amount.rs -------------------------------------------------------------------------------- /rust/src/fiat/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/fiat/client.rs -------------------------------------------------------------------------------- /rust/src/fiat/historical.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/fiat/historical.rs -------------------------------------------------------------------------------- /rust/src/file_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/file_handler.rs -------------------------------------------------------------------------------- /rust/src/hardware_export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/hardware_export.rs -------------------------------------------------------------------------------- /rust/src/historical_price_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/historical_price_service.rs -------------------------------------------------------------------------------- /rust/src/keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/keys.rs -------------------------------------------------------------------------------- /rust/src/label_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/label_manager.rs -------------------------------------------------------------------------------- /rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/lib.rs -------------------------------------------------------------------------------- /rust/src/manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager.rs -------------------------------------------------------------------------------- /rust/src/manager/auth_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/auth_manager.rs -------------------------------------------------------------------------------- /rust/src/manager/coin_control_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/coin_control_manager.rs -------------------------------------------------------------------------------- /rust/src/manager/coin_control_manager/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/coin_control_manager/state.rs -------------------------------------------------------------------------------- /rust/src/manager/deferred_dispatch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/deferred_dispatch.rs -------------------------------------------------------------------------------- /rust/src/manager/deferred_sender.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/deferred_sender.rs -------------------------------------------------------------------------------- /rust/src/manager/import_wallet_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/import_wallet_manager.rs -------------------------------------------------------------------------------- /rust/src/manager/pending_wallet_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/pending_wallet_manager.rs -------------------------------------------------------------------------------- /rust/src/manager/send_flow_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/send_flow_manager.rs -------------------------------------------------------------------------------- /rust/src/manager/send_flow_manager/alert_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/send_flow_manager/alert_state.rs -------------------------------------------------------------------------------- /rust/src/manager/send_flow_manager/amount_or_max.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/send_flow_manager/amount_or_max.rs -------------------------------------------------------------------------------- /rust/src/manager/send_flow_manager/btc_on_change.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/send_flow_manager/btc_on_change.rs -------------------------------------------------------------------------------- /rust/src/manager/send_flow_manager/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/send_flow_manager/error.rs -------------------------------------------------------------------------------- /rust/src/manager/send_flow_manager/fiat_on_change.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/send_flow_manager/fiat_on_change.rs -------------------------------------------------------------------------------- /rust/src/manager/send_flow_manager/sanitize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/send_flow_manager/sanitize.rs -------------------------------------------------------------------------------- /rust/src/manager/send_flow_manager/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/send_flow_manager/state.rs -------------------------------------------------------------------------------- /rust/src/manager/wallet_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/wallet_manager.rs -------------------------------------------------------------------------------- /rust/src/manager/wallet_manager/actor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/manager/wallet_manager/actor.rs -------------------------------------------------------------------------------- /rust/src/mnemonic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/mnemonic.rs -------------------------------------------------------------------------------- /rust/src/mnemonic/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/mnemonic/ext.rs -------------------------------------------------------------------------------- /rust/src/mnemonic/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/mnemonic/ffi.rs -------------------------------------------------------------------------------- /rust/src/mnemonic/grouped_word.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/mnemonic/grouped_word.rs -------------------------------------------------------------------------------- /rust/src/mnemonic/number_of_bip39_words.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/mnemonic/number_of_bip39_words.rs -------------------------------------------------------------------------------- /rust/src/mnemonic/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/mnemonic/parse.rs -------------------------------------------------------------------------------- /rust/src/mnemonic/word_access.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/mnemonic/word_access.rs -------------------------------------------------------------------------------- /rust/src/multi_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/multi_format.rs -------------------------------------------------------------------------------- /rust/src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/node.rs -------------------------------------------------------------------------------- /rust/src/node/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/node/client.rs -------------------------------------------------------------------------------- /rust/src/node/client/electrum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/node/client/electrum.rs -------------------------------------------------------------------------------- /rust/src/node/client/esplora.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/node/client/esplora.rs -------------------------------------------------------------------------------- /rust/src/node/client_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/node/client_builder.rs -------------------------------------------------------------------------------- /rust/src/node_connect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/node_connect.rs -------------------------------------------------------------------------------- /rust/src/pending_wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/pending_wallet.rs -------------------------------------------------------------------------------- /rust/src/push_tx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/push_tx.rs -------------------------------------------------------------------------------- /rust/src/qr_scanner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/qr_scanner.rs -------------------------------------------------------------------------------- /rust/src/reporting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/reporting.rs -------------------------------------------------------------------------------- /rust/src/router.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/router.rs -------------------------------------------------------------------------------- /rust/src/seed_qr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/seed_qr.rs -------------------------------------------------------------------------------- /rust/src/send_flow.rs: -------------------------------------------------------------------------------- 1 | pub mod header_icon_presenter; 2 | -------------------------------------------------------------------------------- /rust/src/send_flow/header_icon_presenter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/send_flow/header_icon_presenter.rs -------------------------------------------------------------------------------- /rust/src/tap_card.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/tap_card.rs -------------------------------------------------------------------------------- /rust/src/tap_card/tap_signer_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/tap_card/tap_signer_reader.rs -------------------------------------------------------------------------------- /rust/src/task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/task.rs -------------------------------------------------------------------------------- /rust/src/transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/transaction.rs -------------------------------------------------------------------------------- /rust/src/transaction/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/transaction/ffi.rs -------------------------------------------------------------------------------- /rust/src/transaction/transaction_details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/transaction/transaction_details.rs -------------------------------------------------------------------------------- /rust/src/transaction/unsigned_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/transaction/unsigned_transaction.rs -------------------------------------------------------------------------------- /rust/src/transaction_watcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/transaction_watcher.rs -------------------------------------------------------------------------------- /rust/src/unblock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/unblock.rs -------------------------------------------------------------------------------- /rust/src/ur.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/ur.rs -------------------------------------------------------------------------------- /rust/src/wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/wallet.rs -------------------------------------------------------------------------------- /rust/src/wallet/balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/wallet/balance.rs -------------------------------------------------------------------------------- /rust/src/wallet/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/wallet/ffi.rs -------------------------------------------------------------------------------- /rust/src/wallet/fingerprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/wallet/fingerprint.rs -------------------------------------------------------------------------------- /rust/src/wallet/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/wallet/metadata.rs -------------------------------------------------------------------------------- /rust/src/wallet_scanner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/wallet_scanner.rs -------------------------------------------------------------------------------- /rust/src/word_validator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/word_validator.rs -------------------------------------------------------------------------------- /rust/src/word_verify_state_machine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/word_verify_state_machine.rs -------------------------------------------------------------------------------- /rust/src/xpub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/src/xpub.rs -------------------------------------------------------------------------------- /rust/uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/uniffi.toml -------------------------------------------------------------------------------- /rust/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/xtask/Cargo.toml -------------------------------------------------------------------------------- /rust/xtask/src/android.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/xtask/src/android.rs -------------------------------------------------------------------------------- /rust/xtask/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/xtask/src/common.rs -------------------------------------------------------------------------------- /rust/xtask/src/ios.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/xtask/src/ios.rs -------------------------------------------------------------------------------- /rust/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/xtask/src/main.rs -------------------------------------------------------------------------------- /rust/xtask/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoinppl/cove/HEAD/rust/xtask/src/version.rs --------------------------------------------------------------------------------