├── .deploy ├── checksum.sh ├── gc-storage-service-account.json.gpg ├── google-services.json.gpg ├── id_rsa.enc ├── id_rsa.pub ├── keystore.jks.gpg └── prepare_changelog.sh ├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── dashpay.yml │ ├── dashwallet.yml │ ├── ktlint.yml │ └── manual_distribution.yml ├── .gitignore ├── .tx └── config ├── Gemfile ├── Gemfile.lock ├── README.md ├── check-alignment.sh ├── common ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── dash │ │ │ └── wallet │ │ │ └── common │ │ │ ├── AutoLogoutTimerHandler.java │ │ │ ├── Configuration.java │ │ │ ├── InteractionAwareActivity.java │ │ │ ├── InteractionAwareDialogFragment.kt │ │ │ ├── SecureActivity.kt │ │ │ ├── UserInteractionAwareCallback.java │ │ │ ├── WalletDataProvider.kt │ │ │ ├── customtabs │ │ │ ├── CustomTabActivityHelper.java │ │ │ └── CustomTabsHelper.java │ │ │ ├── data │ │ │ ├── BaseConfig.kt │ │ │ ├── BlockchainServiceConfig.kt │ │ │ ├── CurrencyInfo.java │ │ │ ├── ExchangeRatesConfig.kt │ │ │ ├── NetworkStatus.kt │ │ │ ├── OnboardingState.kt │ │ │ ├── PresentableTxMetadata.kt │ │ │ ├── Resource.kt │ │ │ ├── ResponseResource.kt │ │ │ ├── ServiceName.kt │ │ │ ├── SingleLiveEvent.java │ │ │ ├── Status.kt │ │ │ ├── TaxCategory.kt │ │ │ ├── WalletUIConfig.kt │ │ │ └── entity │ │ │ │ ├── AddressMetadata.kt │ │ │ │ ├── BlockchainState.kt │ │ │ │ ├── ExchangeRate.kt │ │ │ │ ├── GiftCard.kt │ │ │ │ ├── IconBitmap.kt │ │ │ │ └── TransactionMetadata.kt │ │ │ ├── services │ │ │ ├── AuthenticationManager.kt │ │ │ ├── BlockchainStateProvider.kt │ │ │ ├── ConfirmTransactionService.kt │ │ │ ├── ExchangeRatesProvider.kt │ │ │ ├── LockScreenBroadcaster.kt │ │ │ ├── NetworkStateInt.kt │ │ │ ├── NotificationService.kt │ │ │ ├── RateRetrievalState.kt │ │ │ ├── SendPaymentService.kt │ │ │ ├── SystemActionsService.kt │ │ │ ├── TransactionMetadataProvider.kt │ │ │ └── analytics │ │ │ │ ├── AnalyticsConstants.kt │ │ │ │ ├── AnalyticsService.kt │ │ │ │ └── AnalyticsTimer.kt │ │ │ ├── transactions │ │ │ ├── ByAddressCoinSelector.kt │ │ │ ├── ExactOutputsSelector.kt │ │ │ ├── TransactionCategory.kt │ │ │ ├── TransactionComparator.kt │ │ │ ├── TransactionObserver.kt │ │ │ ├── TransactionUtils.kt │ │ │ ├── TransactionWrapper.kt │ │ │ ├── TransactionWrapperFactory.kt │ │ │ └── filters │ │ │ │ ├── CoinsFromAddressTxFilter.kt │ │ │ │ ├── CoinsReceivedTxFilter.kt │ │ │ │ ├── CoinsToAddressTxFilter.kt │ │ │ │ ├── LockedTransaction.kt │ │ │ │ ├── NotFromAddressTxFilter.kt │ │ │ │ ├── TransactionFilter.kt │ │ │ │ └── TxWithinTimePeriod.kt │ │ │ ├── ui │ │ │ ├── Animations.kt │ │ │ ├── BalanceUIState.kt │ │ │ ├── BaseAlertDialogBuilder.kt │ │ │ ├── BaseDialogFragment.kt │ │ │ ├── CurrencyAmountView.java │ │ │ ├── CurrencySymbolDrawable.java │ │ │ ├── CurrencyTextView.java │ │ │ ├── DialogBuilder.java │ │ │ ├── FancyAlertDialog.kt │ │ │ ├── Formats.java │ │ │ ├── FragmentViewBindingDelegate.kt │ │ │ ├── LockScreenAware.kt │ │ │ ├── PaymentHeaderView.kt │ │ │ ├── ResourcesExt.kt │ │ │ ├── WebViewFragment.kt │ │ │ ├── avatar │ │ │ │ ├── CocoaImageDHash.kt │ │ │ │ ├── ColorUtil.java │ │ │ │ ├── ProfilePictureDisplay.kt │ │ │ │ ├── ProfilePictureHelper.kt │ │ │ │ ├── ProfilePictureTransformation.kt │ │ │ │ └── UserAvatarPlaceholderDrawable.kt │ │ │ ├── components │ │ │ │ ├── ButtonLarge.kt │ │ │ │ ├── ButtonStyle.kt │ │ │ │ ├── ComposeHostFrameLayout.kt │ │ │ │ ├── DashButton.kt │ │ │ │ ├── DashCheckBox.kt │ │ │ │ ├── DashModelDialog.kt │ │ │ │ ├── DashRadioButton.kt │ │ │ │ ├── InfoPanel.kt │ │ │ │ ├── Label.kt │ │ │ │ ├── Menu.kt │ │ │ │ ├── MenuItem.kt │ │ │ │ ├── MyTheme.kt │ │ │ │ ├── System.kt │ │ │ │ ├── Template.kt │ │ │ │ ├── Toast.kt │ │ │ │ ├── TopIntro.kt │ │ │ │ └── TopNavBase.kt │ │ │ ├── decorators │ │ │ │ └── ListDividerDecorator.kt │ │ │ ├── dialogs │ │ │ │ ├── AdaptiveDialog.kt │ │ │ │ ├── ExtraActionDialog.kt │ │ │ │ ├── MinimumBalanceDialog.kt │ │ │ │ └── OffsetDialogFragment.kt │ │ │ ├── enter_amount │ │ │ │ ├── AmountView.kt │ │ │ │ ├── EnterAmountFragment.kt │ │ │ │ ├── EnterAmountViewModel.kt │ │ │ │ └── NumericKeyboardView.kt │ │ │ ├── exchange_rates │ │ │ │ ├── ExchangeRatesDialog.kt │ │ │ │ └── ExchangeRatesViewModel.kt │ │ │ ├── orbitview │ │ │ │ ├── OrbitView.kt │ │ │ │ └── PlanetView.kt │ │ │ ├── payment_method_picker │ │ │ │ ├── CardUtils.kt │ │ │ │ ├── PaymentMethod.kt │ │ │ │ └── PaymentMethodPicker.kt │ │ │ ├── radio_group │ │ │ │ ├── IconifiedViewItem.kt │ │ │ │ ├── OptionPickerDialog.kt │ │ │ │ └── RadioGroupAdapter.kt │ │ │ ├── receive │ │ │ │ └── ReceiveInfoView.kt │ │ │ ├── segmented_picker │ │ │ │ └── SegmentedPicker.kt │ │ │ └── text │ │ │ │ └── InputWrapper.kt │ │ │ └── util │ │ │ ├── ActivityExt.kt │ │ │ ├── Base43.java │ │ │ ├── Constants.kt │ │ │ ├── ContextExtensions.kt │ │ │ ├── FlowExt.kt │ │ │ ├── GenericUtils.kt │ │ │ ├── HttpClientExt.kt │ │ │ ├── KeyboardUtil.kt │ │ │ ├── MonetaryExt.kt │ │ │ ├── MonetarySpannable.java │ │ │ ├── NavigationExtensions.kt │ │ │ ├── Networks.kt │ │ │ ├── Qr.kt │ │ │ ├── ResourceString.kt │ │ │ ├── StringExt.kt │ │ │ ├── TextViewExt.kt │ │ │ └── security │ │ │ ├── EncryptionProvider.kt │ │ │ └── SecurityFileUtils.kt │ └── res │ │ ├── anim │ │ ├── activity_stay.xml │ │ ├── fade_in.xml │ │ ├── fade_out.xml │ │ ├── slide_in_right.xml │ │ └── slide_out_left.xml │ │ ├── color │ │ ├── button_text.xml │ │ ├── fg_network.xml │ │ ├── inverted_button.xml │ │ ├── keyboard_button.xml │ │ ├── main_button.xml │ │ ├── radiobutton_icon_color.xml │ │ ├── radiobutton_text_color.xml │ │ └── secondary_button.xml │ │ ├── drawable-anydpi │ │ ├── ic_clear_grey600_24dp.xml │ │ └── ic_warning_grey600_24dp.xml │ │ ├── drawable-v21 │ │ ├── dark_gray_button_background.xml │ │ ├── gray_button_background.xml │ │ ├── gray_button_background_no_shadow.xml │ │ ├── selectable_background_dark.xml │ │ ├── selectable_background_light.xml │ │ ├── selectable_round_corners.xml │ │ ├── selectable_round_corners_dark.xml │ │ ├── selectable_round_corners_light_blue.xml │ │ ├── selectable_round_corners_white.xml │ │ ├── transparent_button_background.xml │ │ ├── white_button_background_blue_border.xml │ │ └── white_button_background_no_shadow.xml │ │ ├── drawable-xhdpi │ │ ├── currency_symbol_dash.png │ │ ├── currency_symbol_mdash.png │ │ └── currency_symbol_udash.png │ │ ├── drawable │ │ ├── animated_circular_progress_indictator.xml │ │ ├── aqua_green_button.xml │ │ ├── bg_vertical_segment_rounded.xml │ │ ├── blue_circle.xml │ │ ├── checkbox.xml │ │ ├── checkbox_checked.xml │ │ ├── checkbox_simple.xml │ │ ├── checkbox_simple_checked.xml │ │ ├── checkbox_simple_unchecked.xml │ │ ├── checkbox_unchecked.xml │ │ ├── circular_progress_indicator.xml │ │ ├── currency_code_aed.xml │ │ ├── currency_code_afn.xml │ │ ├── currency_code_all.xml │ │ ├── currency_code_amd.xml │ │ ├── currency_code_ang.xml │ │ ├── currency_code_aoa.xml │ │ ├── currency_code_ars.xml │ │ ├── currency_code_aud.xml │ │ ├── currency_code_awg.xml │ │ ├── currency_code_azn.xml │ │ ├── currency_code_bam.xml │ │ ├── currency_code_bbd.xml │ │ ├── currency_code_bdt.xml │ │ ├── currency_code_bgn.xml │ │ ├── currency_code_bhd.xml │ │ ├── currency_code_bif.xml │ │ ├── currency_code_bmd.xml │ │ ├── currency_code_bnd.xml │ │ ├── currency_code_bob.xml │ │ ├── currency_code_brl.xml │ │ ├── currency_code_bsd.xml │ │ ├── currency_code_btc.xml │ │ ├── currency_code_btn.xml │ │ ├── currency_code_bwp.xml │ │ ├── currency_code_byn.xml │ │ ├── currency_code_byr.xml │ │ ├── currency_code_bzd.xml │ │ ├── currency_code_cad.xml │ │ ├── currency_code_cdf.xml │ │ ├── currency_code_chf.xml │ │ ├── currency_code_clf.xml │ │ ├── currency_code_clp.xml │ │ ├── currency_code_cny.xml │ │ ├── currency_code_cop.xml │ │ ├── currency_code_crc.xml │ │ ├── currency_code_cuc.xml │ │ ├── currency_code_cup.xml │ │ ├── currency_code_cve.xml │ │ ├── currency_code_czk.xml │ │ ├── currency_code_djf.xml │ │ ├── currency_code_dkk.xml │ │ ├── currency_code_dop.xml │ │ ├── currency_code_dzd.xml │ │ ├── currency_code_egp.xml │ │ ├── currency_code_ern.xml │ │ ├── currency_code_etb.xml │ │ ├── currency_code_eth.xml │ │ ├── currency_code_eur.xml │ │ ├── currency_code_fjd.xml │ │ ├── currency_code_fkp.xml │ │ ├── currency_code_gbp.xml │ │ ├── currency_code_gel.xml │ │ ├── currency_code_ggp.xml │ │ ├── currency_code_ghs.xml │ │ ├── currency_code_gip.xml │ │ ├── currency_code_gmd.xml │ │ ├── currency_code_gnf.xml │ │ ├── currency_code_gtq.xml │ │ ├── currency_code_gyd.xml │ │ ├── currency_code_hkd.xml │ │ ├── currency_code_hnl.xml │ │ ├── currency_code_hrk.xml │ │ ├── currency_code_htg.xml │ │ ├── currency_code_huf.xml │ │ ├── currency_code_idr.xml │ │ ├── currency_code_ils.xml │ │ ├── currency_code_imp.xml │ │ ├── currency_code_inr.xml │ │ ├── currency_code_iqd.xml │ │ ├── currency_code_irr.xml │ │ ├── currency_code_isk.xml │ │ ├── currency_code_jep.xml │ │ ├── currency_code_jmd.xml │ │ ├── currency_code_jod.xml │ │ ├── currency_code_jpy.xml │ │ ├── currency_code_kes.xml │ │ ├── currency_code_kgs.xml │ │ ├── currency_code_khr.xml │ │ ├── currency_code_kmf.xml │ │ ├── currency_code_kpw.xml │ │ ├── currency_code_krw.xml │ │ ├── currency_code_kwd.xml │ │ ├── currency_code_kyd.xml │ │ ├── currency_code_kzt.xml │ │ ├── currency_code_lak.xml │ │ ├── currency_code_lbp.xml │ │ ├── currency_code_lkr.xml │ │ ├── currency_code_lrd.xml │ │ ├── currency_code_lsl.xml │ │ ├── currency_code_ltc.xml │ │ ├── currency_code_lyd.xml │ │ ├── currency_code_mad.xml │ │ ├── currency_code_mdl.xml │ │ ├── currency_code_mga.xml │ │ ├── currency_code_mkd.xml │ │ ├── currency_code_mmk.xml │ │ ├── currency_code_mnt.xml │ │ ├── currency_code_mop.xml │ │ ├── currency_code_mro.xml │ │ ├── currency_code_mur.xml │ │ ├── currency_code_mvr.xml │ │ ├── currency_code_mwk.xml │ │ ├── currency_code_mxn.xml │ │ ├── currency_code_myr.xml │ │ ├── currency_code_mzn.xml │ │ ├── currency_code_nad.xml │ │ ├── currency_code_ngn.xml │ │ ├── currency_code_nio.xml │ │ ├── currency_code_nok.xml │ │ ├── currency_code_npr.xml │ │ ├── currency_code_nzd.xml │ │ ├── currency_code_omr.xml │ │ ├── currency_code_pab.xml │ │ ├── currency_code_pen.xml │ │ ├── currency_code_pgk.xml │ │ ├── currency_code_php.xml │ │ ├── currency_code_pkr.xml │ │ ├── currency_code_pln.xml │ │ ├── currency_code_pyg.xml │ │ ├── currency_code_qar.xml │ │ ├── currency_code_ron.xml │ │ ├── currency_code_rsd.xml │ │ ├── currency_code_rub.xml │ │ ├── currency_code_rwf.xml │ │ ├── currency_code_sar.xml │ │ ├── currency_code_sbd.xml │ │ ├── currency_code_scr.xml │ │ ├── currency_code_sdg.xml │ │ ├── currency_code_sek.xml │ │ ├── currency_code_sgd.xml │ │ ├── currency_code_shp.xml │ │ ├── currency_code_sll.xml │ │ ├── currency_code_sos.xml │ │ ├── currency_code_srd.xml │ │ ├── currency_code_std.xml │ │ ├── currency_code_svc.xml │ │ ├── currency_code_syp.xml │ │ ├── currency_code_szl.xml │ │ ├── currency_code_thb.xml │ │ ├── currency_code_tjs.xml │ │ ├── currency_code_tmt.xml │ │ ├── currency_code_tnd.xml │ │ ├── currency_code_top.xml │ │ ├── currency_code_try.xml │ │ ├── currency_code_ttd.xml │ │ ├── currency_code_twd.xml │ │ ├── currency_code_tzs.xml │ │ ├── currency_code_uah.xml │ │ ├── currency_code_ugx.xml │ │ ├── currency_code_usd.xml │ │ ├── currency_code_uyu.xml │ │ ├── currency_code_uzs.xml │ │ ├── currency_code_ves.xml │ │ ├── currency_code_vnd.xml │ │ ├── currency_code_vuv.xml │ │ ├── currency_code_wst.xml │ │ ├── currency_code_xaf.xml │ │ ├── currency_code_xag.xml │ │ ├── currency_code_xau.xml │ │ ├── currency_code_xcd.xml │ │ ├── currency_code_xdr.xml │ │ ├── currency_code_xof.xml │ │ ├── currency_code_xpf.xml │ │ ├── currency_code_yer.xml │ │ ├── currency_code_zar.xml │ │ ├── currency_code_zmk.xml │ │ ├── currency_code_zmw.xml │ │ ├── currency_code_zwl.xml │ │ ├── dialog_rounded_bg.xml │ │ ├── error_button.xml │ │ ├── gray_button_background.xml │ │ ├── gray_button_background_no_shadow.xml │ │ ├── gray_button_text.xml │ │ ├── ic_add_your_friends.xml │ │ ├── ic_advanced_privacy.xml │ │ ├── ic_american_express.xml │ │ ├── ic_apple_pay.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_arrow_back_white.xml │ │ ├── ic_arrow_downward_blue_24dp.xml │ │ ├── ic_arrow_left_blue.xml │ │ ├── ic_backspace.xml │ │ ├── ic_bank.xml │ │ ├── ic_basic_privacy.xml │ │ ├── ic_blue_support.xml │ │ ├── ic_buy_convert.xml │ │ ├── ic_buy_dash.xml │ │ ├── ic_buy_with_fiat.xml │ │ ├── ic_calendar.xml │ │ ├── ic_card.xml │ │ ├── ic_card_discover.xml │ │ ├── ic_card_jcb.xml │ │ ├── ic_cash_account.xml │ │ ├── ic_checkmark.xml │ │ ├── ic_checkmark_blue.xml │ │ ├── ic_chevron.xml │ │ ├── ic_circle_green_percent.xml │ │ ├── ic_clear.xml │ │ ├── ic_clear_input.xml │ │ ├── ic_clock.xml │ │ ├── ic_connected.xml │ │ ├── ic_convert.xml │ │ ├── ic_copy.xml │ │ ├── ic_copy_blue.xml │ │ ├── ic_copy_invitation_link.xml │ │ ├── ic_create_a_username.xml │ │ ├── ic_dash_blue_filled.xml │ │ ├── ic_dash_circle_filled.xml │ │ ├── ic_dash_d_black.xml │ │ ├── ic_dash_d_blue.xml │ │ ├── ic_dash_d_circle.xml │ │ ├── ic_dash_d_white.xml │ │ ├── ic_dash_info_blue_meduim.xml │ │ ├── ic_dash_logo_white.xml │ │ ├── ic_dash_pay.xml │ │ ├── ic_dash_saturated.xml │ │ ├── ic_default_flag.xml │ │ ├── ic_delete_backward.xml │ │ ├── ic_diners_club.xml │ │ ├── ic_disconnect.xml │ │ ├── ic_disconnected.xml │ │ ├── ic_error.xml │ │ ├── ic_expand_less.xml │ │ ├── ic_fancy_dialog_sample_icon.xml │ │ ├── ic_grey_200_arrow.xml │ │ ├── ic_hide.xml │ │ ├── ic_image_placeholder.xml │ │ ├── ic_info_blue.xml │ │ ├── ic_intermediate_privacy.xml │ │ ├── ic_left_right_arrows.xml │ │ ├── ic_light_gray_arrow_right.xml │ │ ├── ic_liquid.xml │ │ ├── ic_liquid_saturated.xml │ │ ├── ic_list_toggle.xml │ │ ├── ic_logo_coinbase.xml │ │ ├── ic_mastercard.xml │ │ ├── ic_menu_chevron.xml │ │ ├── ic_menu_row_arrow.xml │ │ ├── ic_network_unavailable.xml │ │ ├── ic_open_link.xml │ │ ├── ic_paypal.xml │ │ ├── ic_personalise_profile.xml │ │ ├── ic_popup_close.xml │ │ ├── ic_preview.xml │ │ ├── ic_radio_button_circle.xml │ │ ├── ic_radiobutton_off.xml │ │ ├── ic_radiobutton_on.xml │ │ ├── ic_red_curved_arrow.xml │ │ ├── ic_red_exclamation_mark_circle.xml │ │ ├── ic_relogin.xml │ │ ├── ic_retry.xml │ │ ├── ic_search.xml │ │ ├── ic_show.xml │ │ ├── ic_success_green.xml │ │ ├── ic_swap_blue.xml │ │ ├── ic_toast_copy.xml │ │ ├── ic_toast_error.xml │ │ ├── ic_toast_info.xml │ │ ├── ic_toast_info_warning.xml │ │ ├── ic_toast_no_wifi.xml │ │ ├── ic_transfer.xml │ │ ├── ic_transfer_dash.xml │ │ ├── ic_up_down.xml │ │ ├── ic_visa.xml │ │ ├── ic_wallet.xml │ │ ├── ic_warning.xml │ │ ├── ic_warning_grey_bgd.xml │ │ ├── ic_warning_white_bgd.xml │ │ ├── ic_warning_yellow_circle.xml │ │ ├── ic_welcome_to_dashpay.xml │ │ ├── ic_wifi_slash.xml │ │ ├── ic_x.xml │ │ ├── input.xml │ │ ├── input_error.xml │ │ ├── input_focused_layer.xml │ │ ├── input_unfocused_layer.xml │ │ ├── inverted_button.xml │ │ ├── light_grey_border_item.xml │ │ ├── list_divider.xml │ │ ├── medium_gray_button.xml │ │ ├── offset_dialog_background.xml │ │ ├── primary_button.xml │ │ ├── progress_horizontal.xml │ │ ├── qr_avatar_outline.xml │ │ ├── red_panel_background.xml │ │ ├── round_corner_bgd_white.xml │ │ ├── round_corner_grey_border.xml │ │ ├── round_corners_white_bg.xml │ │ ├── rounded_background.xml │ │ ├── rounded_ripple_background.xml │ │ ├── secondary_inverted_button.xml │ │ ├── segmented_picker_divider.xml │ │ ├── selectable_background_dark.xml │ │ ├── selectable_background_light.xml │ │ ├── selectable_background_light_blue.xml │ │ ├── selectable_rectangle_white.xml │ │ ├── selectable_rectangle_white_bottom_radius.xml │ │ ├── selectable_round_corners.xml │ │ ├── selectable_round_corners_border.xml │ │ ├── selectable_round_corners_dark.xml │ │ ├── selectable_round_corners_light_blue.xml │ │ ├── selectable_round_corners_white.xml │ │ ├── semi_blue_background_rounded.xml │ │ ├── tab_background.xml │ │ ├── tab_item_background_selected.xml │ │ ├── top_separator.xml │ │ ├── transparent_button_background.xml │ │ ├── transparent_button_golden_text.xml │ │ ├── transparent_button_text.xml │ │ ├── triangle_black_70.xml │ │ ├── white_background_rounded.xml │ │ ├── white_button_background_blue_border.xml │ │ ├── white_button_background_no_shadow.xml │ │ ├── white_button_background_outline.xml │ │ ├── white_button_blue_text.xml │ │ └── yellow_background_rounded.xml │ │ ├── font │ │ ├── inter.xml │ │ ├── inter_bold.ttf │ │ ├── inter_medium.ttf │ │ ├── inter_regular.ttf │ │ └── inter_semibold.ttf │ │ ├── layout │ │ ├── amount_view.xml │ │ ├── app_bar_general.xml │ │ ├── dialog_adaptive.xml │ │ ├── dialog_extra_action.xml │ │ ├── dialog_option_picker.xml │ │ ├── dialog_progress.xml │ │ ├── dialog_simple.xml │ │ ├── dialog_title.xml │ │ ├── fancy_alert_dialog.xml │ │ ├── fragment_enter_amount.xml │ │ ├── fragment_integration_portal.xml │ │ ├── fragment_webview.xml │ │ ├── inaccurate_balance.xml │ │ ├── network_unavailable_view.xml │ │ ├── numeric_keyboard_view.xml │ │ ├── payment_header_view.xml │ │ ├── picker_option_view.xml │ │ ├── radiobutton_row.xml │ │ ├── receive_info_view.xml │ │ ├── vertical_segmented_picker.xml │ │ ├── vertical_segmented_picker_option_view.xml │ │ └── view_payment_method.xml │ │ ├── menu │ │ └── paste_menu.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fil │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-he │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-id │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-nb │ │ └── strings.xml │ │ ├── values-night │ │ └── colors.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sq │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-sw │ │ └── strings.xml │ │ ├── values-sw700dp │ │ └── dimens.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-v28 │ │ └── styles.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-xhdpi │ │ └── dimens.xml │ │ ├── values-xxhdpi │ │ └── dimens.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values-zh │ │ └── strings.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── org │ └── dash │ └── wallet │ └── common │ ├── TransactionFilterTests.kt │ └── util │ └── CoinExtTest.kt ├── fastlane ├── Appfile ├── Fastfile ├── Pluginfile └── README.md ├── features └── exploredash │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ ├── schemas │ └── org.dash.wallet.features.exploredash.ExploreDatabase │ │ ├── 1.json │ │ ├── 2.json │ │ └── 4.json │ └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── dash │ │ │ └── wallet │ │ │ └── features │ │ │ └── exploredash │ │ │ ├── ExploreDatabase.kt │ │ │ ├── ExploreDatabaseMigrations.kt │ │ │ ├── ExploreSyncWorker.kt │ │ │ ├── data │ │ │ ├── dashspend │ │ │ │ ├── GiftCardProvider.kt │ │ │ │ ├── GiftCardProviderDao.kt │ │ │ │ ├── GiftCardProviderType.kt │ │ │ │ ├── GiftCardService.kt │ │ │ │ ├── ctx │ │ │ │ │ └── model │ │ │ │ │ │ ├── Barcode.kt │ │ │ │ │ │ ├── GetMerchantResponse.kt │ │ │ │ │ │ ├── GiftCardResponse.kt │ │ │ │ │ │ ├── LoginRequest.kt │ │ │ │ │ │ ├── PurchaseGiftCardRequest.kt │ │ │ │ │ │ ├── RefreshTokenRequest.kt │ │ │ │ │ │ ├── RefreshTokenResponse.kt │ │ │ │ │ │ └── VerifyEmailRequest.kt │ │ │ │ ├── model │ │ │ │ │ ├── GiftCardInfo.kt │ │ │ │ │ └── UpdatedMerchantDetails.kt │ │ │ │ └── piggycards │ │ │ │ │ └── model │ │ │ │ │ ├── ExchangeRateResult.kt │ │ │ │ │ ├── Location.kt │ │ │ │ │ ├── LoginRequest.kt │ │ │ │ │ ├── LoginResponse.kt │ │ │ │ │ ├── Merchant.kt │ │ │ │ │ ├── MerchantDetails.kt │ │ │ │ │ ├── OrderRequest.kt │ │ │ │ │ ├── OrderResponse.kt │ │ │ │ │ ├── OrderStatusResponse.kt │ │ │ │ │ ├── PiggyCardsApi.kt │ │ │ │ │ ├── SignupRequest.kt │ │ │ │ │ ├── SignupResponse.kt │ │ │ │ │ ├── VerifyOtpRequest.kt │ │ │ │ │ └── VerifyOtpResponse.kt │ │ │ └── explore │ │ │ │ ├── AtmDao.kt │ │ │ │ ├── BaseDao.kt │ │ │ │ ├── ExploreDataSource.kt │ │ │ │ ├── GiftCardDao.kt │ │ │ │ ├── MerchantDao.kt │ │ │ │ └── model │ │ │ │ ├── Atm.kt │ │ │ │ ├── AtmFTS.kt │ │ │ │ ├── GeoBounds.kt │ │ │ │ ├── Merchant.kt │ │ │ │ ├── MerchantFTS.kt │ │ │ │ ├── MerchantInfo.kt │ │ │ │ ├── SearchResult.kt │ │ │ │ └── SortOption.kt │ │ │ ├── di │ │ │ ├── ExploreDashModule.kt │ │ │ └── ExploreDatabaseModule.kt │ │ │ ├── network │ │ │ ├── PiggyCardsRemoteDataSource.kt │ │ │ ├── RemoteDataSource.kt │ │ │ ├── authenticator │ │ │ │ ├── PiggyCardsAuthenticator.kt │ │ │ │ └── TokenAuthenticator.kt │ │ │ ├── interceptor │ │ │ │ ├── ErrorHandlingInterceptor.kt │ │ │ │ ├── HeadersInterceptor.kt │ │ │ │ └── PiggyCardsHeadersInterceptor.kt │ │ │ └── service │ │ │ │ ├── ctxspend │ │ │ │ ├── CTXSpendApi.kt │ │ │ │ └── CTXSpendTokenApi.kt │ │ │ │ ├── piggycards │ │ │ │ ├── PiggyCardsApi.kt │ │ │ │ └── PiggyCardsTokenApi.kt │ │ │ │ └── stubs │ │ │ │ └── FakeDashSpendService.kt │ │ │ ├── repository │ │ │ ├── CTXSpendRepository.kt │ │ │ ├── DashSpendRepository.kt │ │ │ ├── DashSpendRepositoryFactory.kt │ │ │ ├── DataSyncStatusService.kt │ │ │ ├── ExploreDataSyncStatus.kt │ │ │ ├── ExploreRepository.kt │ │ │ └── PiggyCardsRepository.kt │ │ │ ├── services │ │ │ ├── Address.kt │ │ │ └── UserLocationState.kt │ │ │ ├── ui │ │ │ ├── ExploreTestNetFragment.kt │ │ │ ├── adapters │ │ │ │ ├── MerchantLocationsAdapter.kt │ │ │ │ ├── MerchantLocationsHeaderAdapter.kt │ │ │ │ ├── MerchantsAtmsResultAdapter.kt │ │ │ │ └── SearchHeaderAdapter.kt │ │ │ ├── bottomsheetbehavior │ │ │ │ └── ExploreMapBottomSheetBehavior.kt │ │ │ ├── dashspend │ │ │ │ ├── DashSpendUserAuthFragment.kt │ │ │ │ ├── DashSpendViewModel.kt │ │ │ │ ├── MerchantDenominations.kt │ │ │ │ ├── PurchaseGiftCardFragment.kt │ │ │ │ └── dialogs │ │ │ │ │ ├── DashSpendLoginInfoDialog.kt │ │ │ │ │ ├── DashSpendTermsDialog.kt │ │ │ │ │ ├── GiftCardDetailsDialog.kt │ │ │ │ │ ├── GiftCardDetailsViewModel.kt │ │ │ │ │ └── PurchaseGiftCardConfirmDialog.kt │ │ │ ├── explore │ │ │ │ ├── ExploreMapFragment.kt │ │ │ │ ├── ExploreViewModel.kt │ │ │ │ ├── ItemDetails.kt │ │ │ │ ├── SearchFragment.kt │ │ │ │ └── dialogs │ │ │ │ │ ├── ExploreDashInfoDialog.kt │ │ │ │ │ └── FiltersDialog.kt │ │ │ └── extensions │ │ │ │ ├── Const.kt │ │ │ │ ├── LocaleExt.kt │ │ │ │ └── LocationFragmentExt.kt │ │ │ └── utils │ │ │ ├── CTXSpendConfig.kt │ │ │ ├── CTXSpendConstants.kt │ │ │ ├── Delegates.kt │ │ │ ├── ExploreConfig.kt │ │ │ ├── PiggyCardsConfig.kt │ │ │ ├── PiggyCardsConstants.kt │ │ │ └── RoomConverters.kt │ └── res │ │ ├── drawable-hdpi │ │ ├── explore_image.png │ │ └── explore_wallet.png │ │ ├── drawable-xhdpi │ │ ├── explore_image.png │ │ └── explore_wallet.png │ │ ├── drawable-xxhdpi │ │ ├── explore_image.png │ │ └── explore_wallet.png │ │ ├── drawable │ │ ├── ic_atm.xml │ │ ├── ic_atm_marker.xml │ │ ├── ic_blue_circle.xml │ │ ├── ic_buy.xml │ │ ├── ic_call.xml │ │ ├── ic_circle_white.xml │ │ ├── ic_ctx_logo_blue.xml │ │ ├── ic_ctx_logo_small.xml │ │ ├── ic_current_location.xml │ │ ├── ic_dash.xml │ │ ├── ic_dash_inverted.xml │ │ ├── ic_dashspend_logo.xml │ │ ├── ic_deposit.xml │ │ ├── ic_direction.xml │ │ ├── ic_distance.xml │ │ ├── ic_explore_info_screen_dash_circle_filled.xml │ │ ├── ic_explore_info_screen_map_blue.xml │ │ ├── ic_explore_info_screen_power_blue.xml │ │ ├── ic_faucet.xml │ │ ├── ic_filter.xml │ │ ├── ic_filter_gift_card.xml │ │ ├── ic_gift_card.xml │ │ ├── ic_gift_card_black.xml │ │ ├── ic_gift_card_inverted.xml │ │ ├── ic_gift_card_rounded.xml │ │ ├── ic_gift_card_tx.xml │ │ ├── ic_info.xml │ │ ├── ic_instore_blue.xml │ │ ├── ic_link.xml │ │ ├── ic_location.xml │ │ ├── ic_map.xml │ │ ├── ic_merchant.xml │ │ ├── ic_online_blue.xml │ │ ├── ic_percentage.xml │ │ ├── ic_piggy_cards_small.xml │ │ ├── ic_piggycards_logo.xml │ │ ├── ic_self_checkout_blue.xml │ │ ├── ic_sell.xml │ │ ├── ic_show_all.xml │ │ ├── ic_small_back_arrow.xml │ │ ├── ic_staking.xml │ │ ├── ic_up.xml │ │ ├── primary_background_rounded.xml │ │ ├── sticky_button_gradient_bg.xml │ │ └── user_location_map_marker.xml │ │ ├── layout │ │ ├── atm_row.xml │ │ ├── buy_gift_card_description.xml │ │ ├── dialog_confirm_purchase_gift_card.xml │ │ ├── dialog_dash_spend_login_info.xml │ │ ├── dialog_dashspend_terms.xml │ │ ├── dialog_filters.xml │ │ ├── dialog_gift_card_details.xml │ │ ├── dialog_login.xml │ │ ├── explore_dash_main_info.xml │ │ ├── fragment_dash_spend_user_auth.xml │ │ ├── fragment_explore.xml │ │ ├── fragment_explore_testnet.xml │ │ ├── fragment_purchase_ctxspend_gift_card.xml │ │ ├── fragment_search.xml │ │ ├── manage_gps_view.xml │ │ ├── merchant_location_row.xml │ │ ├── merchant_locations_header.xml │ │ ├── merchant_row.xml │ │ └── search_header_view.xml │ │ ├── menu │ │ └── info_menu.xml │ │ ├── navigation │ │ └── nav_explore.xml │ │ ├── values-ar │ │ └── strings-explore-dash.xml │ │ ├── values-cs │ │ └── strings-explore-dash.xml │ │ ├── values-de │ │ └── strings-explore-dash.xml │ │ ├── values-el │ │ └── strings-explore-dash.xml │ │ ├── values-es │ │ └── strings-explore-dash.xml │ │ ├── values-fa │ │ └── strings-explore-dash.xml │ │ ├── values-fil │ │ └── strings-explore-dash.xml │ │ ├── values-fr │ │ └── strings-explore-dash.xml │ │ ├── values-id │ │ └── strings-explore-dash.xml │ │ ├── values-it │ │ └── strings-explore-dash.xml │ │ ├── values-ja │ │ └── strings-explore-dash.xml │ │ ├── values-ko │ │ └── strings-explore-dash.xml │ │ ├── values-nl │ │ └── strings-explore-dash.xml │ │ ├── values-pl │ │ └── strings-explore-dash.xml │ │ ├── values-pt │ │ └── strings-explore-dash.xml │ │ ├── values-ru │ │ └── strings-explore-dash.xml │ │ ├── values-sk │ │ └── strings-explore-dash.xml │ │ ├── values-th │ │ └── strings-explore-dash.xml │ │ ├── values-tr │ │ └── strings-explore-dash.xml │ │ ├── values-uk │ │ └── strings-explore-dash.xml │ │ ├── values-xhdpi │ │ └── dimens.xml │ │ ├── values-xxhdpi │ │ └── dimens.xml │ │ ├── values-zh-rTW │ │ └── strings-explore-dash.xml │ │ ├── values-zh │ │ └── strings-explore-dash.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings-explore-dash.xml │ │ └── styles.xml │ └── test │ └── java │ └── org │ └── dash │ └── wallet │ └── features │ └── exploredash │ ├── CTXSpendExceptionTest.kt │ ├── ExploreDatabaseTest.kt │ ├── ExploreViewModelTest.kt │ └── MerchantAtmDataSourceTest.kt ├── gradle.properties ├── gradle ├── google-services.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── integration-android ├── AUTHORS ├── COPYING ├── build.gradle └── src │ └── de │ └── schildbach │ └── wallet │ └── integration │ └── android │ └── BitcoinIntegration.java ├── integrations ├── coinbase │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── dash │ │ │ └── wallet │ │ │ └── integrations │ │ │ └── coinbase │ │ │ └── ExampleUnitTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── dash │ │ │ │ └── wallet │ │ │ │ └── integrations │ │ │ │ └── coinbase │ │ │ │ ├── CoinbaseConstants.kt │ │ │ │ ├── Mapper.kt │ │ │ │ ├── di │ │ │ │ └── CoinBaseModule.kt │ │ │ │ ├── model │ │ │ │ ├── AccountsResponse.kt │ │ │ │ ├── AddressesResponse.kt │ │ │ │ ├── BaseIdForUSDModel.kt │ │ │ │ ├── CoinBaseAccountAddressResponse.kt │ │ │ │ ├── CoinBaseExchangeRate.kt │ │ │ │ ├── CoinBaseExchangeRates.kt │ │ │ │ ├── CoinBaseUserAccountInfo.kt │ │ │ │ ├── CoinbaseErrorResponse.kt │ │ │ │ ├── CoinbaseInfraModels.kt │ │ │ │ ├── CoinbasePaymentMethod.kt │ │ │ │ ├── DepositRequest.kt │ │ │ │ ├── DepositResponse.kt │ │ │ │ ├── PaymentMethods.kt │ │ │ │ ├── PlaceOrderParams.kt │ │ │ │ ├── PlaceOrderResponse.kt │ │ │ │ ├── ProductsResponse.kt │ │ │ │ ├── SendTransactionToWallet.kt │ │ │ │ ├── SwapTradeResponse.kt │ │ │ │ ├── TokenResponse.kt │ │ │ │ ├── TradesRequest.kt │ │ │ │ └── UserAuthorizationInfoResponse.kt │ │ │ │ ├── network │ │ │ │ └── RemoteDataSource.kt │ │ │ │ ├── repository │ │ │ │ ├── CoinBaseRepository.kt │ │ │ │ └── remote │ │ │ │ │ ├── CustomCacheInterceptor.kt │ │ │ │ │ ├── HeadersInterceptor.kt │ │ │ │ │ └── TokenAuthenticator.kt │ │ │ │ ├── service │ │ │ │ ├── CoinBaseAuthApi.kt │ │ │ │ ├── CoinBaseClientConstants.kt │ │ │ │ ├── CoinBaseServicesApi.kt │ │ │ │ └── CoinBaseTokenRefreshApi.kt │ │ │ │ ├── ui │ │ │ │ ├── CoinbaseBuyDashFragment.kt │ │ │ │ ├── CoinbaseConversionPreviewFragment.kt │ │ │ │ ├── CoinbaseConvertCryptoFragment.kt │ │ │ │ ├── CoinbaseOrderReviewFragment.kt │ │ │ │ ├── CoinbaseServicesFragment.kt │ │ │ │ ├── EnterAmountToTransferFragment.kt │ │ │ │ ├── EnterTwoFaCodeFragment.kt │ │ │ │ ├── TransferDashFragment.kt │ │ │ │ ├── convert_currency │ │ │ │ │ ├── ConvertView.kt │ │ │ │ │ ├── ConvertViewFragment.kt │ │ │ │ │ ├── CryptoConvertItem.kt │ │ │ │ │ ├── TransferView.kt │ │ │ │ │ └── model │ │ │ │ │ │ ├── BaseIdForFiatData.kt │ │ │ │ │ │ ├── PaymentMethodsUiState.kt │ │ │ │ │ │ ├── ServiceWallet.kt │ │ │ │ │ │ ├── SwapRequest.kt │ │ │ │ │ │ └── SwapValueErrorType.kt │ │ │ │ └── dialogs │ │ │ │ │ ├── CoinBaseResultDialog.kt │ │ │ │ │ └── crypto_wallets │ │ │ │ │ ├── CryptoWalletsDialog.kt │ │ │ │ │ └── CryptoWalletsDialogViewModel.kt │ │ │ │ ├── utils │ │ │ │ └── CoinbaseConfig.kt │ │ │ │ └── viewmodels │ │ │ │ ├── CoinbaseBuyDashViewModel.kt │ │ │ │ ├── CoinbaseConversionPreviewViewModel.kt │ │ │ │ ├── CoinbaseConvertCryptoViewModel.kt │ │ │ │ ├── CoinbaseServicesViewModel.kt │ │ │ │ ├── CoinbaseViewModel.kt │ │ │ │ ├── ConvertViewViewModel.kt │ │ │ │ ├── Delegate.kt │ │ │ │ ├── EnterAmountToTransferViewModel.kt │ │ │ │ ├── EnterTwoFaCodeViewModel.kt │ │ │ │ └── TransferDashViewModel.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_coinbase.xml │ │ │ ├── ic_coinbase_fee.xml │ │ │ ├── ic_coinbase_full.xml │ │ │ ├── ic_coinbase_letter.xml │ │ │ ├── ic_coinbase_saturated.xml │ │ │ ├── ic_grey_buy_swap.xml │ │ │ └── ic_red_curved_arrow.xml │ │ │ ├── layout │ │ │ ├── app_bar_with_icon.xml │ │ │ ├── authorization_limit_banner.xml │ │ │ ├── content_conversion_preview_coinbase.xml │ │ │ ├── content_review_buy_order_coinbase.xml │ │ │ ├── content_review_buy_order_dash_amount.xml │ │ │ ├── convert_view.xml │ │ │ ├── dialog_coinbase_error.xml │ │ │ ├── dialog_coinbase_result.xml │ │ │ ├── dialog_withdrawal_limit_info.xml │ │ │ ├── enter_amount_to_transfer_fragment.xml │ │ │ ├── enter_two_fa_code_fragment.xml │ │ │ ├── fragment_coinbase_buy_dash.xml │ │ │ ├── fragment_coinbase_conversion_preview.xml │ │ │ ├── fragment_coinbase_convert_crypto.xml │ │ │ ├── fragment_coinbase_order_review.xml │ │ │ ├── fragment_convert_currency.xml │ │ │ ├── item_cyrpto_convert.xml │ │ │ ├── keyboard_header_view.xml │ │ │ └── transfer_dash_fragment.xml │ │ │ ├── navigation │ │ │ └── nav_coinbase.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fil │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-id │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-xhdpi │ │ │ └── dimens.xml │ │ │ ├── values-xxhdpi │ │ │ └── dimens.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zh │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── dash │ │ │ └── wallet │ │ │ └── integrations │ │ │ └── coinbase │ │ │ ├── CoinBaseRepositoryTest.kt │ │ │ └── TestUtils.kt │ │ └── resources │ │ ├── payment_methods.json │ │ ├── place_buy_order.json │ │ ├── send_funds_to_wallet.json │ │ └── user_account.json ├── crowdnode │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── dash │ │ │ │ └── wallet │ │ │ │ └── integrations │ │ │ │ └── crowdnode │ │ │ │ ├── api │ │ │ │ ├── CrowdNodeApi.kt │ │ │ │ ├── CrowdNodeBlockchainApi.kt │ │ │ │ ├── CrowdNodeConfirmationTxHandler.kt │ │ │ │ ├── CrowdNodeWebApi.kt │ │ │ │ ├── CrowdNodeWorker.kt │ │ │ │ └── RemoteDataSource.kt │ │ │ │ ├── di │ │ │ │ └── CrowdNodeModule.kt │ │ │ │ ├── model │ │ │ │ ├── AddressStatus.kt │ │ │ │ ├── ApiCode.kt │ │ │ │ ├── ApiStatuses.kt │ │ │ │ ├── CrowdNodeBalance.kt │ │ │ │ ├── CrowdNodeFeeInfo.kt │ │ │ │ ├── CrowdNodeIsAddressInUse.kt │ │ │ │ ├── CrowdNodeTx.kt │ │ │ │ ├── IsAddressInUse.kt │ │ │ │ ├── IsDefaultEmail.kt │ │ │ │ ├── MessageStatus.kt │ │ │ │ └── WithdrawalLimit.kt │ │ │ │ ├── transactions │ │ │ │ ├── CrowdNodeAcceptTermsResponse.kt │ │ │ │ ├── CrowdNodeAcceptTermsTx.kt │ │ │ │ ├── CrowdNodeDepositReceivedResponse.kt │ │ │ │ ├── CrowdNodeDepositTx.kt │ │ │ │ ├── CrowdNodeErrorResponse.kt │ │ │ │ ├── CrowdNodeSignUpTx.kt │ │ │ │ ├── CrowdNodeTopUpTx.kt │ │ │ │ ├── CrowdNodeWelcomeToApiResponse.kt │ │ │ │ ├── CrowdNodeWithdrawalDeniedResponse.kt │ │ │ │ ├── CrowdNodeWithdrawalQueueResponse.kt │ │ │ │ ├── CrowdNodeWithdrawalReceivedTx.kt │ │ │ │ ├── FullCrowdNodeSignUpTxSet.kt │ │ │ │ ├── FullCrowdNodeSignUpTxSetFactory.kt │ │ │ │ ├── PossibleAcceptTermsResponse.kt │ │ │ │ └── PossibleWelcomeResponse.kt │ │ │ │ ├── ui │ │ │ │ ├── CrowdNodeViewModel.kt │ │ │ │ ├── ResultFragment.kt │ │ │ │ ├── dialogs │ │ │ │ │ ├── ConfirmationDialog.kt │ │ │ │ │ ├── OnlineAccountDetailsDialog.kt │ │ │ │ │ ├── QRDialog.kt │ │ │ │ │ ├── StakingDialog.kt │ │ │ │ │ └── WithdrawalLimitsInfoDialog.kt │ │ │ │ ├── entry_point │ │ │ │ │ ├── EntryPointFragment.kt │ │ │ │ │ ├── FirstTimeInfoFragment.kt │ │ │ │ │ └── NewAccountFragment.kt │ │ │ │ ├── online │ │ │ │ │ ├── OnlineAccountEmailFragment.kt │ │ │ │ │ ├── OnlineAccountInfoFragment.kt │ │ │ │ │ └── OnlineSignUpFragment.kt │ │ │ │ └── portal │ │ │ │ │ ├── PortalFragment.kt │ │ │ │ │ └── TransferFragment.kt │ │ │ │ └── utils │ │ │ │ ├── CrowdNodeBalanceCondition.kt │ │ │ │ ├── CrowdNodeConfig.kt │ │ │ │ └── CrowdNodeConstants.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── staking_image.png │ │ │ ├── drawable-xhdpi │ │ │ └── staking_image.png │ │ │ ├── drawable-xxhdpi │ │ │ └── staking_image.png │ │ │ ├── drawable │ │ │ ├── ic_account.xml │ │ │ ├── ic_account_existing.xml │ │ │ ├── ic_account_new.xml │ │ │ ├── ic_bolt.xml │ │ │ ├── ic_bullet_error.xml │ │ │ ├── ic_crowdnode_logo.xml │ │ │ ├── ic_dash.xml │ │ │ ├── ic_deposit_disabled.xml │ │ │ ├── ic_deposit_enabled.xml │ │ │ ├── ic_dialog_arrows.xml │ │ │ ├── ic_document.xml │ │ │ ├── ic_hands_sparkles.xml │ │ │ ├── ic_info_circle.xml │ │ │ ├── ic_info_filled.xml │ │ │ ├── ic_info_white.xml │ │ │ ├── ic_join_the_pool.xml │ │ │ ├── ic_lifebuoy.xml │ │ │ ├── ic_link_account.xml │ │ │ ├── ic_lock_circle.xml │ │ │ ├── ic_new_account.xml │ │ │ ├── ic_notify.xml │ │ │ ├── ic_open_link.xml │ │ │ ├── ic_options.xml │ │ │ ├── ic_qr.xml │ │ │ ├── ic_report.xml │ │ │ ├── ic_share.xml │ │ │ ├── ic_staking_first_deposit.xml │ │ │ ├── ic_staking_receiving_rewards.xml │ │ │ ├── ic_steaking_leaving_pool.xml │ │ │ ├── ic_warning_filled.xml │ │ │ └── ic_withdraw_disabled.xml │ │ │ ├── layout │ │ │ ├── dialog_qr.xml │ │ │ ├── dialog_staking.xml │ │ │ ├── dialog_withdrawal_limits.xml │ │ │ ├── fragment_confirmation.xml │ │ │ ├── fragment_entry_point.xml │ │ │ ├── fragment_first_time_info.xml │ │ │ ├── fragment_new_account.xml │ │ │ ├── fragment_online_account_details.xml │ │ │ ├── fragment_online_account_email.xml │ │ │ ├── fragment_online_account_info.xml │ │ │ ├── fragment_portal.xml │ │ │ ├── fragment_result.xml │ │ │ ├── fragment_transfer.xml │ │ │ ├── view_keyboard_deposit_header.xml │ │ │ ├── view_keyboard_header.xml │ │ │ └── view_keyboard_withdraw_header.xml │ │ │ ├── menu │ │ │ └── menu_info.xml │ │ │ ├── navigation │ │ │ └── nav_crowdnode.xml │ │ │ ├── values-ar │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-de │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-el │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-es │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-fa │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-fil │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-fr │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-id │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-it │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-ja │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-ko │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-nl │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-pl │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-pt │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-ru │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-sk │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-th │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-tr │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-uk │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings-crowdnode.xml │ │ │ ├── values-zh │ │ │ └── strings-crowdnode.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings-crowdnode.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── dash │ │ └── wallet │ │ └── integrations │ │ └── crowdnode │ │ ├── CrowdNodeApiAggregatorTest.kt │ │ ├── CrowdNodeBalanceConditionTest.kt │ │ ├── CrowdNodeTxFilterTest.kt │ │ └── CrowdNodeViewModelTest.kt └── uphold │ ├── .gitignore │ ├── ERRORS.md │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── dash │ │ │ └── wallet │ │ │ └── integrations │ │ │ └── uphold │ │ │ ├── api │ │ │ ├── RemoteDataSource.kt │ │ │ ├── TopperClient.kt │ │ │ ├── UpholdClient.java │ │ │ ├── UpholdClientExt.kt │ │ │ └── UpholdService.kt │ │ │ ├── currencyModel │ │ │ └── UpholdCurrencyResponse.kt │ │ │ ├── data │ │ │ ├── ForbiddenError.kt │ │ │ ├── RequirementsCheckResult.kt │ │ │ ├── SupportedTopperAssets.kt │ │ │ ├── SupportedTopperPaymentMethods.kt │ │ │ ├── UpholdAccessToken.java │ │ │ ├── UpholdAddress.java │ │ │ ├── UpholdApiException.java │ │ │ ├── UpholdBankAccount.java │ │ │ ├── UpholdCapability.kt │ │ │ ├── UpholdCard.java │ │ │ ├── UpholdCardAddress.kt │ │ │ ├── UpholdConstants.kt │ │ │ ├── UpholdCryptoCardAddress.java │ │ │ ├── UpholdException.java │ │ │ └── UpholdTransaction.java │ │ │ └── ui │ │ │ ├── UpholdOtpDialog.java │ │ │ ├── UpholdPortalFragment.kt │ │ │ ├── UpholdTransferActivity.kt │ │ │ ├── UpholdViewModel.kt │ │ │ └── UpholdWithdrawalHelper.java │ └── res │ │ ├── drawable-xhdpi │ │ └── logout.png │ │ ├── drawable │ │ ├── ic_dash_d_white_bottom.xml │ │ ├── ic_uphold.xml │ │ ├── ic_uphold_saturated.xml │ │ └── logo_topper.xml │ │ ├── layout │ │ ├── activity_uphold_tranfser.xml │ │ ├── uphold_logout_confirm.xml │ │ ├── uphold_otp_dialog.xml │ │ └── uphold_withdrawal_dialog.xml │ │ ├── values-ar │ │ └── strings-uphold.xml │ │ ├── values-bg │ │ └── strings-uphold.xml │ │ ├── values-cs │ │ └── strings-uphold.xml │ │ ├── values-de │ │ └── strings-uphold.xml │ │ ├── values-el │ │ └── strings-uphold.xml │ │ ├── values-es │ │ └── strings-uphold.xml │ │ ├── values-fa │ │ └── strings-uphold.xml │ │ ├── values-fil │ │ └── strings-uphold.xml │ │ ├── values-fr │ │ └── strings-uphold.xml │ │ ├── values-hu │ │ └── strings-uphold.xml │ │ ├── values-id │ │ └── strings-uphold.xml │ │ ├── values-it │ │ └── strings-uphold.xml │ │ ├── values-ja │ │ └── strings-uphold.xml │ │ ├── values-ko │ │ └── strings-uphold.xml │ │ ├── values-nl │ │ └── strings-uphold.xml │ │ ├── values-pl │ │ └── strings-uphold.xml │ │ ├── values-pt │ │ └── strings-uphold.xml │ │ ├── values-ro │ │ └── strings-uphold.xml │ │ ├── values-ru │ │ └── strings-uphold.xml │ │ ├── values-sk │ │ └── strings-uphold.xml │ │ ├── values-th │ │ └── strings-uphold.xml │ │ ├── values-tr │ │ └── strings-uphold.xml │ │ ├── values-uk │ │ └── strings-uphold.xml │ │ ├── values-vi │ │ └── strings-uphold.xml │ │ ├── values-zh-rTW │ │ └── strings-uphold.xml │ │ ├── values-zh │ │ └── strings-uphold.xml │ │ └── values │ │ ├── strings-uphold.xml │ │ └── styles.xml │ └── test │ ├── java │ └── org │ │ └── dash │ │ └── wallet │ │ └── integrations │ │ └── uphold │ │ ├── TopperClientTest.kt │ │ ├── UpholdClientTest.kt │ │ └── UpholdErrorTest.kt │ └── resources │ └── org │ └── dash │ └── wallet │ └── integrations │ └── uphold │ └── payment-methods.json ├── market ├── en │ ├── home-en.png │ ├── lock-screen-en.png │ ├── receive-en.png │ ├── security-en.png │ └── send-en.png ├── es │ ├── home-es.png │ ├── lock-screen-es.png │ ├── receive-es.png │ ├── security-es.png │ └── send-es.png ├── market-app-icon.png ├── market-description-ar.txt ├── market-description-bg.txt ├── market-description-ca.txt ├── market-description-cs.txt ├── market-description-da.txt ├── market-description-de.txt ├── market-description-el.txt ├── market-description-eo.txt ├── market-description-es.txt ├── market-description-fa.txt ├── market-description-fi.txt ├── market-description-fil.txt ├── market-description-fr.txt ├── market-description-he.txt ├── market-description-hi.txt ├── market-description-hr.txt ├── market-description-hu.txt ├── market-description-id.txt ├── market-description-it.txt ├── market-description-iw.txt ├── market-description-ja.txt ├── market-description-ko.txt ├── market-description-mk.txt ├── market-description-nb.txt ├── market-description-nl.txt ├── market-description-pl.txt ├── market-description-pt.txt ├── market-description-ro.txt ├── market-description-ru.txt ├── market-description-sk.txt ├── market-description-sl.txt ├── market-description-sq.txt ├── market-description-sr.txt ├── market-description-sv.txt ├── market-description-th.txt ├── market-description-tr.txt ├── market-description-uk.txt ├── market-description-vi.txt ├── market-description-zh-TW.txt ├── market-description-zh.txt ├── market-description.txt ├── market-feature-graphic.png ├── market-promo-text-ar.txt ├── market-promo-text-bg.txt ├── market-promo-text-ca.txt ├── market-promo-text-cs.txt ├── market-promo-text-da.txt ├── market-promo-text-de.txt ├── market-promo-text-el.txt ├── market-promo-text-eo.txt ├── market-promo-text-es.txt ├── market-promo-text-fa.txt ├── market-promo-text-fi.txt ├── market-promo-text-fil.txt ├── market-promo-text-fr.txt ├── market-promo-text-he.txt ├── market-promo-text-hi.txt ├── market-promo-text-hr.txt ├── market-promo-text-hu.txt ├── market-promo-text-id.txt ├── market-promo-text-it.txt ├── market-promo-text-iw.txt ├── market-promo-text-ja.txt ├── market-promo-text-ko.txt ├── market-promo-text-mk.txt ├── market-promo-text-nb.txt ├── market-promo-text-nl.txt ├── market-promo-text-pl.txt ├── market-promo-text-pt.txt ├── market-promo-text-ro.txt ├── market-promo-text-ru.txt ├── market-promo-text-sk.txt ├── market-promo-text-sl.txt ├── market-promo-text-sq.txt ├── market-promo-text-sr.txt ├── market-promo-text-sv.txt ├── market-promo-text-th.txt ├── market-promo-text-tr.txt ├── market-promo-text-uk.txt ├── market-promo-text-vi.txt ├── market-promo-text-zh-TW.txt ├── market-promo-text-zh.txt └── market-promo-text.txt ├── robo-script-7.1-and-above.json ├── sample-integration-android ├── AUTHORS ├── AndroidManifest.xml ├── COPYING ├── build.gradle ├── project.properties ├── res │ └── layout │ │ └── sample_activity.xml └── src │ └── de │ └── schildbach │ └── wallet │ └── integration │ └── sample │ └── SampleActivity.java ├── settings.gradle ├── translations ├── .gitignore ├── .tx │ └── config ├── README.md ├── compare-strings.py └── download-strings.py └── wallet ├── .gitignore ├── AUTHORS ├── AndroidManifest.xml ├── CHANGES ├── COPYING ├── README.md ├── README.recover.md ├── README.specs.md ├── androidTest ├── assets │ └── test_wallet.wallet ├── de │ └── schildbach │ │ └── wallet │ │ ├── database │ │ └── DatabaseMigrationTest.kt │ │ ├── performance │ │ ├── README.md │ │ └── WalletSavePerformanceTest.kt │ │ ├── security │ │ └── SecurityGuardMultiThreadingTest.kt │ │ ├── transactions │ │ └── TransactionExportTest.kt │ │ └── ui │ │ └── dashpay │ │ └── utils │ │ └── CocoaImageDHashTest.kt └── testNet3 │ └── res │ └── values │ └── strings.xml ├── assets ├── bip39-wordlists │ ├── chinese_simplified.txt │ ├── chinese_traditional.txt │ ├── czech.txt │ ├── english.txt │ ├── french.txt │ ├── italian.txt │ ├── japanese.txt │ ├── korean.txt │ └── spanish.txt ├── checkpoints-testnet.txt ├── checkpoints.txt ├── electrum-servers-testnet.txt ├── electrum-servers.txt ├── explore │ └── .keep ├── fees-testnet.txt ├── fees.txt ├── mnlistdiff.dat └── qrinfo.dat ├── build.gradle ├── devnet └── res │ ├── drawable-xhdpi │ ├── currency_symbol_dash.png │ ├── currency_symbol_mdash.png │ └── currency_symbol_udash.png │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ └── values │ ├── ic_launcher_background.xml │ ├── strings-extra.xml │ └── values.xml ├── graphics ├── ic_app_color_48dp-mdpi.svg ├── ic_app_color_48dp_beta.svg ├── ic_app_color_48dp_testnet.svg ├── mipmap │ └── ic_app_color_48dp-mdpi.svg └── stat_notify_received-xhdpi.svg ├── ic_launcher-web.png ├── proguard.cfg ├── proguardTest-rules.txt ├── project.properties ├── res ├── anim │ ├── fade_in.xml │ ├── fade_out.xml │ ├── fragment_in.xml │ ├── fragment_out.xml │ ├── fragment_slide_down.xml │ ├── fragment_slide_up.xml │ ├── shake.xml │ ├── shake_pin.xml │ ├── slide_in_bottom.xml │ ├── slide_in_left.xml │ ├── slide_in_top.xml │ ├── slide_out_bottom.xml │ └── slide_out_right.xml ├── color │ ├── dialog_button_text.xml │ ├── round_button_text.xml │ └── tab_title_color.xml ├── drawable-anydpi │ ├── ic_content_copy_white_24dp.xml │ ├── ic_content_paste_white_24dp.xml │ ├── ic_create_white_24dp.xml │ ├── ic_delete_white_24dp.xml │ ├── ic_photo_camera_white_24dp.xml │ ├── ic_qrcode_white_24dp.xml │ ├── ic_refresh_white_24dp.xml │ ├── ic_send_white_24dp.xml │ └── stat_notify_bluetooth_24dp.xml ├── drawable-hdpi │ ├── appwidget_dark_bg.9.png │ ├── appwidget_dark_bg_focused.9.png │ ├── appwidget_dark_bg_pressed.9.png │ ├── appwidget_inner_focused_c.9.png │ ├── appwidget_inner_focused_l.9.png │ ├── appwidget_inner_focused_r.9.png │ ├── appwidget_inner_pressed_c.9.png │ ├── appwidget_inner_pressed_l.9.png │ ├── appwidget_inner_pressed_r.9.png │ ├── ic_zenledger_dash.png │ ├── splash_activity_background.png │ ├── splash_activity_slogan.png │ ├── stat_sys_peers_0.png │ ├── stat_sys_peers_1.png │ ├── stat_sys_peers_2.png │ ├── stat_sys_peers_3.png │ └── stat_sys_peers_4.png ├── drawable-mdpi │ └── ic_zenledger_dash.png ├── drawable-v21 │ ├── selectable_item_background.xml │ ├── selectable_round_corners_border.xml │ └── selectable_round_corners_border_light.xml ├── drawable-xhdpi │ ├── app_icon.png │ ├── appwidget_dark_bg.9.png │ ├── appwidget_dark_bg_focused.9.png │ ├── appwidget_dark_bg_pressed.9.png │ ├── appwidget_inner_focused_c.9.png │ ├── appwidget_inner_focused_l.9.png │ ├── appwidget_inner_focused_r.9.png │ ├── appwidget_inner_pressed_c.9.png │ ├── appwidget_inner_pressed_l.9.png │ ├── appwidget_inner_pressed_r.9.png │ ├── ic_zenledger_dash.png │ ├── identity_processing_0.png │ ├── identity_processing_1.png │ ├── identity_processing_2.png │ ├── identity_processing_3.png │ ├── identity_processing_4.png │ ├── identity_processing_5.png │ ├── identity_processing_6.png │ ├── splash_activity_background.png │ ├── splash_activity_slogan.png │ ├── user1.png │ ├── user2.png │ ├── user3.png │ ├── user4.png │ ├── user5.png │ └── widget_preview.png ├── drawable-xxhdpi │ ├── ic_zenledger_dash.png │ ├── splash_activity_background.png │ ├── splash_activity_slogan.png │ ├── welcome_screenshot_1.png │ ├── welcome_screenshot_2.png │ └── welcome_screenshot_3.png ├── drawable-xxxhdpi │ └── ic_zenledger_dash.png ├── drawable │ ├── appwidget_button_center.xml │ ├── appwidget_button_left.xml │ ├── appwidget_button_right.xml │ ├── appwidget_dark_bg_clickable.xml │ ├── appwidget_divider.xml │ ├── blue_outline_button_bg.xml │ ├── bottom_round_corners_white_bg.xml │ ├── check_animated.xml │ ├── custom_pin_preview_background.xml │ ├── custom_pin_preview_background_gray.xml │ ├── custom_pin_preview_item_dot.xml │ ├── divider_field.xml │ ├── ic_accept_invite_confirm.xml │ ├── ic_accept_invite_slide_1.xml │ ├── ic_accept_invite_slide_2.xml │ ├── ic_accept_invite_slide_3.xml │ ├── ic_activity_info.xml │ ├── ic_add_contact.xml │ ├── ic_add_contact_white.xml │ ├── ic_add_new_contact.xml │ ├── ic_add_new_contact_dark.xml │ ├── ic_add_stranger.xml │ ├── ic_address.xml │ ├── ic_arrow_down.xml │ ├── ic_arrow_up.xml │ ├── ic_avatar.xml │ ├── ic_backup_info.xml │ ├── ic_battery.xml │ ├── ic_battery_menu.xml │ ├── ic_block_home_indicator.xml │ ├── ic_blockchair_logo.xml │ ├── ic_blue_bolt.xml │ ├── ic_bolt_border.xml │ ├── ic_calculator.xml │ ├── ic_camera_frame.xml │ ├── ic_cant_afford_invitation.xml │ ├── ic_check_circle.xml │ ├── ic_check_circle_empty.xml │ ├── ic_check_circle_green.xml │ ├── ic_check_white_24dp.xml │ ├── ic_circle_down_arrow_green.xml │ ├── ic_circle_forward_arrow.xml │ ├── ic_circle_left_right_arrow_gray.xml │ ├── ic_circle_up_arrow_blue.xml │ ├── ic_claimed_invite.xml │ ├── ic_close_blue.xml │ ├── ic_close_notification_alert.xml │ ├── ic_close_white_24dp.xml │ ├── ic_coinjoin.xml │ ├── ic_coinjoin_big.xml │ ├── ic_coinjoin_mixing_group.xml │ ├── ic_contact.xml │ ├── ic_contact_added.xml │ ├── ic_contact_support.xml │ ├── ic_contacts.xml │ ├── ic_contacts_active.xml │ ├── ic_contacts_default.xml │ ├── ic_contacts_focused.xml │ ├── ic_create_new_invite_icon.xml │ ├── ic_credits.xml │ ├── ic_dash_d_gray.xml │ ├── ic_dash_round.xml │ ├── ic_discover.xml │ ├── ic_discover_active.xml │ ├── ic_discover_default.xml │ ├── ic_does_not_store.xml │ ├── ic_edit_profile_picture.xml │ ├── ic_error.xml │ ├── ic_error_circle.xml │ ├── ic_error_creating_invitation.xml │ ├── ic_explore.xml │ ├── ic_external_url.xml │ ├── ic_eyes.xml │ ├── ic_face_sad.xml │ ├── ic_file.xml │ ├── ic_filter_all.xml │ ├── ic_filter_icon.xml │ ├── ic_filter_received.xml │ ├── ic_filter_sent.xml │ ├── ic_fingerprint.xml │ ├── ic_fingerprint_white.xml │ ├── ic_forgot_pin.xml │ ├── ic_google_drive.xml │ ├── ic_gravatar.xml │ ├── ic_gray_next_icon.xml │ ├── ic_hide.xml │ ├── ic_home.xml │ ├── ic_home_active.xml │ ├── ic_home_default.xml │ ├── ic_hourglass.xml │ ├── ic_hourglass_frame_1.xml │ ├── ic_hourglass_frame_2.xml │ ├── ic_hourglass_frame_3.xml │ ├── ic_hourglass_frame_4.xml │ ├── ic_hourglass_frame_5.xml │ ├── ic_hourglass_frame_6.xml │ ├── ic_hourglass_frame_7.xml │ ├── ic_hourglass_frame_8.xml │ ├── ic_ignore_x.xml │ ├── ic_imgur_logo.xml │ ├── ic_import.xml │ ├── ic_info_circle_filled_gray.xml │ ├── ic_internal.xml │ ├── ic_invalid_invite.xml │ ├── ic_invitation.xml │ ├── ic_invitation_contact_request_error.xml │ ├── ic_invitation_contact_request_sent.xml │ ├── ic_invite_close_disclimer_cross.xml │ ├── ic_invite_created_back.xml │ ├── ic_invite_created_front.xml │ ├── ic_invite_envelope.xml │ ├── ic_invite_error_back.xml │ ├── ic_invite_error_front.xml │ ├── ic_invite_friends.xml │ ├── ic_join_dashpay.xml │ ├── ic_join_dashpay_red.xml │ ├── ic_link.xml │ ├── ic_local_currency.xml │ ├── ic_lock_dash.xml │ ├── ic_lock_login_with_fingerprint.xml │ ├── ic_lock_login_with_pin.xml │ ├── ic_lock_quick_receive.xml │ ├── ic_lock_scan_to_pay.xml │ ├── ic_mail_icon.xml │ ├── ic_menu_buy_sell_dash.xml │ ├── ic_menu_invite.xml │ ├── ic_menu_security.xml │ ├── ic_menu_settings.xml │ ├── ic_menu_tools.xml │ ├── ic_mixing.xml │ ├── ic_mixing_icon.xml │ ├── ic_more.xml │ ├── ic_more_active.xml │ ├── ic_more_default.xml │ ├── ic_network_unavailable.xml │ ├── ic_new_notifications.xml │ ├── ic_no_restore.xml │ ├── ic_not_valid_qr_code.xml │ ├── ic_notification.xml │ ├── ic_notification_bell.xml │ ├── ic_notification_new_empty.xml │ ├── ic_notifications.xml │ ├── ic_notifications_active.xml │ ├── ic_notifications_focused.xml │ ├── ic_onboard_from_invite_1.xml │ ├── ic_onboard_from_invite_2.xml │ ├── ic_onboard_from_invite_2_disabled.xml │ ├── ic_onboard_from_invite_3.xml │ ├── ic_onboard_from_invite_3_disabled.xml │ ├── ic_passphrase.xml │ ├── ic_pay_copied_address.xml │ ├── ic_payments.xml │ ├── ic_payments_active.xml │ ├── ic_payments_cend_to_copied.xml │ ├── ic_payments_default.xml │ ├── ic_payments_send_by_qr.xml │ ├── ic_payments_send_to_contact.xml │ ├── ic_pencil.xml │ ├── ic_pencil_slash.xml │ ├── ic_pending_contact_request.xml │ ├── ic_pending_invite.xml │ ├── ic_pin_item_gray.xml │ ├── ic_pin_item_inactive_gray.xml │ ├── ic_pin_item_inactive_white.xml │ ├── ic_pin_item_more.xml │ ├── ic_pin_item_more_inactive.xml │ ├── ic_please_wait.xml │ ├── ic_please_wait_0.xml │ ├── ic_please_wait_1.xml │ ├── ic_please_wait_2.xml │ ├── ic_please_wait_3.xml │ ├── ic_please_wait_arrows.xml │ ├── ic_plus_icon.xml │ ├── ic_profile_icon.xml │ ├── ic_profile_qr.xml │ ├── ic_protected.xml │ ├── ic_rate.xml │ ├── ic_red_circle_minus.xml │ ├── ic_request_not_approved.xml │ ├── ic_rescan_blockchain.xml │ ├── ic_retry.xml │ ├── ic_retry_simple.xml │ ├── ic_scan_qr.xml │ ├── ic_search.xml │ ├── ic_search_exchange_rates.xml │ ├── ic_secured_by.xml │ ├── ic_select_image.xml │ ├── ic_send_to_address.xml │ ├── ic_shortcut_add.xml │ ├── ic_shortcut_atm.xml │ ├── ic_shortcut_bar_explore.xml │ ├── ic_shortcut_buy_sell_dash.xml │ ├── ic_shortcut_import_key.xml │ ├── ic_shortcut_pay_to_address.xml │ ├── ic_shortcut_pay_to_contact.xml │ ├── ic_shortcut_scan_to_pay.xml │ ├── ic_shortcut_secure_now.xml │ ├── ic_shortcut_staking.xml │ ├── ic_shortcuts.xml │ ├── ic_show_balance.xml │ ├── ic_shuffle.xml │ ├── ic_take_picture.xml │ ├── ic_thumb_down_red.xml │ ├── ic_thumb_down_white.xml │ ├── ic_thumb_up_blue.xml │ ├── ic_thumb_up_fill.xml │ ├── ic_thumb_up_white.xml │ ├── ic_toggle_arrows.xml │ ├── ic_transaction_failed.xml │ ├── ic_transaction_filter.xml │ ├── ic_transaction_info.xml │ ├── ic_transaction_received.xml │ ├── ic_transaction_received_border.xml │ ├── ic_transaction_sent.xml │ ├── ic_update_profile_error.xml │ ├── ic_upgrade_to_evolution.xml │ ├── ic_user_list.xml │ ├── ic_user_privacy.xml │ ├── ic_user_search_loading.xml │ ├── ic_user_search_loading_1.xml │ ├── ic_user_search_loading_2.xml │ ├── ic_user_search_loading_3.xml │ ├── ic_user_search_loading_4.xml │ ├── ic_user_search_no_result.xml │ ├── ic_user_search_no_results.xml │ ├── ic_username_requirement_checkmark.xml │ ├── ic_username_requirement_x.xml │ ├── ic_username_unavailable.xml │ ├── ic_username_voting.xml │ ├── ic_verify_identity.xml │ ├── ic_voting.xml │ ├── ic_voting_icon.xml │ ├── ic_warning_triangle.xml │ ├── ic_where_to_spend.xml │ ├── ic_zenledger_icon.xml │ ├── identity_complete_icon.xml │ ├── identity_processing.xml │ ├── inverted_contact_icon.xml │ ├── left_round_button.xml │ ├── left_round_corners.xml │ ├── left_round_corners_checked.xml │ ├── light_gray_button_background.xml │ ├── light_orange_circle.xml │ ├── notifications_button.xml │ ├── notifications_button_selector.xml │ ├── pin_item.xml │ ├── pin_item_white.xml │ ├── please_wait_anim.xml │ ├── right_round_button.xml │ ├── right_round_corners.xml │ ├── right_round_corners_checked.xml │ ├── round_background_gray.xml │ ├── round_checkbox.xml │ ├── round_checkbox_checked.xml │ ├── round_checkbox_unchecked.xml │ ├── round_corner_bgd_white.xml │ ├── round_corners_gray_bg.xml │ ├── round_corners_light_blue_bg.xml │ ├── round_corners_white_bg_borders.xml │ ├── rounded_gray_frame.xml │ ├── security_filled_blue.xml │ ├── security_filled_green.xml │ ├── security_filled_orange.xml │ ├── security_filled_red.xml │ ├── seekbar_line.xml │ ├── seekbar_step.xml │ ├── seekbar_thumb.xml │ ├── selectable_item_background.xml │ ├── shortcut_request_coins.xml │ ├── shortcut_scan_qr.xml │ ├── splash_background.xml │ ├── stat_sys_peers.xml │ ├── top_round_corners_white_bg.xml │ ├── transaction_metadata.xml │ ├── view_shadow_bottom.xml │ ├── white_progress.xml │ └── word_button_drawable.xml ├── layout │ ├── activity_about.xml │ ├── activity_accept_invite.xml │ ├── activity_advanced_security.xml │ ├── activity_app_update.xml │ ├── activity_block_info.xml │ ├── activity_coinjoin.xml │ ├── activity_create_username.xml │ ├── activity_crop_image.xml │ ├── activity_dashpay_user.xml │ ├── activity_edit_profile.xml │ ├── activity_explore.xml │ ├── activity_forgot_pin.xml │ ├── activity_fragment_holder.xml │ ├── activity_invite_friends.xml │ ├── activity_lock_screen.xml │ ├── activity_lock_screen_root.xml │ ├── activity_main.xml │ ├── activity_notifications.xml │ ├── activity_onboard_from_invite.xml │ ├── activity_onboarding.xml │ ├── activity_onboarding_invalid_wallet.xml │ ├── activity_onboarding_perm_lock.xml │ ├── activity_phrasewordcount.xml │ ├── activity_quick_receive.xml │ ├── activity_recover_wallet_from_seed.xml │ ├── activity_search_dashpay_profile_1.xml │ ├── activity_search_dashpay_profile_2.xml │ ├── activity_search_dashpay_profile_root.xml │ ├── activity_send_coins.xml │ ├── activity_set_pin.xml │ ├── activity_staking.xml │ ├── activity_successful_transaction.xml │ ├── activity_sweep_wallet.xml │ ├── activity_verify_seed.xml │ ├── activity_welcome.xml │ ├── address_book_onepane.xml │ ├── address_book_row.xml │ ├── address_book_twopanes.xml │ ├── alert_dialog_button_bar.xml │ ├── backup_wallet_dialog.xml │ ├── backup_wallet_to_seed_dialog.xml │ ├── bitmap_dialog.xml │ ├── block_explorer_content.xml │ ├── block_list_fragment.xml │ ├── block_row.xml │ ├── block_row_transaction.xml │ ├── block_username_request_view.xml │ ├── contact_header_row.xml │ ├── contact_request_header_row.xml │ ├── contact_request_row.xml │ ├── contact_request_view.xml │ ├── contact_row.xml │ ├── contacts_empty_result.xml │ ├── contacts_empty_results_content.xml │ ├── contacts_empty_state_layout.xml │ ├── contacts_list_layout.xml │ ├── contacts_suggestions_header.xml │ ├── custom_spinner_item.xml │ ├── dash_fiat_amount_layout.xml │ ├── dashpay_contact_row.xml │ ├── dashpay_contact_row_content.xml │ ├── dashpay_contact_suggestion_row.xml │ ├── delete_image_confirmation_dialog.xml │ ├── dialog_change_tax_category_explainer.xml │ ├── dialog_compose_container.xml │ ├── dialog_confirm_topup.xml │ ├── dialog_confirm_transaction.xml │ ├── dialog_confirm_username_request.xml │ ├── dialog_contact_support.xml │ ├── dialog_image_upload.xml │ ├── dialog_input_text.xml │ ├── dialog_invite_filter.xml │ ├── dialog_liquid_unavailable.xml │ ├── dialog_mix_dash_first.xml │ ├── dialog_one_vote_left.xml │ ├── dialog_platform_payment_confirm.xml │ ├── dialog_private_memo.xml │ ├── dialog_quick_vote.xml │ ├── dialog_receive_details.xml │ ├── dialog_select_picture.xml │ ├── dialog_select_storage_service.xml │ ├── dialog_tax_category_explainer.xml │ ├── dialog_transaction_metadata.xml │ ├── dialog_transaction_metadata_costs.xml │ ├── dialog_transactions_filter.xml │ ├── dialog_username_request_filters.xml │ ├── dialog_verify_seed_warning.xml │ ├── dialog_what_are_credits.xml │ ├── dialog_zenledger.xml │ ├── edit_address_book_entry_dialog.xml │ ├── encrypt_keys_dialog.xml │ ├── encrypt_new_key_chain_dialog.xml │ ├── exchange_rate_row.xml │ ├── exchange_rates_content.xml │ ├── exchange_rates_fragment.xml │ ├── export_transaction_history_dialog.xml │ ├── extended_public_key_dialog.xml │ ├── fancy_list_content.xml │ ├── fingerprint_view.xml │ ├── fragment_accept_invite.xml │ ├── fragment_add_voting_keys.xml │ ├── fragment_address_input.xml │ ├── fragment_buy_sell_integrations.xml │ ├── fragment_coinjoin_info.xml │ ├── fragment_coinjoin_level.xml │ ├── fragment_contacts_root.xml │ ├── fragment_create_username.xml │ ├── fragment_enter_pin.xml │ ├── fragment_integration_overview.xml │ ├── fragment_invite_created.xml │ ├── fragment_invite_details.xml │ ├── fragment_invite_friend.xml │ ├── fragment_invite_welcome.xml │ ├── fragment_invites_history.xml │ ├── fragment_masternode_key_chain.xml │ ├── fragment_masternode_key_types.xml │ ├── fragment_more.xml │ ├── fragment_notifications.xml │ ├── fragment_payment_protocol.xml │ ├── fragment_payments.xml │ ├── fragment_payments_pay.xml │ ├── fragment_payments_receive.xml │ ├── fragment_receive.xml │ ├── fragment_request_username.xml │ ├── fragment_security.xml │ ├── fragment_settings.xml │ ├── fragment_show_seed.xml │ ├── fragment_tools.xml │ ├── fragment_transaction_metadata_settings.xml │ ├── fragment_updating_profile.xml │ ├── fragment_upgrade_to_evolution.xml │ ├── fragment_username_registration.xml │ ├── fragment_username_request_details.xml │ ├── fragment_username_requests.xml │ ├── fragment_username_voting_info.xml │ ├── fragment_verfiy_identity.xml │ ├── fragment_verify_confirm.xml │ ├── fragment_verify_info.xml │ ├── fragment_verify_success.xml │ ├── fragment_voting_key_input.xml │ ├── fragment_voting_request_details.xml │ ├── fragment_welcome.xml │ ├── fragment_welcome_to_dashpay.xml │ ├── frequent_contact_item.xml │ ├── header_balance_fragment.xml │ ├── history_header_view.xml │ ├── home_content.xml │ ├── identity_creation_state.xml │ ├── invitation_already_claimed_view.xml │ ├── invitation_bitmap_template.xml │ ├── invitation_preview_view.xml │ ├── invite_empty_history_row.xml │ ├── invite_error_envelope_view.xml │ ├── invite_friend_hint_view.xml │ ├── invite_history_create_invite_row.xml │ ├── invite_history_header_row.xml │ ├── invite_history_row.xml │ ├── invite_preview_envelope_view.xml │ ├── invite_send_contact_request_view.xml │ ├── item_service_list.xml │ ├── join_dashpay_row.xml │ ├── lock_fingerprint_view.xml │ ├── lock_screen_button.xml │ ├── masternode_fragment.xml │ ├── masternode_key_row.xml │ ├── masternode_key_type_row.xml │ ├── network_monitor_onepane.xml │ ├── network_monitor_twopanes.xml │ ├── network_unavailable.xml │ ├── no_contacts_results.xml │ ├── notification_alert_item.xml │ ├── notification_contact_request_received_row.xml │ ├── notification_header_row.xml │ ├── notification_image_row.xml │ ├── notification_transaction_row.xml │ ├── payment_request_wait_error_view.xml │ ├── peer_list_fragment.xml │ ├── peer_list_row.xml │ ├── peer_monitor_content.xml │ ├── pin_preview_view.xml │ ├── please_wait_restoring_wallet_view.xml │ ├── profile_activity_header_row.xml │ ├── profile_picture_state_dialog.xml │ ├── report_issue_dialog.xml │ ├── restore_wallet_dialog.xml │ ├── restore_wallet_file_row.xml │ ├── restore_wallet_from_seed_dialog.xml │ ├── row_separator.xml │ ├── scan_activity.xml │ ├── screenshot_warning_widget.xml │ ├── send_coins_buttons_include.xml │ ├── send_coins_fragment.xml │ ├── shortcut_button.xml │ ├── sweep_wallet_decrypt_dialog.xml │ ├── sweep_wallet_fragment.xml │ ├── sync_status_pane.xml │ ├── tab_title.xml │ ├── transaction_date_header.xml │ ├── transaction_details_dialog.xml │ ├── transaction_group_details.xml │ ├── transaction_group_header.xml │ ├── transaction_result_address_row.xml │ ├── transaction_result_content.xml │ ├── transaction_row.xml │ ├── transactions_header_row.xml │ ├── unlock_wallet_dialog.xml │ ├── update_profile_error.xml │ ├── update_profile_network_unavailable.xml │ ├── upload_policy_dialog.xml │ ├── user_search_empty_result.xml │ ├── user_search_loading.xml │ ├── username_request_date_view.xml │ ├── username_request_group_view.xml │ ├── username_request_view.xml │ ├── users_orbit.xml │ ├── verify_seed_word_button.xml │ ├── verify_seed_word_tv.xml │ ├── view_masternode_ip.xml │ ├── view_payment_request_details.xml │ ├── wallet_address_dialog.xml │ ├── wallet_address_fragment.xml │ ├── wallet_balance_widget_content.xml │ └── wallet_transactions_fragment.xml ├── menu-v21 │ ├── sending_addresses_context.xml │ ├── sending_addresses_fragment_options.xml │ └── wallet_addresses_context.xml ├── menu │ ├── blocks_context.xml │ ├── bottom_navigation_menu.xml │ ├── close_button_options.xml │ ├── close_button_white_options.xml │ ├── contacts_menu.xml │ ├── sending_addresses_context.xml │ ├── sending_addresses_fragment_options.xml │ ├── wallet_addresses_context.xml │ └── wallet_addresses_fragment_options.xml ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_foreground.png ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_foreground.png ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_foreground.png ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_foreground.png ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_foreground.png ├── navigation │ ├── nav_coinjoin.xml │ ├── nav_home.xml │ ├── nav_invite_friends.xml │ ├── nav_quick_receive.xml │ ├── nav_send.xml │ ├── nav_username.xml │ ├── nav_verify.xml │ └── nav_voting.xml ├── raw │ ├── coins_received.wav │ ├── mixing_anim.json │ └── send_coins_broadcast_1.wav ├── values-ar │ ├── strings-extra.xml │ └── strings.xml ├── values-bg │ ├── strings-extra.xml │ └── strings.xml ├── values-ca │ └── strings.xml ├── values-cs │ ├── strings-extra.xml │ └── strings.xml ├── values-da │ ├── strings.xml │ └── values.xml ├── values-de │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ ├── strings.xml │ └── values.xml ├── values-el │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-eo │ └── strings.xml ├── values-es │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ ├── strings.xml │ └── values.xml ├── values-fa │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-fi │ └── strings.xml ├── values-fil │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-fr │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ ├── strings.xml │ └── values.xml ├── values-h400dp │ └── layouts.xml ├── values-hdpi │ └── dimens.xml ├── values-he │ └── strings.xml ├── values-hr │ └── strings.xml ├── values-hu │ └── strings.xml ├── values-id │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-it │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-iw │ └── strings.xml ├── values-ja │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-ko │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-large-land │ └── layouts.xml ├── values-large │ ├── dimens.xml │ └── layouts.xml ├── values-mk │ └── strings.xml ├── values-nb │ ├── strings.xml │ └── values.xml ├── values-nl │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-normal-land │ └── layouts.xml ├── values-normal │ └── layouts.xml ├── values-pl │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-pt │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-ro │ ├── strings-extra.xml │ └── strings.xml ├── values-ru │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-sk │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-sl │ ├── strings-extra.xml │ └── strings.xml ├── values-small │ ├── dimens.xml │ └── layouts.xml ├── values-sq │ └── strings.xml ├── values-sr │ ├── strings-extra.xml │ └── strings.xml ├── values-sv │ └── strings.xml ├── values-sw │ └── strings.xml ├── values-th │ ├── strings-extra.xml │ └── strings.xml ├── values-tr │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-uk │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values-vi │ ├── strings-extra.xml │ └── strings.xml ├── values-w1000dp │ └── dimens.xml ├── values-w400dp │ └── dimens.xml ├── values-xhdpi │ └── dimens.xml ├── values-xlarge │ ├── dimens.xml │ └── layouts.xml ├── values-xxhdpi │ └── dimens.xml ├── values-zh-rTW │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ ├── strings.xml │ └── values.xml ├── values-zh │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ └── strings.xml ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ic_launcher_background.xml │ ├── ids.xml │ ├── layouts.xml │ ├── strings-dashpay.xml │ ├── strings-extra.xml │ ├── strings.xml │ ├── styles.xml │ └── values.xml └── xml │ ├── data_extraction_rules.xml │ ├── file_provider.xml │ ├── network_security_config.xml │ ├── preference_about.xml │ ├── preference_diagnostics.xml │ ├── shortcuts.xml │ └── wallet_balance_widget.xml ├── schemas └── de.schildbach.wallet.database.AppDatabase │ ├── 1.json │ ├── 11.json │ ├── 12.json │ ├── 13.json │ ├── 14.json │ └── 15.json ├── src └── de │ └── schildbach │ └── wallet │ ├── ActivitiesTracker.java │ ├── AutoLogout.java │ ├── Constants.java │ ├── WalletApplication.java │ ├── WalletApplicationExt.kt │ ├── WalletBalanceWidgetProvider.java │ ├── adapter │ ├── BigDecimalAdapter.java │ └── BuyAndSellDashServicesAdapter.kt │ ├── data │ ├── AddressBookProvider.java │ ├── BlockInfo.kt │ ├── BuyAndSellDashServicesModel.kt │ ├── CoinJoinConfig.kt │ ├── CreditBalanceInfo.kt │ ├── FeeCategory.java │ ├── ImgurImg.kt │ ├── ImgurUploadResponse.kt │ ├── InvitationLinkData.kt │ ├── NotificationItem.kt │ ├── NotificationItemContact.kt │ ├── NotificationItemPayment.kt │ ├── NotificationItemStub.kt │ ├── NotificationItemUserAlert.kt │ ├── PaymentIntent.java │ ├── StaticFeeLoader.java │ ├── UsernameSearch.kt │ ├── UsernameSearchResult.kt │ └── UsernameSortOrderBy.kt │ ├── database │ ├── AppDatabase.kt │ ├── AppDatabaseMigrations.kt │ ├── BlockchainStateRoomConverters.kt │ ├── dao │ │ ├── AddressMetadataDao.kt │ │ ├── BlockchainStateDao.kt │ │ ├── DashPayContactRequestDao.kt │ │ ├── DashPayProfileDao.kt │ │ ├── ExchangeRatesDao.kt │ │ ├── IconBitmapDao.kt │ │ ├── ImportedMasternodeKeyDao.kt │ │ ├── InvitationsDao.kt │ │ ├── TopUpsDao.kt │ │ ├── TransactionMetadataChangeCacheDao.kt │ │ ├── TransactionMetadataDao.kt │ │ ├── TransactionMetadataDocumentDao.kt │ │ ├── UserAlertDao.kt │ │ ├── UsernameRequestDao.kt │ │ └── UsernameVoteDao.kt │ └── entity │ │ ├── BlockchainIdentityBaseData.kt │ │ ├── BlockchainIdentityData.kt │ │ ├── DashPayContactRequest.kt │ │ ├── DashPayProfile.kt │ │ ├── Invitation.kt │ │ ├── MasternodeKey.kt │ │ ├── TopUp.kt │ │ ├── TransactionMetadataCacheItem.kt │ │ ├── TransactionMetadataDocument.kt │ │ ├── UsernameRequest.kt │ │ └── UsernameVote.kt │ ├── di │ ├── AppModule.kt │ ├── DashPayModule.kt │ ├── DataProviderModule.kt │ ├── DatabaseModule.kt │ ├── IntegrationModule.kt │ └── SecurityModule.kt │ ├── livedata │ ├── CheckPinLiveData.kt │ ├── EncryptWalletLiveData.kt │ ├── Resource.kt │ ├── SeriousErrorLiveData.kt │ └── Status.kt │ ├── offline │ ├── AcceptBluetoothService.java │ ├── AcceptBluetoothThread.java │ └── DirectPaymentTask.java │ ├── payments │ ├── ConfirmTransactionLauncher.kt │ ├── DecodePrivateKeyTask.java │ ├── DecryptSeedTask.java │ ├── DeriveKeyTask.java │ ├── MaxOutputAmountCoinJoinCoinSelector.kt │ ├── MaxOutputAmountCoinSelector.kt │ ├── RequestPaymentRequestTask.java │ ├── RequestWalletBalanceTask.java │ ├── SendCoinsOfflineTask.java │ ├── SendCoinsTaskRunner.kt │ └── parsers │ │ ├── AddressParser.kt │ │ └── PaymentIntentParser.kt │ ├── rates │ ├── BitPayClient.java │ ├── BitPayRate.java │ ├── BitPayResponse.java │ ├── BitcoinAverageClient.java │ ├── BitcoinAverageRateAdapter.java │ ├── CryptoCompareClient.java │ ├── CryptoCompareDashBtcRateAdapter.java │ ├── CryptoCompareVesBtcRate.java │ ├── DashCasaClient.java │ ├── DashCasaResponse.java │ ├── DashCentralClient.java │ ├── DashCentralRateAdapter.java │ ├── DashRatesClient.java │ ├── DashRatesFirstFallback.java │ ├── DashRatesSecondFallback.java │ ├── DashRetailClient.java │ ├── DashRetailRate.java │ ├── ExchangeRateListMoshiAdapter.java │ ├── ExchangeRatesClient.kt │ ├── ExchangeRatesRepository.kt │ ├── LocalBitcoinsClient.java │ ├── LocalBitcoinsRate.java │ ├── LocalBitcoinsResponse.java │ ├── PoloniexClient.java │ ├── PoloniexRateAdapter.java │ ├── PoloniexResponse.java │ ├── Rate.java │ └── RetrofitClient.java │ ├── security │ ├── BiometricHelper.kt │ ├── EncryptionProviderFactory.java │ ├── FingerprintStorage.java │ ├── ModernEncryptionProvider.kt │ ├── PinRetryController.java │ ├── SecurityBackupConfig.kt │ ├── SecurityFunctions.kt │ ├── SecurityGuard.java │ ├── SecurityGuardException.java │ └── SecurityInitializer.kt │ ├── service │ ├── AndroidActionsService.kt │ ├── AppRestartService.kt │ ├── BlockchainService.java │ ├── BlockchainServiceImpl.kt │ ├── BlockchainStateDataProvider.kt │ ├── BlockchainSyncJobService.kt │ ├── BootstrapReceiver.java │ ├── CoinJoinService.kt │ ├── DashSystemService.kt │ ├── DelayedServiceStartReceiver.kt │ ├── DeviceInfoProvider.kt │ ├── ForegroundService.kt │ ├── NetworkState.kt │ ├── PackageInfoProvider.kt │ ├── TestingSPVBlockStore.kt │ ├── WalletFactory.kt │ ├── WalletTransactionMetadataProvider.kt │ ├── extensions │ │ └── BlockchainServiceExt.kt │ ├── platform │ │ ├── PlatformBroadcastService.kt │ │ ├── PlatformService.kt │ │ ├── PlatformSyncService.kt │ │ ├── TopUpRepository.kt │ │ ├── TxMetadataSaveInfo.kt │ │ └── work │ │ │ ├── PublishTransactionMetadataOperation.kt │ │ │ ├── PublishTransactionMetadataWorker.kt │ │ │ ├── RestoreIdentityOperation.kt │ │ │ ├── RestoreIdentityWorker.kt │ │ │ ├── TopupIdentityOperation.kt │ │ │ └── TopupIdentityWorker.kt │ └── work │ │ ├── BaseForegroundWorker.kt │ │ └── BaseWorker.kt │ ├── transactions │ ├── CSVExporter.kt │ ├── MasternodeObserver.kt │ ├── TaxBitExporter.kt │ ├── TransactionExporter.kt │ ├── TransactionWrapperHelper.kt │ ├── TxDirectionFilter.kt │ ├── WalletBalanceObserver.kt │ ├── WalletMostRecentTransactionsObserver.kt │ ├── WalletObserver.kt │ └── coinjoin │ │ ├── CoinJoinMixingTxSet.kt │ │ ├── CoinJoinTxResourceMapper.kt │ │ └── CoinJoinTxWrapperFactory.kt │ ├── ui │ ├── AbstractBindServiceActivity.java │ ├── AbstractPINDialogFragment.java │ ├── AddressAndLabel.java │ ├── AddressBookActivity.java │ ├── AppUpgradeActivity.kt │ ├── BackupWalletToSeedDialogFragment.java │ ├── BaseMenuActivity.kt │ ├── BlockInfoActivity.kt │ ├── BlockListAdapter.java │ ├── BlockListFragment.java │ ├── CheckPinDialog.kt │ ├── CheckPinViewModel.kt │ ├── CheckWalletPasswordTask.java │ ├── CollapsingImageBehavior.java │ ├── ContactRelation.kt │ ├── ContactViewHolder.kt │ ├── CreateUsernameActivity.kt │ ├── DashPayUserActivity.kt │ ├── DashPayUserActivityViewModel.kt │ ├── DecryptSeedViewModel.kt │ ├── DecryptSeedWithPinDialog.kt │ ├── DeleteProfilePictureConfirmationDialog.kt │ ├── DialogSharedViewModel.kt │ ├── DividerItemDecoration.java │ ├── EditAddressBookEntryFragment.java │ ├── EditProfileActivity.kt │ ├── EncryptKeysDialogFragment.java │ ├── EncryptNewKeyChainDialogFragment.java │ ├── ExportTransactionHistoryDialogBuilder.java │ ├── ExternalUrlProfilePictureViewModel.kt │ ├── FancyListFragment.java │ ├── ForgotPinActivity.kt │ ├── ImportSharedImageActivity.kt │ ├── InviteHandlerActivity.kt │ ├── InviteHandlerViewModel.kt │ ├── LockScreenActivity.kt │ ├── LockScreenButton.kt │ ├── NetworkMonitorActivity.java │ ├── OnboardingActivity.kt │ ├── OnboardingViewModel.kt │ ├── PeerListFragment.java │ ├── ProgressDialogFragment.java │ ├── ResetWalletDialog.kt │ ├── RestoreWalletFromFileViewModel.kt │ ├── RestoreWalletFromSeedActivity.kt │ ├── RestoreWalletFromSeedDialogFragment.java │ ├── RestoreWalletFromSeedViewModel.kt │ ├── SearchUserActivity.kt │ ├── SendingAddressesFragment.java │ ├── SetPinActivity.kt │ ├── SetPinViewModel.kt │ ├── SettingsFragment.kt │ ├── SetupPinDuringUpgradeDialog.kt │ ├── ShortcutComponentActivity.kt │ ├── ShowPasswordCheckListener.java │ ├── SingleActionSharedViewModel.kt │ ├── TransactionResultViewModel.kt │ ├── UnlockWalletDialogFragment.java │ ├── UploadPolicyDialog.kt │ ├── UploadProfilePictureStateDialog.kt │ ├── UsernameSearchResultsAdapter.kt │ ├── WalletAddressDialogFragment.java │ ├── WalletAddressFragment.java │ ├── WalletAddressesAdapter.java │ ├── WalletAddressesFragment.java │ ├── WalletBalanceLoader.java │ ├── WalletUriHandlerActivity.kt │ ├── WelcomeActivity.kt │ ├── WelcomeScreenFragment.kt │ ├── backup │ │ ├── BackupWalletDialogFragment.java │ │ ├── BackupWalletViewModel.java │ │ ├── ImportDialogButtonEnablerListener.java │ │ ├── OnRestoreWalletListener.java │ │ ├── RestoreFromFileActivity.kt │ │ └── RestoreWalletDialogFragment.java │ ├── buy_sell │ │ ├── BuyAndSellIntegrationsFragment.kt │ │ ├── BuyAndSellViewModel.kt │ │ ├── IntegrationOverviewFragment.kt │ │ ├── IntegrationOverviewViewModel.kt │ │ └── LiquidClient.kt │ ├── coinjoin │ │ ├── CoinJoinActivity.kt │ │ ├── CoinJoinInfoFragment.kt │ │ ├── CoinJoinLevelFragment.kt │ │ └── CoinJoinLevelViewModel.kt │ ├── compose_views │ │ ├── ComposeBottomSheet.kt │ │ └── Shadows.kt │ ├── dashpay │ │ ├── BaseContactsViewModel.kt │ │ ├── BaseProfileViewModel.kt │ │ ├── ChooseStorageServiceDialog.kt │ │ ├── ContactSearchResultsAdapter.kt │ │ ├── ContactsBasedLiveData.kt │ │ ├── ContactsFragment.kt │ │ ├── ContactsUpdatedLiveData.kt │ │ ├── CreateIdentityNotification.kt │ │ ├── CreateIdentityService.kt │ │ ├── CreateIdentityViewModel.kt │ │ ├── CreateUsernameInfo.kt │ │ ├── CropImageActivity.kt │ │ ├── DashPayViewModel.kt │ │ ├── EditProfileViewModel.kt │ │ ├── ExternalUrlProfilePictureDialog.kt │ │ ├── FrequentContactViewHolder.kt │ │ ├── FrequentContactsAdapter.kt │ │ ├── GetUsernameDocumentTask.kt │ │ ├── GravatarProfilePictureDialog.kt │ │ ├── HistoryHeaderAdapter.kt │ │ ├── NewAccountConfirmDialogViewModel.kt │ │ ├── NotificationCountLiveData.kt │ │ ├── NotificationsAdapter.kt │ │ ├── NotificationsFragment.kt │ │ ├── NotificationsLiveData.kt │ │ ├── OnContactItemClickListener.kt │ │ ├── OnContactsUpdated.kt │ │ ├── OnPreBlockProgressListener.kt │ │ ├── PlatformPaymentConfirmDialog.kt │ │ ├── PlatformRepo.kt │ │ ├── SelectProfilePictureDialog.kt │ │ ├── SelectProfilePictureSharedViewModel.kt │ │ ├── UpgradeToEvolutionFragment.kt │ │ ├── UserAlert.kt │ │ ├── notification │ │ │ ├── ContactViewHolder.kt │ │ │ ├── HeaderViewHolder.kt │ │ │ ├── ImageViewHolder.kt │ │ │ ├── NotificationViewHolder.kt │ │ │ ├── NotificationsViewModel.kt │ │ │ ├── ProfileActivityHeaderHolder.kt │ │ │ ├── TransactionViewHolder.kt │ │ │ └── UserAlertViewHolder.kt │ │ ├── transactions │ │ │ ├── PrivateMemoDialog.kt │ │ │ └── PrivateMemoViewModel.kt │ │ ├── utils │ │ │ ├── DashPayConfig.kt │ │ │ ├── GoogleDriveService.kt │ │ │ ├── ImgurService.kt │ │ │ └── ProfilePictureDisplay.kt │ │ ├── widget │ │ │ ├── BlurredImageView.kt │ │ │ ├── CircleCropTouchImageView.kt │ │ │ └── ContactRequestPane.kt │ │ └── work │ │ │ ├── BroadcastIdentityVerifyOperation.kt │ │ │ ├── BroadcastIdentityVerifyWorker.kt │ │ │ ├── BroadcastUsernameVotesOperation.kt │ │ │ ├── BroadcastUsernameVotesWorker.kt │ │ │ ├── GetUsernameVotingResultOperation.kt │ │ │ ├── GetUsernameVotingResultsWorker.kt │ │ │ ├── SendContactRequestOperation.kt │ │ │ ├── SendContactRequestWorker.kt │ │ │ ├── SendInviteOperation.kt │ │ │ ├── SendInviteStatusLiveData.kt │ │ │ ├── SendInviteWorker.kt │ │ │ ├── SingleWorkStatusLiveData.kt │ │ │ ├── UpdateProfileException.kt │ │ │ ├── UpdateProfileOperation.kt │ │ │ ├── UpdateProfileStatusLiveData.kt │ │ │ └── UpdateProfileWorker.kt │ ├── explore │ │ ├── ExploreEntryViewModel.kt │ │ └── ExploreFragment.kt │ ├── invite │ │ ├── AcceptInviteActivity.kt │ │ ├── AcceptInviteFragment.kt │ │ ├── CreateInviteViewHolder.kt │ │ ├── CreateInviteViewModel.kt │ │ ├── InvitationFragment.kt │ │ ├── InvitationFragmentViewModel.kt │ │ ├── InvitationItem.kt │ │ ├── InviteAlreadyClaimedDialog.kt │ │ ├── InviteCreatedFragment.kt │ │ ├── InviteDetailsFragment.kt │ │ ├── InviteEmptyViewHolder.kt │ │ ├── InviteEnvelopeView.kt │ │ ├── InviteErrorEnvelopeView.kt │ │ ├── InviteFilterSelectionDialog.kt │ │ ├── InviteFriendActivity.kt │ │ ├── InviteFriendFragment.kt │ │ ├── InviteHandler.kt │ │ ├── InvitePreviewDialog.kt │ │ ├── InvitePreviewEnvelopeView.kt │ │ ├── InviteSendContactRequestDialog.kt │ │ ├── InviteViewHolder.kt │ │ ├── InviteWelcomeFragment.kt │ │ ├── InvitesAdapter.kt │ │ ├── InvitesHeaderViewHolder.kt │ │ ├── InvitesHistoryActivity.kt │ │ ├── InvitesHistoryFilterViewModel.kt │ │ ├── InvitesHistoryFragment.kt │ │ ├── InvitesHistoryViewHolder.kt │ │ ├── InvitesHistoryViewModel.kt │ │ └── OnboardFromInviteActivity.kt │ ├── main │ │ ├── HeaderBalanceFragment.kt │ │ ├── HistoryRowView.kt │ │ ├── MainActivity.kt │ │ ├── MainActivityExt.kt │ │ ├── MainViewModel.kt │ │ ├── MixingStatusCard.kt │ │ ├── TransactionAdapter.kt │ │ ├── TransactionsFilterDialog.kt │ │ ├── WalletFragment.kt │ │ ├── WalletTransactionsFragment.kt │ │ └── shortcuts │ │ │ ├── Shortcut.kt │ │ │ ├── ShortcutListItem.kt │ │ │ ├── ShortcutOption.kt │ │ │ ├── ShortcutProvider.kt │ │ │ ├── ShortcutsList.kt │ │ │ ├── ShortcutsPane.kt │ │ │ └── ShortcutsViewModel.kt │ ├── more │ │ ├── AboutActivity.kt │ │ ├── AboutViewModel.kt │ │ ├── AdvancedSecurityActivity.kt │ │ ├── ContactSupportDialogFragment.kt │ │ ├── ContactSupportViewModel.kt │ │ ├── MixDashFirstDialogFragment.kt │ │ ├── MixDashFirstViewModel.kt │ │ ├── MoreFragment.kt │ │ ├── SaveMetadataAndResetDialogFragment.kt │ │ ├── SecurityFragment.kt │ │ ├── SecurityViewModel.kt │ │ ├── SettingsScreen.kt │ │ ├── SettingsViewModel.kt │ │ ├── ToolsFragment.kt │ │ ├── ToolsViewModel.kt │ │ ├── TransactionMetadataCostDialog.kt │ │ ├── TransactionMetadataDialog.kt │ │ ├── TransactionMetadataSettingsFragment.kt │ │ ├── TransactionMetadataSettingsScreen.kt │ │ ├── TransactionMetadataSettingsViewModel.kt │ │ ├── masternode_keys │ │ │ ├── MasternodeKeyChainAdapter.kt │ │ │ ├── MasternodeKeyChainFragment.kt │ │ │ ├── MasternodeKeyChainInfo.kt │ │ │ ├── MasternodeKeyInfo.kt │ │ │ ├── MasternodeKeyType.kt │ │ │ ├── MasternodeKeyTypeAdapter.kt │ │ │ ├── MasternodeKeyTypeInfo.kt │ │ │ ├── MasternodeKeyTypeViewHolder.kt │ │ │ ├── MasternodeKeyViewHolder.kt │ │ │ ├── MasternodeKeysFragment.kt │ │ │ └── MasternodeKeysViewModel.kt │ │ └── tools │ │ │ ├── ConfirmTopUpDialogFragment.kt │ │ │ ├── ConfirmTopupDialogViewModel.kt │ │ │ ├── WhatAreCreditsDialogFragment.kt │ │ │ ├── ZenLedgerClient.kt │ │ │ ├── ZenLedgerDialogFragment.kt │ │ │ ├── ZenLedgerService.kt │ │ │ └── ZenLedgerViewModel.kt │ ├── notifications │ │ ├── NotificationManagerWrapper.kt │ │ └── PushMessagingService.kt │ ├── onboarding │ │ └── SelectSecurityLevelActivity.kt │ ├── payments │ │ ├── PaymentsFragment.kt │ │ ├── PaymentsPayFragment.kt │ │ ├── PaymentsReceiveFragment.kt │ │ ├── PaymentsViewModel.kt │ │ ├── QuickReceiveActivity.kt │ │ ├── ReceiveDetailsDialog.kt │ │ ├── ReceiveFragment.kt │ │ ├── SweepWalletActivity.kt │ │ ├── SweepWalletFragment.java │ │ ├── SweepWalletPasswordDialog.kt │ │ └── SweepWalletViewModel.kt │ ├── scan │ │ ├── CameraManager.java │ │ ├── ScanActivity.java │ │ ├── ScanViewModel.java │ │ └── ScannerView.java │ ├── send │ │ ├── AddressInputFragment.kt │ │ ├── AddressInputViewModel.kt │ │ ├── BuyCreditsFragment.kt │ │ ├── BuyCreditsViewModel.kt │ │ ├── ConfirmTransactionDialog.kt │ │ ├── PaymentProtocolFragment.kt │ │ ├── PaymentProtocolViewModel.kt │ │ ├── SendCoinsActivity.kt │ │ ├── SendCoinsBaseViewModel.kt │ │ ├── SendCoinsFragment.kt │ │ ├── SendCoinsQrActivity.java │ │ └── SendCoinsViewModel.kt │ ├── staking │ │ └── StakingActivity.kt │ ├── transactions │ │ ├── BlockExplorerSelectionView.kt │ │ ├── ChangeTaxCategoryExplainerDialogFragment.kt │ │ ├── CrowdNodeTxResourceMapper.kt │ │ ├── TaxCategoryExplainerDialogFragment.kt │ │ ├── TransactionDateHeaderViewHolder.kt │ │ ├── TransactionDetailsDialogFragment.kt │ │ ├── TransactionGroupDetailsFragment.kt │ │ ├── TransactionGroupHeaderViewHolder.kt │ │ ├── TransactionGroupViewModel.kt │ │ ├── TransactionResultActivity.kt │ │ ├── TransactionResultViewBinder.kt │ │ ├── TransactionRowView.kt │ │ ├── TxError.kt │ │ └── TxResourceMapper.kt │ ├── username │ │ ├── AddVotingKeysFragment.kt │ │ ├── QuickVoteDialogFragment.kt │ │ ├── UsernameRegistrationFragment.kt │ │ ├── UsernameRequestDetailsFragment.kt │ │ ├── UsernameRequestFilterDialog.kt │ │ ├── UsernameRequestsFragment.kt │ │ ├── UsernameRequestsViewModel.kt │ │ ├── VotingKeyInputFragment.kt │ │ ├── adapters │ │ │ ├── IPAddressAdapter.kt │ │ │ ├── UsernameRequestGroupAdapter.kt │ │ │ └── UsernameRequestGroupView.kt │ │ ├── utils │ │ │ └── VotingViewModels.kt │ │ └── voting │ │ │ ├── ConfirmUserNameDialogViewModel.kt │ │ │ ├── ConfirmUsernameRequestDialogFragment.kt │ │ │ ├── OneVoteLeftDialogFragment.kt │ │ │ ├── RequestUserNameViewModel.kt │ │ │ ├── RequestUsernameFragment.kt │ │ │ ├── UsernameVotingInfoFragment.kt │ │ │ ├── VerifyIdentityFragment.kt │ │ │ ├── VerifyIdentityViewModel.kt │ │ │ ├── VotingRequestDetailsFragment.kt │ │ │ ├── VotingViewModel.kt │ │ │ └── WelcomeToDashPayFragment.kt │ ├── util │ │ ├── BlockExplorerExtensions.kt │ │ ├── InputParser.java │ │ ├── SingleLiveEvent.kt │ │ ├── SingleLiveEventExt.java │ │ └── WalletUri.java │ ├── verify │ │ ├── ShowSeedFragment.kt │ │ ├── VerifySeedActivity.kt │ │ ├── VerifySeedConfirmFragment.kt │ │ ├── VerifySeedInfoFragment.kt │ │ └── VerifySeedSuccessFragment.kt │ └── widget │ │ ├── CustomSeekBar.java │ │ ├── FingerprintView.java │ │ ├── KeyboardResponsiveConstraintLayout.java │ │ ├── KeyboardResponsiveCoordinatorLayout.java │ │ ├── PaymentRequestWaitErrorView.kt │ │ ├── PinPreviewView.kt │ │ ├── PleaseWaitRestoringWalletView.kt │ │ ├── StyledCheckBox.java │ │ └── UpgradeWalletDisclaimerDialog.java │ └── util │ ├── AddressUtil.java │ ├── AllowLockTimeRiskAnalysis.kt │ ├── AnrException.java │ ├── AnrSupervisor.java │ ├── AnrSupervisorCallback.java │ ├── AnrSupervisorRunnable.java │ ├── BitmapFragment.java │ ├── BlockchainStateUtils.java │ ├── Bluetooth.java │ ├── CrashReporter.java │ ├── Crypto.java │ ├── DateExtensions.kt │ ├── GraphicUtils.kt │ ├── Io.java │ ├── Iso8601Format.java │ ├── LogMarkerFilter.kt │ ├── MnemonicCodeExt.kt │ ├── Nfc.java │ ├── OnFirstPreDraw.java │ ├── ParcelableChainPath.java │ ├── PlatformUtils.kt │ ├── ThrottlingWalletChangeListener.java │ ├── TimeUtils.kt │ ├── Toast.java │ ├── WalletUtils.java │ └── WholeStringBuilder.java ├── staging └── res │ ├── drawable-xhdpi │ ├── currency_symbol_dash.png │ ├── currency_symbol_mdash.png │ └── currency_symbol_udash.png │ ├── drawable │ └── text_color_selector.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values │ ├── ic_launcher_background.xml │ ├── strings-extra.xml │ └── values.xml │ └── xml │ └── shortcuts.xml ├── test └── de │ └── schildbach │ └── wallet │ ├── security │ └── IVCorruptionDemoTest.java │ └── util │ ├── Base43Test.java │ ├── BluetoothTest.java │ ├── CryptoTest.java │ ├── FormatsTest.java │ ├── dash-wallet-backup-testnet-5.18 │ ├── dash-wallet-backup-testnet-5.18-crlf │ ├── services │ ├── SendCoinsTaskRunnerTest.kt │ ├── WalletFactoryTest.kt │ ├── backup-base58-testnet │ ├── bitcoin-backup-base58-testnet │ ├── bitcoin-backup-protobuf-testnet │ ├── dash-wallet-backup-5.17.5-nopin │ └── dash-wallet-backup-5.17.5-pin │ ├── transactions │ └── TransactionWrapperHelperTest.kt │ └── viewModels │ └── MainViewModelTest.kt └── testNet3 └── res ├── drawable-xhdpi └── currency_symbol_dash.png ├── mipmap-hdpi └── ic_launcher.png ├── mipmap-mdpi └── ic_launcher.png ├── mipmap-xhdpi └── ic_launcher.png ├── mipmap-xxhdpi └── ic_launcher.png ├── mipmap-xxxhdpi └── ic_launcher.png ├── values ├── ic_launcher_background.xml ├── strings-extra.xml └── values.xml └── xml └── shortcuts.xml /.deploy/checksum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.deploy/checksum.sh -------------------------------------------------------------------------------- /.deploy/gc-storage-service-account.json.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.deploy/gc-storage-service-account.json.gpg -------------------------------------------------------------------------------- /.deploy/google-services.json.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.deploy/google-services.json.gpg -------------------------------------------------------------------------------- /.deploy/id_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.deploy/id_rsa.enc -------------------------------------------------------------------------------- /.deploy/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.deploy/id_rsa.pub -------------------------------------------------------------------------------- /.deploy/keystore.jks.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.deploy/keystore.jks.gpg -------------------------------------------------------------------------------- /.deploy/prepare_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.deploy/prepare_changelog.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/dashpay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.github/workflows/dashpay.yml -------------------------------------------------------------------------------- /.github/workflows/dashwallet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.github/workflows/dashwallet.yml -------------------------------------------------------------------------------- /.github/workflows/ktlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.github/workflows/ktlint.yml -------------------------------------------------------------------------------- /.github/workflows/manual_distribution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.github/workflows/manual_distribution.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/.tx/config -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/README.md -------------------------------------------------------------------------------- /check-alignment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/check-alignment.sh -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/proguard-rules.pro -------------------------------------------------------------------------------- /common/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /common/src/main/res/anim/activity_stay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/anim/activity_stay.xml -------------------------------------------------------------------------------- /common/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /common/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /common/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/anim/slide_in_right.xml -------------------------------------------------------------------------------- /common/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/anim/slide_out_left.xml -------------------------------------------------------------------------------- /common/src/main/res/color/button_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/color/button_text.xml -------------------------------------------------------------------------------- /common/src/main/res/color/fg_network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/color/fg_network.xml -------------------------------------------------------------------------------- /common/src/main/res/color/inverted_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/color/inverted_button.xml -------------------------------------------------------------------------------- /common/src/main/res/color/keyboard_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/color/keyboard_button.xml -------------------------------------------------------------------------------- /common/src/main/res/color/main_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/color/main_button.xml -------------------------------------------------------------------------------- /common/src/main/res/color/secondary_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/color/secondary_button.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/blue_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/blue_circle.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/checkbox.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/error_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/error_button.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_apple_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_apple_pay.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_backspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_backspace.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_bank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_bank.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_buy_dash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_buy_dash.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_calendar.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_card.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_card_jcb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_card_jcb.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_checkmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_checkmark.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_chevron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_chevron.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_clear.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_clock.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_connected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_connected.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_convert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_convert.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_copy.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_copy_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_copy_blue.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_dash_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_dash_pay.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_disconnect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_disconnect.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_error.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_hide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_hide.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_info_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_info_blue.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_liquid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_liquid.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_mastercard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_mastercard.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_open_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_open_link.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_paypal.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_preview.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_relogin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_relogin.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_retry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_retry.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_show.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_swap_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_swap_blue.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_toast_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_toast_copy.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_toast_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_toast_info.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_transfer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_transfer.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_up_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_up_down.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_visa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_visa.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_wallet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_wallet.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_wifi_slash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_wifi_slash.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/ic_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/ic_x.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/input.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/input_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/input_error.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/list_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/list_divider.xml -------------------------------------------------------------------------------- /common/src/main/res/drawable/top_separator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/drawable/top_separator.xml -------------------------------------------------------------------------------- /common/src/main/res/font/inter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/font/inter.xml -------------------------------------------------------------------------------- /common/src/main/res/font/inter_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/font/inter_bold.ttf -------------------------------------------------------------------------------- /common/src/main/res/font/inter_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/font/inter_medium.ttf -------------------------------------------------------------------------------- /common/src/main/res/font/inter_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/font/inter_regular.ttf -------------------------------------------------------------------------------- /common/src/main/res/font/inter_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/font/inter_semibold.ttf -------------------------------------------------------------------------------- /common/src/main/res/layout/amount_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/layout/amount_view.xml -------------------------------------------------------------------------------- /common/src/main/res/layout/app_bar_general.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/layout/app_bar_general.xml -------------------------------------------------------------------------------- /common/src/main/res/layout/dialog_adaptive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/layout/dialog_adaptive.xml -------------------------------------------------------------------------------- /common/src/main/res/layout/dialog_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/layout/dialog_progress.xml -------------------------------------------------------------------------------- /common/src/main/res/layout/dialog_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/layout/dialog_simple.xml -------------------------------------------------------------------------------- /common/src/main/res/layout/dialog_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/layout/dialog_title.xml -------------------------------------------------------------------------------- /common/src/main/res/layout/radiobutton_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/layout/radiobutton_row.xml -------------------------------------------------------------------------------- /common/src/main/res/menu/paste_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/menu/paste_menu.xml -------------------------------------------------------------------------------- /common/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-fa/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-fil/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-fil/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-he/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-he/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-id/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-id/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-nb/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /common/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-sq/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-sw/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-sw700dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-sw700dp/dimens.xml -------------------------------------------------------------------------------- /common/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-v28/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-v28/styles.xml -------------------------------------------------------------------------------- /common/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-xhdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-xhdpi/dimens.xml -------------------------------------------------------------------------------- /common/src/main/res/values-xxhdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-xxhdpi/dimens.xml -------------------------------------------------------------------------------- /common/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /common/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /common/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /common/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /common/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/common/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /features/exploredash/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /features/exploredash/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/features/exploredash/build.gradle -------------------------------------------------------------------------------- /features/exploredash/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/exploredash/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/features/exploredash/proguard-rules.pro -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/google-services.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/gradle/google-services.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/gradlew.bat -------------------------------------------------------------------------------- /integration-android/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/integration-android/AUTHORS -------------------------------------------------------------------------------- /integration-android/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/integration-android/COPYING -------------------------------------------------------------------------------- /integration-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/integration-android/build.gradle -------------------------------------------------------------------------------- /integrations/coinbase/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /integrations/coinbase/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/integrations/coinbase/build.gradle -------------------------------------------------------------------------------- /integrations/coinbase/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/integrations/coinbase/proguard-rules.pro -------------------------------------------------------------------------------- /integrations/crowdnode/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /integrations/crowdnode/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/integrations/crowdnode/build.gradle -------------------------------------------------------------------------------- /integrations/crowdnode/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/uphold/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /integrations/uphold/ERRORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/integrations/uphold/ERRORS.md -------------------------------------------------------------------------------- /integrations/uphold/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/integrations/uphold/build.gradle -------------------------------------------------------------------------------- /integrations/uphold/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/integrations/uphold/proguard-rules.pro -------------------------------------------------------------------------------- /market/en/home-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/en/home-en.png -------------------------------------------------------------------------------- /market/en/lock-screen-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/en/lock-screen-en.png -------------------------------------------------------------------------------- /market/en/receive-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/en/receive-en.png -------------------------------------------------------------------------------- /market/en/security-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/en/security-en.png -------------------------------------------------------------------------------- /market/en/send-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/en/send-en.png -------------------------------------------------------------------------------- /market/es/home-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/es/home-es.png -------------------------------------------------------------------------------- /market/es/lock-screen-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/es/lock-screen-es.png -------------------------------------------------------------------------------- /market/es/receive-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/es/receive-es.png -------------------------------------------------------------------------------- /market/es/security-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/es/security-es.png -------------------------------------------------------------------------------- /market/es/send-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/es/send-es.png -------------------------------------------------------------------------------- /market/market-app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-app-icon.png -------------------------------------------------------------------------------- /market/market-description-ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-ar.txt -------------------------------------------------------------------------------- /market/market-description-bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-bg.txt -------------------------------------------------------------------------------- /market/market-description-ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-ca.txt -------------------------------------------------------------------------------- /market/market-description-cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-cs.txt -------------------------------------------------------------------------------- /market/market-description-da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-da.txt -------------------------------------------------------------------------------- /market/market-description-de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-de.txt -------------------------------------------------------------------------------- /market/market-description-el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-el.txt -------------------------------------------------------------------------------- /market/market-description-eo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-eo.txt -------------------------------------------------------------------------------- /market/market-description-es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-es.txt -------------------------------------------------------------------------------- /market/market-description-fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-fa.txt -------------------------------------------------------------------------------- /market/market-description-fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-fi.txt -------------------------------------------------------------------------------- /market/market-description-fil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-fil.txt -------------------------------------------------------------------------------- /market/market-description-fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-fr.txt -------------------------------------------------------------------------------- /market/market-description-he.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-he.txt -------------------------------------------------------------------------------- /market/market-description-hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-hi.txt -------------------------------------------------------------------------------- /market/market-description-hr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-hr.txt -------------------------------------------------------------------------------- /market/market-description-hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-hu.txt -------------------------------------------------------------------------------- /market/market-description-id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-id.txt -------------------------------------------------------------------------------- /market/market-description-it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-it.txt -------------------------------------------------------------------------------- /market/market-description-iw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-iw.txt -------------------------------------------------------------------------------- /market/market-description-ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-ja.txt -------------------------------------------------------------------------------- /market/market-description-ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-ko.txt -------------------------------------------------------------------------------- /market/market-description-mk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-mk.txt -------------------------------------------------------------------------------- /market/market-description-nb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-nb.txt -------------------------------------------------------------------------------- /market/market-description-nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-nl.txt -------------------------------------------------------------------------------- /market/market-description-pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-pl.txt -------------------------------------------------------------------------------- /market/market-description-pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-pt.txt -------------------------------------------------------------------------------- /market/market-description-ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-ro.txt -------------------------------------------------------------------------------- /market/market-description-ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-ru.txt -------------------------------------------------------------------------------- /market/market-description-sk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-sk.txt -------------------------------------------------------------------------------- /market/market-description-sl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-sl.txt -------------------------------------------------------------------------------- /market/market-description-sq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-sq.txt -------------------------------------------------------------------------------- /market/market-description-sr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-sr.txt -------------------------------------------------------------------------------- /market/market-description-sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-sv.txt -------------------------------------------------------------------------------- /market/market-description-th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-th.txt -------------------------------------------------------------------------------- /market/market-description-tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-tr.txt -------------------------------------------------------------------------------- /market/market-description-uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-uk.txt -------------------------------------------------------------------------------- /market/market-description-vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-vi.txt -------------------------------------------------------------------------------- /market/market-description-zh-TW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-zh-TW.txt -------------------------------------------------------------------------------- /market/market-description-zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description-zh.txt -------------------------------------------------------------------------------- /market/market-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-description.txt -------------------------------------------------------------------------------- /market/market-feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-feature-graphic.png -------------------------------------------------------------------------------- /market/market-promo-text-ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-ar.txt -------------------------------------------------------------------------------- /market/market-promo-text-bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-bg.txt -------------------------------------------------------------------------------- /market/market-promo-text-ca.txt: -------------------------------------------------------------------------------- 1 | Els teus Dash, a la teva butxaca! -------------------------------------------------------------------------------- /market/market-promo-text-cs.txt: -------------------------------------------------------------------------------- 1 | Váš Dash, ve vaší kapse! -------------------------------------------------------------------------------- /market/market-promo-text-da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-da.txt -------------------------------------------------------------------------------- /market/market-promo-text-de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-de.txt -------------------------------------------------------------------------------- /market/market-promo-text-el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-el.txt -------------------------------------------------------------------------------- /market/market-promo-text-eo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-eo.txt -------------------------------------------------------------------------------- /market/market-promo-text-es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-es.txt -------------------------------------------------------------------------------- /market/market-promo-text-fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-fa.txt -------------------------------------------------------------------------------- /market/market-promo-text-fi.txt: -------------------------------------------------------------------------------- 1 | Pidä Bitcoinisi omassa taskussasi! 2 | -------------------------------------------------------------------------------- /market/market-promo-text-fil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-fil.txt -------------------------------------------------------------------------------- /market/market-promo-text-fr.txt: -------------------------------------------------------------------------------- 1 | Vos dashs bien à vous, dans votre poche ! -------------------------------------------------------------------------------- /market/market-promo-text-he.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-he.txt -------------------------------------------------------------------------------- /market/market-promo-text-hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-hi.txt -------------------------------------------------------------------------------- /market/market-promo-text-hr.txt: -------------------------------------------------------------------------------- 1 | Tvoji vlastiti Bitcoin-ovi, u tvome džepu! -------------------------------------------------------------------------------- /market/market-promo-text-hu.txt: -------------------------------------------------------------------------------- 1 | Tartsd a zsebedben Dash érméidet! 2 | 3 | -------------------------------------------------------------------------------- /market/market-promo-text-id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-id.txt -------------------------------------------------------------------------------- /market/market-promo-text-it.txt: -------------------------------------------------------------------------------- 1 | I tuoi Dash, in tasca! -------------------------------------------------------------------------------- /market/market-promo-text-iw.txt: -------------------------------------------------------------------------------- 1 | Dash משלך, בכיס שלך! 2 | 3 | -------------------------------------------------------------------------------- /market/market-promo-text-ja.txt: -------------------------------------------------------------------------------- 1 | あなたのDashをいつもポケットに! -------------------------------------------------------------------------------- /market/market-promo-text-ko.txt: -------------------------------------------------------------------------------- 1 | 대쉬, 보안성과 프라이버시가 뛰어난 초고속 암호화 화폐 -------------------------------------------------------------------------------- /market/market-promo-text-mk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-mk.txt -------------------------------------------------------------------------------- /market/market-promo-text-nb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-nb.txt -------------------------------------------------------------------------------- /market/market-promo-text-nl.txt: -------------------------------------------------------------------------------- 1 | Je eigen Dash in jouw broekzak! -------------------------------------------------------------------------------- /market/market-promo-text-pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-pl.txt -------------------------------------------------------------------------------- /market/market-promo-text-pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-pt.txt -------------------------------------------------------------------------------- /market/market-promo-text-ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-ro.txt -------------------------------------------------------------------------------- /market/market-promo-text-ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-ru.txt -------------------------------------------------------------------------------- /market/market-promo-text-sk.txt: -------------------------------------------------------------------------------- 1 | Váš Dash vo vašom vrecku! -------------------------------------------------------------------------------- /market/market-promo-text-sl.txt: -------------------------------------------------------------------------------- 1 | Vaši novci v vašem žepu! -------------------------------------------------------------------------------- /market/market-promo-text-sq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-sq.txt -------------------------------------------------------------------------------- /market/market-promo-text-sr.txt: -------------------------------------------------------------------------------- 1 | Vaš Dash u vašem džepu. -------------------------------------------------------------------------------- /market/market-promo-text-sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-sv.txt -------------------------------------------------------------------------------- /market/market-promo-text-th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-th.txt -------------------------------------------------------------------------------- /market/market-promo-text-tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-tr.txt -------------------------------------------------------------------------------- /market/market-promo-text-uk.txt: -------------------------------------------------------------------------------- 1 | Ваші Dash завжди в кишені! -------------------------------------------------------------------------------- /market/market-promo-text-vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-vi.txt -------------------------------------------------------------------------------- /market/market-promo-text-zh-TW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text-zh-TW.txt -------------------------------------------------------------------------------- /market/market-promo-text-zh.txt: -------------------------------------------------------------------------------- 1 | Dash伴您左右, 由您掌控! -------------------------------------------------------------------------------- /market/market-promo-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/market/market-promo-text.txt -------------------------------------------------------------------------------- /robo-script-7.1-and-above.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/robo-script-7.1-and-above.json -------------------------------------------------------------------------------- /sample-integration-android/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/sample-integration-android/AUTHORS -------------------------------------------------------------------------------- /sample-integration-android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/sample-integration-android/AndroidManifest.xml -------------------------------------------------------------------------------- /sample-integration-android/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/sample-integration-android/COPYING -------------------------------------------------------------------------------- /sample-integration-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/sample-integration-android/build.gradle -------------------------------------------------------------------------------- /sample-integration-android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/sample-integration-android/project.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/settings.gradle -------------------------------------------------------------------------------- /translations/.gitignore: -------------------------------------------------------------------------------- 1 | iOS/ 2 | translation-comparison-report.html -------------------------------------------------------------------------------- /translations/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/translations/.tx/config -------------------------------------------------------------------------------- /translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/translations/README.md -------------------------------------------------------------------------------- /translations/compare-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/translations/compare-strings.py -------------------------------------------------------------------------------- /translations/download-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/translations/download-strings.py -------------------------------------------------------------------------------- /wallet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/.gitignore -------------------------------------------------------------------------------- /wallet/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/AUTHORS -------------------------------------------------------------------------------- /wallet/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/AndroidManifest.xml -------------------------------------------------------------------------------- /wallet/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/CHANGES -------------------------------------------------------------------------------- /wallet/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/COPYING -------------------------------------------------------------------------------- /wallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/README.md -------------------------------------------------------------------------------- /wallet/README.recover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/README.recover.md -------------------------------------------------------------------------------- /wallet/README.specs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/README.specs.md -------------------------------------------------------------------------------- /wallet/androidTest/assets/test_wallet.wallet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/androidTest/assets/test_wallet.wallet -------------------------------------------------------------------------------- /wallet/assets/bip39-wordlists/czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/bip39-wordlists/czech.txt -------------------------------------------------------------------------------- /wallet/assets/bip39-wordlists/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/bip39-wordlists/english.txt -------------------------------------------------------------------------------- /wallet/assets/bip39-wordlists/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/bip39-wordlists/french.txt -------------------------------------------------------------------------------- /wallet/assets/bip39-wordlists/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/bip39-wordlists/italian.txt -------------------------------------------------------------------------------- /wallet/assets/bip39-wordlists/japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/bip39-wordlists/japanese.txt -------------------------------------------------------------------------------- /wallet/assets/bip39-wordlists/korean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/bip39-wordlists/korean.txt -------------------------------------------------------------------------------- /wallet/assets/bip39-wordlists/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/bip39-wordlists/spanish.txt -------------------------------------------------------------------------------- /wallet/assets/checkpoints-testnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/checkpoints-testnet.txt -------------------------------------------------------------------------------- /wallet/assets/checkpoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/checkpoints.txt -------------------------------------------------------------------------------- /wallet/assets/electrum-servers-testnet.txt: -------------------------------------------------------------------------------- 1 | tcp:electrumx-testnet.dash.org 2 | -------------------------------------------------------------------------------- /wallet/assets/electrum-servers.txt: -------------------------------------------------------------------------------- 1 | tcp:electrumx-mainnet.dash.org 2 | -------------------------------------------------------------------------------- /wallet/assets/explore/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallet/assets/fees-testnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/fees-testnet.txt -------------------------------------------------------------------------------- /wallet/assets/fees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/fees.txt -------------------------------------------------------------------------------- /wallet/assets/mnlistdiff.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/mnlistdiff.dat -------------------------------------------------------------------------------- /wallet/assets/qrinfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/assets/qrinfo.dat -------------------------------------------------------------------------------- /wallet/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/build.gradle -------------------------------------------------------------------------------- /wallet/devnet/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/devnet/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallet/devnet/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/devnet/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallet/devnet/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/devnet/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallet/devnet/res/values/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/devnet/res/values/strings-extra.xml -------------------------------------------------------------------------------- /wallet/devnet/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/devnet/res/values/values.xml -------------------------------------------------------------------------------- /wallet/graphics/ic_app_color_48dp-mdpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/graphics/ic_app_color_48dp-mdpi.svg -------------------------------------------------------------------------------- /wallet/graphics/ic_app_color_48dp_beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/graphics/ic_app_color_48dp_beta.svg -------------------------------------------------------------------------------- /wallet/graphics/ic_app_color_48dp_testnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/graphics/ic_app_color_48dp_testnet.svg -------------------------------------------------------------------------------- /wallet/graphics/stat_notify_received-xhdpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/graphics/stat_notify_received-xhdpi.svg -------------------------------------------------------------------------------- /wallet/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/ic_launcher-web.png -------------------------------------------------------------------------------- /wallet/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/proguard.cfg -------------------------------------------------------------------------------- /wallet/proguardTest-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/proguardTest-rules.txt -------------------------------------------------------------------------------- /wallet/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/project.properties -------------------------------------------------------------------------------- /wallet/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/fade_in.xml -------------------------------------------------------------------------------- /wallet/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/fade_out.xml -------------------------------------------------------------------------------- /wallet/res/anim/fragment_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/fragment_in.xml -------------------------------------------------------------------------------- /wallet/res/anim/fragment_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/fragment_out.xml -------------------------------------------------------------------------------- /wallet/res/anim/fragment_slide_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/fragment_slide_down.xml -------------------------------------------------------------------------------- /wallet/res/anim/fragment_slide_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/fragment_slide_up.xml -------------------------------------------------------------------------------- /wallet/res/anim/shake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/shake.xml -------------------------------------------------------------------------------- /wallet/res/anim/shake_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/shake_pin.xml -------------------------------------------------------------------------------- /wallet/res/anim/slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/slide_in_bottom.xml -------------------------------------------------------------------------------- /wallet/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/slide_in_left.xml -------------------------------------------------------------------------------- /wallet/res/anim/slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/slide_in_top.xml -------------------------------------------------------------------------------- /wallet/res/anim/slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/slide_out_bottom.xml -------------------------------------------------------------------------------- /wallet/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/anim/slide_out_right.xml -------------------------------------------------------------------------------- /wallet/res/color/dialog_button_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/color/dialog_button_text.xml -------------------------------------------------------------------------------- /wallet/res/color/round_button_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/color/round_button_text.xml -------------------------------------------------------------------------------- /wallet/res/color/tab_title_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/color/tab_title_color.xml -------------------------------------------------------------------------------- /wallet/res/drawable-hdpi/ic_zenledger_dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-hdpi/ic_zenledger_dash.png -------------------------------------------------------------------------------- /wallet/res/drawable-hdpi/stat_sys_peers_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-hdpi/stat_sys_peers_0.png -------------------------------------------------------------------------------- /wallet/res/drawable-hdpi/stat_sys_peers_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-hdpi/stat_sys_peers_1.png -------------------------------------------------------------------------------- /wallet/res/drawable-hdpi/stat_sys_peers_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-hdpi/stat_sys_peers_2.png -------------------------------------------------------------------------------- /wallet/res/drawable-hdpi/stat_sys_peers_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-hdpi/stat_sys_peers_3.png -------------------------------------------------------------------------------- /wallet/res/drawable-hdpi/stat_sys_peers_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-hdpi/stat_sys_peers_4.png -------------------------------------------------------------------------------- /wallet/res/drawable-mdpi/ic_zenledger_dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-mdpi/ic_zenledger_dash.png -------------------------------------------------------------------------------- /wallet/res/drawable-xhdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-xhdpi/app_icon.png -------------------------------------------------------------------------------- /wallet/res/drawable-xhdpi/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-xhdpi/user1.png -------------------------------------------------------------------------------- /wallet/res/drawable-xhdpi/user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-xhdpi/user2.png -------------------------------------------------------------------------------- /wallet/res/drawable-xhdpi/user3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-xhdpi/user3.png -------------------------------------------------------------------------------- /wallet/res/drawable-xhdpi/user4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-xhdpi/user4.png -------------------------------------------------------------------------------- /wallet/res/drawable-xhdpi/user5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-xhdpi/user5.png -------------------------------------------------------------------------------- /wallet/res/drawable-xhdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable-xhdpi/widget_preview.png -------------------------------------------------------------------------------- /wallet/res/drawable/appwidget_button_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/appwidget_button_left.xml -------------------------------------------------------------------------------- /wallet/res/drawable/appwidget_button_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/appwidget_button_right.xml -------------------------------------------------------------------------------- /wallet/res/drawable/appwidget_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/appwidget_divider.xml -------------------------------------------------------------------------------- /wallet/res/drawable/blue_outline_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/blue_outline_button_bg.xml -------------------------------------------------------------------------------- /wallet/res/drawable/check_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/check_animated.xml -------------------------------------------------------------------------------- /wallet/res/drawable/divider_field.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/divider_field.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_activity_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_activity_info.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_add_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_add_contact.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_add_contact_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_add_contact_white.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_add_new_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_add_new_contact.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_add_stranger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_add_stranger.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_address.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_arrow_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_arrow_down.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_arrow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_arrow_up.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_avatar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_avatar.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_backup_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_backup_info.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_battery.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_battery_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_battery_menu.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_blockchair_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_blockchair_logo.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_blue_bolt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_blue_bolt.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_bolt_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_bolt_border.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_calculator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_calculator.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_camera_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_camera_frame.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_check_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_check_circle.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_check_circle_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_check_circle_empty.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_check_circle_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_check_circle_green.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_check_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_check_white_24dp.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_claimed_invite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_claimed_invite.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_close_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_close_blue.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_close_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_close_white_24dp.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_coinjoin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_coinjoin.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_coinjoin_big.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_coinjoin_big.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_contact.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_contact_added.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_contact_added.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_contact_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_contact_support.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_contacts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_contacts.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_contacts_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_contacts_active.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_contacts_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_contacts_default.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_contacts_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_contacts_focused.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_credits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_credits.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_dash_d_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_dash_d_gray.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_dash_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_dash_round.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_discover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_discover.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_discover_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_discover_active.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_discover_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_discover_default.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_does_not_store.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_does_not_store.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_error.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_error_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_error_circle.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_explore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_explore.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_external_url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_external_url.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_eyes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_eyes.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_face_sad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_face_sad.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_file.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_filter_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_filter_all.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_filter_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_filter_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_filter_received.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_filter_received.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_filter_sent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_filter_sent.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_fingerprint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_fingerprint.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_fingerprint_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_fingerprint_white.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_forgot_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_forgot_pin.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_google_drive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_google_drive.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_gravatar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_gravatar.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_gray_next_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_gray_next_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hide.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_home.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_home_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_home_active.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_home_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_home_default.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hourglass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hourglass.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hourglass_frame_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hourglass_frame_1.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hourglass_frame_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hourglass_frame_2.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hourglass_frame_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hourglass_frame_3.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hourglass_frame_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hourglass_frame_4.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hourglass_frame_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hourglass_frame_5.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hourglass_frame_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hourglass_frame_6.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hourglass_frame_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hourglass_frame_7.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_hourglass_frame_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_hourglass_frame_8.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_ignore_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_ignore_x.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_imgur_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_imgur_logo.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_import.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_internal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_internal.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_invalid_invite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_invalid_invite.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_invitation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_invitation.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_invite_created_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_invite_created_back.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_invite_envelope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_invite_envelope.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_invite_error_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_invite_error_back.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_invite_error_front.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_invite_error_front.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_invite_friends.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_invite_friends.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_join_dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_join_dashpay.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_join_dashpay_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_join_dashpay_red.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_link.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_local_currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_local_currency.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_lock_dash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_lock_dash.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_lock_login_with_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_lock_login_with_pin.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_lock_quick_receive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_lock_quick_receive.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_lock_scan_to_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_lock_scan_to_pay.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_mail_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_mail_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_menu_buy_sell_dash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_menu_buy_sell_dash.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_menu_invite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_menu_invite.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_menu_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_menu_security.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_menu_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_menu_settings.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_menu_tools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_menu_tools.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_mixing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_mixing.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_mixing_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_mixing_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_more.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_more_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_more_active.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_more_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_more_default.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_network_unavailable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_network_unavailable.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_new_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_new_notifications.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_no_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_no_restore.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_not_valid_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_not_valid_qr_code.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_notification.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_notification_bell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_notification_bell.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_notifications.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_passphrase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_passphrase.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_pay_copied_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_pay_copied_address.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_payments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_payments.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_payments_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_payments_active.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_payments_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_payments_default.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_payments_send_by_qr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_payments_send_by_qr.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_pencil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_pencil.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_pencil_slash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_pencil_slash.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_pending_invite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_pending_invite.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_pin_item_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_pin_item_gray.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_pin_item_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_pin_item_more.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_please_wait.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_please_wait.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_please_wait_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_please_wait_0.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_please_wait_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_please_wait_1.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_please_wait_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_please_wait_2.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_please_wait_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_please_wait_3.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_please_wait_arrows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_please_wait_arrows.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_plus_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_plus_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_profile_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_profile_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_profile_qr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_profile_qr.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_protected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_protected.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_rate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_rate.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_red_circle_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_red_circle_minus.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_rescan_blockchain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_rescan_blockchain.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_retry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_retry.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_retry_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_retry_simple.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_scan_qr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_scan_qr.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_secured_by.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_secured_by.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_select_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_select_image.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_send_to_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_send_to_address.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_shortcut_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_shortcut_add.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_shortcut_atm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_shortcut_atm.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_shortcut_import_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_shortcut_import_key.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_shortcut_secure_now.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_shortcut_secure_now.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_shortcut_staking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_shortcut_staking.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_shortcuts.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_show_balance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_show_balance.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_shuffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_shuffle.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_take_picture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_take_picture.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_thumb_down_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_thumb_down_red.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_thumb_down_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_thumb_down_white.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_thumb_up_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_thumb_up_blue.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_thumb_up_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_thumb_up_fill.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_thumb_up_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_thumb_up_white.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_toggle_arrows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_toggle_arrows.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_transaction_failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_transaction_failed.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_transaction_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_transaction_filter.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_transaction_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_transaction_info.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_transaction_sent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_transaction_sent.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_user_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_user_list.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_user_privacy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_user_privacy.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_user_search_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_user_search_loading.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_username_voting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_username_voting.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_verify_identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_verify_identity.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_voting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_voting.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_voting_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_voting_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_warning_triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_warning_triangle.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_where_to_spend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_where_to_spend.xml -------------------------------------------------------------------------------- /wallet/res/drawable/ic_zenledger_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/ic_zenledger_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/identity_complete_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/identity_complete_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/identity_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/identity_processing.xml -------------------------------------------------------------------------------- /wallet/res/drawable/inverted_contact_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/inverted_contact_icon.xml -------------------------------------------------------------------------------- /wallet/res/drawable/left_round_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/left_round_button.xml -------------------------------------------------------------------------------- /wallet/res/drawable/left_round_corners.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/left_round_corners.xml -------------------------------------------------------------------------------- /wallet/res/drawable/light_orange_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/light_orange_circle.xml -------------------------------------------------------------------------------- /wallet/res/drawable/notifications_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/notifications_button.xml -------------------------------------------------------------------------------- /wallet/res/drawable/pin_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/pin_item.xml -------------------------------------------------------------------------------- /wallet/res/drawable/pin_item_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/pin_item_white.xml -------------------------------------------------------------------------------- /wallet/res/drawable/please_wait_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/please_wait_anim.xml -------------------------------------------------------------------------------- /wallet/res/drawable/right_round_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/right_round_button.xml -------------------------------------------------------------------------------- /wallet/res/drawable/right_round_corners.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/right_round_corners.xml -------------------------------------------------------------------------------- /wallet/res/drawable/round_background_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/round_background_gray.xml -------------------------------------------------------------------------------- /wallet/res/drawable/round_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/round_checkbox.xml -------------------------------------------------------------------------------- /wallet/res/drawable/round_checkbox_checked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/round_checkbox_checked.xml -------------------------------------------------------------------------------- /wallet/res/drawable/round_corner_bgd_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/round_corner_bgd_white.xml -------------------------------------------------------------------------------- /wallet/res/drawable/round_corners_gray_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/round_corners_gray_bg.xml -------------------------------------------------------------------------------- /wallet/res/drawable/rounded_gray_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/rounded_gray_frame.xml -------------------------------------------------------------------------------- /wallet/res/drawable/security_filled_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/security_filled_blue.xml -------------------------------------------------------------------------------- /wallet/res/drawable/security_filled_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/security_filled_green.xml -------------------------------------------------------------------------------- /wallet/res/drawable/security_filled_orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/security_filled_orange.xml -------------------------------------------------------------------------------- /wallet/res/drawable/security_filled_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/security_filled_red.xml -------------------------------------------------------------------------------- /wallet/res/drawable/seekbar_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/seekbar_line.xml -------------------------------------------------------------------------------- /wallet/res/drawable/seekbar_step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/seekbar_step.xml -------------------------------------------------------------------------------- /wallet/res/drawable/seekbar_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/seekbar_thumb.xml -------------------------------------------------------------------------------- /wallet/res/drawable/shortcut_request_coins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/shortcut_request_coins.xml -------------------------------------------------------------------------------- /wallet/res/drawable/shortcut_scan_qr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/shortcut_scan_qr.xml -------------------------------------------------------------------------------- /wallet/res/drawable/splash_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/splash_background.xml -------------------------------------------------------------------------------- /wallet/res/drawable/stat_sys_peers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/stat_sys_peers.xml -------------------------------------------------------------------------------- /wallet/res/drawable/transaction_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/transaction_metadata.xml -------------------------------------------------------------------------------- /wallet/res/drawable/view_shadow_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/view_shadow_bottom.xml -------------------------------------------------------------------------------- /wallet/res/drawable/white_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/white_progress.xml -------------------------------------------------------------------------------- /wallet/res/drawable/word_button_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/drawable/word_button_drawable.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_about.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_accept_invite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_accept_invite.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_app_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_app_update.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_block_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_block_info.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_coinjoin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_coinjoin.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_create_username.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_create_username.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_crop_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_crop_image.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_dashpay_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_dashpay_user.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_edit_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_edit_profile.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_explore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_explore.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_forgot_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_forgot_pin.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_fragment_holder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_fragment_holder.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_invite_friends.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_invite_friends.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_lock_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_lock_screen.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_main.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_notifications.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_onboarding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_onboarding.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_phrasewordcount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_phrasewordcount.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_quick_receive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_quick_receive.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_send_coins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_send_coins.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_set_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_set_pin.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_staking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_staking.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_sweep_wallet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_sweep_wallet.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_verify_seed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_verify_seed.xml -------------------------------------------------------------------------------- /wallet/res/layout/activity_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/activity_welcome.xml -------------------------------------------------------------------------------- /wallet/res/layout/address_book_onepane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/address_book_onepane.xml -------------------------------------------------------------------------------- /wallet/res/layout/address_book_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/address_book_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/address_book_twopanes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/address_book_twopanes.xml -------------------------------------------------------------------------------- /wallet/res/layout/alert_dialog_button_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/alert_dialog_button_bar.xml -------------------------------------------------------------------------------- /wallet/res/layout/backup_wallet_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/backup_wallet_dialog.xml -------------------------------------------------------------------------------- /wallet/res/layout/bitmap_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/bitmap_dialog.xml -------------------------------------------------------------------------------- /wallet/res/layout/block_explorer_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/block_explorer_content.xml -------------------------------------------------------------------------------- /wallet/res/layout/block_list_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/block_list_fragment.xml -------------------------------------------------------------------------------- /wallet/res/layout/block_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/block_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/block_row_transaction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/block_row_transaction.xml -------------------------------------------------------------------------------- /wallet/res/layout/contact_header_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/contact_header_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/contact_request_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/contact_request_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/contact_request_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/contact_request_view.xml -------------------------------------------------------------------------------- /wallet/res/layout/contact_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/contact_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/contacts_empty_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/contacts_empty_result.xml -------------------------------------------------------------------------------- /wallet/res/layout/contacts_list_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/contacts_list_layout.xml -------------------------------------------------------------------------------- /wallet/res/layout/custom_spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/custom_spinner_item.xml -------------------------------------------------------------------------------- /wallet/res/layout/dash_fiat_amount_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dash_fiat_amount_layout.xml -------------------------------------------------------------------------------- /wallet/res/layout/dashpay_contact_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dashpay_contact_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_compose_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_compose_container.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_confirm_topup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_confirm_topup.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_contact_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_contact_support.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_image_upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_image_upload.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_input_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_input_text.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_invite_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_invite_filter.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_mix_dash_first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_mix_dash_first.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_one_vote_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_one_vote_left.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_private_memo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_private_memo.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_quick_vote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_quick_vote.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_receive_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_receive_details.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_select_picture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_select_picture.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_what_are_credits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_what_are_credits.xml -------------------------------------------------------------------------------- /wallet/res/layout/dialog_zenledger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/dialog_zenledger.xml -------------------------------------------------------------------------------- /wallet/res/layout/encrypt_keys_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/encrypt_keys_dialog.xml -------------------------------------------------------------------------------- /wallet/res/layout/exchange_rate_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/exchange_rate_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/exchange_rates_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/exchange_rates_content.xml -------------------------------------------------------------------------------- /wallet/res/layout/exchange_rates_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/exchange_rates_fragment.xml -------------------------------------------------------------------------------- /wallet/res/layout/fancy_list_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fancy_list_content.xml -------------------------------------------------------------------------------- /wallet/res/layout/fingerprint_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fingerprint_view.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_accept_invite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_accept_invite.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_add_voting_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_add_voting_keys.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_address_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_address_input.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_coinjoin_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_coinjoin_info.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_coinjoin_level.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_coinjoin_level.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_contacts_root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_contacts_root.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_create_username.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_create_username.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_enter_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_enter_pin.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_invite_created.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_invite_created.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_invite_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_invite_details.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_invite_friend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_invite_friend.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_invite_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_invite_welcome.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_invites_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_invites_history.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_more.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_notifications.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_payments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_payments.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_payments_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_payments_pay.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_receive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_receive.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_security.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_settings.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_show_seed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_show_seed.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_tools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_tools.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_verify_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_verify_info.xml -------------------------------------------------------------------------------- /wallet/res/layout/fragment_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/fragment_welcome.xml -------------------------------------------------------------------------------- /wallet/res/layout/frequent_contact_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/frequent_contact_item.xml -------------------------------------------------------------------------------- /wallet/res/layout/history_header_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/history_header_view.xml -------------------------------------------------------------------------------- /wallet/res/layout/home_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/home_content.xml -------------------------------------------------------------------------------- /wallet/res/layout/invite_history_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/invite_history_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/item_service_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/item_service_list.xml -------------------------------------------------------------------------------- /wallet/res/layout/join_dashpay_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/join_dashpay_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/lock_fingerprint_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/lock_fingerprint_view.xml -------------------------------------------------------------------------------- /wallet/res/layout/lock_screen_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/lock_screen_button.xml -------------------------------------------------------------------------------- /wallet/res/layout/masternode_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/masternode_fragment.xml -------------------------------------------------------------------------------- /wallet/res/layout/masternode_key_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/masternode_key_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/network_unavailable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/network_unavailable.xml -------------------------------------------------------------------------------- /wallet/res/layout/no_contacts_results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/no_contacts_results.xml -------------------------------------------------------------------------------- /wallet/res/layout/notification_image_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/notification_image_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/peer_list_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/peer_list_fragment.xml -------------------------------------------------------------------------------- /wallet/res/layout/peer_list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/peer_list_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/peer_monitor_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/peer_monitor_content.xml -------------------------------------------------------------------------------- /wallet/res/layout/pin_preview_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/pin_preview_view.xml -------------------------------------------------------------------------------- /wallet/res/layout/report_issue_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/report_issue_dialog.xml -------------------------------------------------------------------------------- /wallet/res/layout/restore_wallet_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/restore_wallet_dialog.xml -------------------------------------------------------------------------------- /wallet/res/layout/row_separator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/row_separator.xml -------------------------------------------------------------------------------- /wallet/res/layout/scan_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/scan_activity.xml -------------------------------------------------------------------------------- /wallet/res/layout/send_coins_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/send_coins_fragment.xml -------------------------------------------------------------------------------- /wallet/res/layout/shortcut_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/shortcut_button.xml -------------------------------------------------------------------------------- /wallet/res/layout/sweep_wallet_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/sweep_wallet_fragment.xml -------------------------------------------------------------------------------- /wallet/res/layout/sync_status_pane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/sync_status_pane.xml -------------------------------------------------------------------------------- /wallet/res/layout/tab_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/tab_title.xml -------------------------------------------------------------------------------- /wallet/res/layout/transaction_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/transaction_row.xml -------------------------------------------------------------------------------- /wallet/res/layout/unlock_wallet_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/unlock_wallet_dialog.xml -------------------------------------------------------------------------------- /wallet/res/layout/update_profile_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/update_profile_error.xml -------------------------------------------------------------------------------- /wallet/res/layout/upload_policy_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/upload_policy_dialog.xml -------------------------------------------------------------------------------- /wallet/res/layout/user_search_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/user_search_loading.xml -------------------------------------------------------------------------------- /wallet/res/layout/username_request_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/username_request_view.xml -------------------------------------------------------------------------------- /wallet/res/layout/users_orbit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/users_orbit.xml -------------------------------------------------------------------------------- /wallet/res/layout/verify_seed_word_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/verify_seed_word_tv.xml -------------------------------------------------------------------------------- /wallet/res/layout/view_masternode_ip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/view_masternode_ip.xml -------------------------------------------------------------------------------- /wallet/res/layout/wallet_address_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/layout/wallet_address_dialog.xml -------------------------------------------------------------------------------- /wallet/res/menu/blocks_context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/menu/blocks_context.xml -------------------------------------------------------------------------------- /wallet/res/menu/bottom_navigation_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/menu/bottom_navigation_menu.xml -------------------------------------------------------------------------------- /wallet/res/menu/close_button_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/menu/close_button_options.xml -------------------------------------------------------------------------------- /wallet/res/menu/contacts_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/menu/contacts_menu.xml -------------------------------------------------------------------------------- /wallet/res/menu/wallet_addresses_context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/menu/wallet_addresses_context.xml -------------------------------------------------------------------------------- /wallet/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /wallet/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallet/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallet/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallet/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallet/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallet/res/navigation/nav_coinjoin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/navigation/nav_coinjoin.xml -------------------------------------------------------------------------------- /wallet/res/navigation/nav_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/navigation/nav_home.xml -------------------------------------------------------------------------------- /wallet/res/navigation/nav_invite_friends.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/navigation/nav_invite_friends.xml -------------------------------------------------------------------------------- /wallet/res/navigation/nav_quick_receive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/navigation/nav_quick_receive.xml -------------------------------------------------------------------------------- /wallet/res/navigation/nav_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/navigation/nav_send.xml -------------------------------------------------------------------------------- /wallet/res/navigation/nav_username.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/navigation/nav_username.xml -------------------------------------------------------------------------------- /wallet/res/navigation/nav_verify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/navigation/nav_verify.xml -------------------------------------------------------------------------------- /wallet/res/navigation/nav_voting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/navigation/nav_voting.xml -------------------------------------------------------------------------------- /wallet/res/raw/coins_received.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/raw/coins_received.wav -------------------------------------------------------------------------------- /wallet/res/raw/mixing_anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/raw/mixing_anim.json -------------------------------------------------------------------------------- /wallet/res/raw/send_coins_broadcast_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/raw/send_coins_broadcast_1.wav -------------------------------------------------------------------------------- /wallet/res/values-ar/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ar/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ar/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-bg/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-bg/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-bg/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ca/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-cs/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-cs/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-cs/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-da/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-da/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-da/values.xml -------------------------------------------------------------------------------- /wallet/res/values-de/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-de/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-de/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-de/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-de/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-de/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-de/values.xml -------------------------------------------------------------------------------- /wallet/res/values-el/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-el/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-el/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-el/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-el/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-eo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-eo/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-es/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-es/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-es/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-es/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-es/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-es/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-es/values.xml -------------------------------------------------------------------------------- /wallet/res/values-fa/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fa/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-fa/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fa/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fa/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fi/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-fil/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fil/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-fil/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fil/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-fil/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fil/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-fr/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fr/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-fr/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fr/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fr/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-fr/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-fr/values.xml -------------------------------------------------------------------------------- /wallet/res/values-h400dp/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-h400dp/layouts.xml -------------------------------------------------------------------------------- /wallet/res/values-hdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-hdpi/dimens.xml -------------------------------------------------------------------------------- /wallet/res/values-he/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-he/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-hr/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-hu/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-id/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-id/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-id/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-id/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-id/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-id/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-it/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-it/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-it/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-it/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-it/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-iw/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-ja/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ja/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-ja/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ja/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ja/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-ko/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ko/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-ko/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ko/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ko/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-large-land/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-large-land/layouts.xml -------------------------------------------------------------------------------- /wallet/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-large/dimens.xml -------------------------------------------------------------------------------- /wallet/res/values-large/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-large/layouts.xml -------------------------------------------------------------------------------- /wallet/res/values-mk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-mk/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-nb/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-nb/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-nb/values.xml -------------------------------------------------------------------------------- /wallet/res/values-nl/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-nl/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-nl/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-nl/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-nl/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-normal-land/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-normal-land/layouts.xml -------------------------------------------------------------------------------- /wallet/res/values-normal/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-normal/layouts.xml -------------------------------------------------------------------------------- /wallet/res/values-pl/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-pl/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-pl/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-pl/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-pl/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-pt/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-pt/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-pt/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-pt/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-pt/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-ro/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ro/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ro/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-ru/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ru/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-ru/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ru/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-ru/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-sk/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sk/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-sk/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sk/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sk/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-sl/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sl/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sl/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-small/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-small/dimens.xml -------------------------------------------------------------------------------- /wallet/res/values-small/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-small/layouts.xml -------------------------------------------------------------------------------- /wallet/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sq/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-sr/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sr/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sr/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sv/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-sw/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-th/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-th/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-th/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-tr/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-tr/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-tr/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-tr/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-tr/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-uk/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-uk/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-uk/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-uk/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-uk/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-vi/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-vi/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-vi/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-w1000dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-w1000dp/dimens.xml -------------------------------------------------------------------------------- /wallet/res/values-w400dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-w400dp/dimens.xml -------------------------------------------------------------------------------- /wallet/res/values-xhdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-xhdpi/dimens.xml -------------------------------------------------------------------------------- /wallet/res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-xlarge/dimens.xml -------------------------------------------------------------------------------- /wallet/res/values-xlarge/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-xlarge/layouts.xml -------------------------------------------------------------------------------- /wallet/res/values-xxhdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-xxhdpi/dimens.xml -------------------------------------------------------------------------------- /wallet/res/values-zh-rTW/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-zh-rTW/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-zh-rTW/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-zh-rTW/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /wallet/res/values-zh-rTW/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-zh-rTW/values.xml -------------------------------------------------------------------------------- /wallet/res/values-zh/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-zh/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values-zh/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-zh/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values-zh/strings.xml -------------------------------------------------------------------------------- /wallet/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/attrs.xml -------------------------------------------------------------------------------- /wallet/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/colors.xml -------------------------------------------------------------------------------- /wallet/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/dimens.xml -------------------------------------------------------------------------------- /wallet/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /wallet/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/ids.xml -------------------------------------------------------------------------------- /wallet/res/values/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/layouts.xml -------------------------------------------------------------------------------- /wallet/res/values/strings-dashpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/strings-dashpay.xml -------------------------------------------------------------------------------- /wallet/res/values/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/strings-extra.xml -------------------------------------------------------------------------------- /wallet/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/strings.xml -------------------------------------------------------------------------------- /wallet/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/styles.xml -------------------------------------------------------------------------------- /wallet/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/values/values.xml -------------------------------------------------------------------------------- /wallet/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /wallet/res/xml/file_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/xml/file_provider.xml -------------------------------------------------------------------------------- /wallet/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /wallet/res/xml/preference_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/xml/preference_about.xml -------------------------------------------------------------------------------- /wallet/res/xml/preference_diagnostics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/xml/preference_diagnostics.xml -------------------------------------------------------------------------------- /wallet/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /wallet/res/xml/wallet_balance_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/res/xml/wallet_balance_widget.xml -------------------------------------------------------------------------------- /wallet/src/de/schildbach/wallet/util/Io.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/src/de/schildbach/wallet/util/Io.java -------------------------------------------------------------------------------- /wallet/staging/res/values/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/staging/res/values/strings-extra.xml -------------------------------------------------------------------------------- /wallet/staging/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/staging/res/values/values.xml -------------------------------------------------------------------------------- /wallet/staging/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/staging/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /wallet/testNet3/res/values/strings-extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/testNet3/res/values/strings-extra.xml -------------------------------------------------------------------------------- /wallet/testNet3/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/testNet3/res/values/values.xml -------------------------------------------------------------------------------- /wallet/testNet3/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dash-wallet/HEAD/wallet/testNet3/res/xml/shortcuts.xml --------------------------------------------------------------------------------