├── .bartycrouch.toml ├── .clang-format ├── .claude ├── agents │ ├── AI-DEVELOPMENT-GUIDE.md │ ├── EXTERNAL-INTEGRATIONS.md │ ├── MCP-CONFIGURATION-GUIDE.md │ ├── PROJECT-FUNCTIONS.md │ ├── ios-development-patterns.md │ ├── ios-rust-engineer.md │ ├── ios-swift-safety-patterns.md │ └── location-mapping-patterns.md └── verify-mcp.sh ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── semantic-pull-request.yml ├── .gitignore ├── .gitmodules ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── .travis.yml ├── .tx └── config ├── BUILD.md ├── CLAUDE.md ├── DEVELOPER-NOTES.md ├── DWUpholdMainnetConstants__Empty.m ├── DashPay ├── Assets │ └── DPAssets.xcassets │ │ ├── Contents.json │ │ ├── icon_info.imageset │ │ ├── Contents.json │ │ ├── icon_info.png │ │ ├── icon_info@2x.png │ │ └── icon_info@3x.png │ │ └── pay_user_accessory.imageset │ │ ├── Contents.json │ │ ├── pay_user_accessory.png │ │ ├── pay_user_accessory@2x.png │ │ └── pay_user_accessory@3x.png ├── Presentation │ ├── Containers │ │ ├── DWFullScreenModalControllerViewController.h │ │ └── DWFullScreenModalControllerViewController.m │ ├── Error │ │ ├── DWNetworkErrorViewController.h │ │ └── DWNetworkErrorViewController.m │ ├── Filter View │ │ └── DWFilterHeaderView.xib │ ├── Home │ │ ├── Cells │ │ │ ├── DWFilterHeaderView.h │ │ │ ├── DWFilterHeaderView.m │ │ │ └── DWFilterHeaderView.xib │ │ ├── DWDashPayReadyProtocol.h │ │ └── Views │ │ │ └── DashPayProfileView.swift │ ├── InfoPopup │ │ ├── DWInfoPopupContentView.h │ │ ├── DWInfoPopupContentView.m │ │ ├── DWInfoPopupViewController.h │ │ └── DWInfoPopupViewController.m │ ├── Profile │ │ ├── EditProfile │ │ │ ├── Avatar │ │ │ │ ├── DWAvatarEditSelectorViewController.h │ │ │ │ ├── DWAvatarEditSelectorViewController.m │ │ │ │ └── Views │ │ │ │ │ ├── DWAvatarEditSelectorContentView.h │ │ │ │ │ └── DWAvatarEditSelectorContentView.m │ │ │ ├── DWCropAvatarViewController.h │ │ │ ├── DWCropAvatarViewController.m │ │ │ ├── DWEditProfileViewController.h │ │ │ ├── DWEditProfileViewController.m │ │ │ ├── External Sources │ │ │ │ ├── DWAvatarGravatarViewController.h │ │ │ │ ├── DWAvatarGravatarViewController.m │ │ │ │ ├── DWAvatarPublicURLViewController.h │ │ │ │ ├── DWAvatarPublicURLViewController.m │ │ │ │ └── Skeleton │ │ │ │ │ ├── DWExternalSourceViewController.h │ │ │ │ │ ├── DWExternalSourceViewController.m │ │ │ │ │ └── Views │ │ │ │ │ ├── DWAvatarExternalLoadingView.h │ │ │ │ │ ├── DWAvatarExternalLoadingView.m │ │ │ │ │ ├── DWAvatarExternalSourceConfig.h │ │ │ │ │ ├── DWAvatarExternalSourceConfig.m │ │ │ │ │ ├── DWAvatarExternalSourceView.h │ │ │ │ │ └── DWAvatarExternalSourceView.m │ │ │ ├── Imgur │ │ │ │ ├── DWImgurInfoChildView.h │ │ │ │ ├── DWImgurInfoChildView.m │ │ │ │ ├── DWImgurInfoViewController.h │ │ │ │ ├── DWImgurInfoViewController.m │ │ │ │ ├── DWImgurItemView.h │ │ │ │ └── DWImgurItemView.m │ │ │ ├── SaveAlert │ │ │ │ ├── DWSaveAlertChildView.h │ │ │ │ ├── DWSaveAlertChildView.m │ │ │ │ ├── DWSaveAlertViewController.h │ │ │ │ └── DWSaveAlertViewController.m │ │ │ ├── Upload │ │ │ │ ├── DWHourGlassAnimationView.h │ │ │ │ ├── DWHourGlassAnimationView.m │ │ │ │ ├── DWUploadAvatarChildView.h │ │ │ │ ├── DWUploadAvatarChildView.m │ │ │ │ ├── DWUploadAvatarModel.h │ │ │ │ ├── DWUploadAvatarModel.m │ │ │ │ ├── DWUploadAvatarViewController.h │ │ │ │ └── DWUploadAvatarViewController.m │ │ │ ├── Utils │ │ │ │ ├── DWFaceDetector.h │ │ │ │ └── DWFaceDetector.m │ │ │ └── Views │ │ │ │ ├── CellModels │ │ │ │ ├── Base │ │ │ │ │ ├── DWTextFieldFormCellModel.h │ │ │ │ │ ├── DWTextFieldFormCellModel.m │ │ │ │ │ ├── DWTextInputFormTableViewCell.h │ │ │ │ │ ├── DWTextViewFormCellModel.h │ │ │ │ │ └── DWTextViewFormCellModel.m │ │ │ │ ├── DWProfileAboutCellModel.h │ │ │ │ ├── DWProfileAboutCellModel.m │ │ │ │ ├── DWProfileDisplayNameCellModel.h │ │ │ │ └── DWProfileDisplayNameCellModel.m │ │ │ │ ├── DWEditProfileAvatarView.h │ │ │ │ ├── DWEditProfileAvatarView.m │ │ │ │ ├── DWEditProfileBaseCell.h │ │ │ │ ├── DWEditProfileBaseCell.m │ │ │ │ ├── DWEditProfileTextFieldCell.h │ │ │ │ ├── DWEditProfileTextFieldCell.m │ │ │ │ ├── DWEditProfileTextViewCell.h │ │ │ │ └── DWEditProfileTextViewCell.m │ │ ├── UserProfile │ │ │ ├── DWCurrentUserProfileView.h │ │ │ ├── DWCurrentUserProfileView.m │ │ │ ├── DWErrorUpdatingUserProfileView.h │ │ │ ├── DWErrorUpdatingUserProfileView.m │ │ │ ├── DWUpdatingUserProfileView.h │ │ │ ├── DWUpdatingUserProfileView.m │ │ │ ├── DWUserProfileContainerView.h │ │ │ ├── DWUserProfileContainerView.m │ │ │ └── Models │ │ │ │ ├── DSBlockchainIdentity+DWDisplayTitleSubtitle.h │ │ │ │ ├── DSBlockchainIdentity+DWDisplayTitleSubtitle.m │ │ │ │ ├── DWDPUpdateProfileModel.h │ │ │ │ └── DWDPUpdateProfileModel.m │ │ └── UserProfileModalQR │ │ │ ├── DWDWUserProfileModalQRContentView.h │ │ │ ├── DWUserProfileModalQRContentView.h │ │ │ ├── DWUserProfileModalQRContentView.m │ │ │ ├── DWUserProfileModalQRViewController.h │ │ │ └── DWUserProfileModalQRViewController.m │ ├── Setup │ │ ├── ConfirmUsername │ │ │ ├── DWConfirmUsernameViewController.h │ │ │ ├── DWConfirmUsernameViewController.m │ │ │ └── Views │ │ │ │ ├── DWConfirmUsernameContentView.h │ │ │ │ ├── DWConfirmUsernameContentView.m │ │ │ │ └── DWConfirmUsernameContentView.xib │ │ ├── CreateUsername │ │ │ ├── DWCreateUsernameViewController.h │ │ │ ├── DWCreateUsernameViewController.m │ │ │ ├── DWInputUsernameViewController.h │ │ │ ├── DWInputUsernameViewController.m │ │ │ ├── Models │ │ │ │ ├── DWAllowedCharactersUsernameValidationRule.h │ │ │ │ ├── DWAllowedCharactersUsernameValidationRule.m │ │ │ │ ├── DWCheckExistenceUsernameValidationRule.h │ │ │ │ ├── DWCheckExistenceUsernameValidationRule.m │ │ │ │ ├── DWFirstUsernameSymbolValidationRule.h │ │ │ │ ├── DWFirstUsernameSymbolValidationRule.m │ │ │ │ ├── DWLengthUsernameValidationRule.h │ │ │ │ ├── DWLengthUsernameValidationRule.m │ │ │ │ ├── DWUsernameValidationRule+Protected.h │ │ │ │ ├── DWUsernameValidationRule.h │ │ │ │ └── DWUsernameValidationRule.m │ │ │ └── Views │ │ │ │ ├── DWPlanetarySystemView.h │ │ │ │ ├── DWPlanetarySystemView.m │ │ │ │ ├── DWTextField.h │ │ │ │ ├── DWTextField.m │ │ │ │ ├── DWUsernameHeaderView.h │ │ │ │ ├── DWUsernameHeaderView.m │ │ │ │ ├── DWUsernameValidationView.h │ │ │ │ └── DWUsernameValidationView.m │ │ └── RegistrationCompleted │ │ │ ├── DWRegistrationCompletedViewController.h │ │ │ └── DWRegistrationCompletedViewController.m │ ├── Shared │ │ ├── Autolayout │ │ │ ├── NSArray+DWFlatten.h │ │ │ ├── NSArray+DWFlatten.m │ │ │ ├── NSLayoutConstraint+DWAutolayout.h │ │ │ ├── NSLayoutConstraint+DWAutolayout.m │ │ │ ├── UIView+DWAutolayout.h │ │ │ └── UIView+DWAutolayout.m │ │ ├── Buttons │ │ │ ├── DWBaseActionButton.h │ │ │ ├── DWBaseActionButton.m │ │ │ ├── DWBasePressableControl.h │ │ │ ├── DWBasePressableControl.m │ │ │ ├── DWBorderedActionButton.h │ │ │ ├── DWBorderedActionButton.m │ │ │ ├── DWButton.h │ │ │ ├── DWButton.m │ │ │ ├── DWColoredButton.h │ │ │ ├── DWColoredButton.m │ │ │ ├── DWPressableButton.h │ │ │ └── DWPressableButton.m │ │ ├── DPAlert │ │ │ ├── DPAlertChildContentsView.h │ │ │ ├── DPAlertChildContentsView.m │ │ │ ├── DPAlertViewController.h │ │ │ └── DPAlertViewController.m │ │ ├── DWDPAvatarView.h │ │ ├── DWDPAvatarView.m │ │ ├── DWScrollingViewController.h │ │ ├── DWScrollingViewController.m │ │ ├── UIImageView+DWDPAvatar.h │ │ └── UIImageView+DWDPAvatar.m │ └── Tx Details │ │ ├── DWTxDetailPopupViewController.h │ │ └── DWTxDetailPopupViewController.m └── dashpay-info.plist ├── DashSyncCurrentCommit ├── DashWallet.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── DashWalletScreenshotsUITests.xcscheme │ ├── TodayExtension.xcscheme │ ├── WatchApp Extension.xcscheme │ ├── WatchApp.xcscheme │ ├── dashpay.xcscheme │ └── dashwallet.xcscheme ├── DashWallet.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDETemplateMacros.plist │ └── IDEWorkspaceChecks.plist ├── DashWallet ├── AppDelegate.h ├── AppDelegate.m ├── DashWallet-Prefix.pch ├── DashWallet.xcdatamodeld │ ├── .xccurrentversion │ ├── BreadWallet 2.xcdatamodel │ │ └── contents │ └── BreadWallet.xcdatamodel │ │ └── contents ├── Info.plist ├── LaunchScreen.storyboard ├── PrivacyInfo.xcprivacy ├── Resources │ ├── AppAssets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── icon_20pt.png │ │ │ ├── icon_20pt@2x-1.png │ │ │ ├── icon_20pt@2x.png │ │ │ ├── icon_20pt@3x.png │ │ │ ├── icon_29pt.png │ │ │ ├── icon_29pt@2x-1.png │ │ │ ├── icon_29pt@2x.png │ │ │ ├── icon_29pt@3x.png │ │ │ ├── icon_40pt.png │ │ │ ├── icon_40pt@2x-1.png │ │ │ ├── icon_40pt@2x.png │ │ │ ├── icon_40pt@3x.png │ │ │ ├── icon_60pt@2x.png │ │ │ ├── icon_60pt@3x.png │ │ │ ├── icon_76pt.png │ │ │ ├── icon_76pt@2x.png │ │ │ └── icon_83.5@2x.png │ │ ├── CoinJoin │ │ │ ├── Contents.json │ │ │ ├── image.battery.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── battery.png │ │ │ │ ├── battery@2x.png │ │ │ │ └── battery@3x.png │ │ │ ├── image.coinjoin.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── coinjoin.png │ │ │ │ ├── coinjoin@2x.png │ │ │ │ └── coinjoin@3x.png │ │ │ ├── image.dash.lock.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── lock.png │ │ │ │ ├── lock@2x.png │ │ │ │ └── lock@3x.png │ │ │ ├── image.locked.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 􀙨.png │ │ │ │ ├── 􀙨@2x.png │ │ │ │ └── 􀙨@3x.png │ │ │ ├── image.protected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 􁃘.png │ │ │ │ ├── 􁃘@2x.png │ │ │ │ └── 􁃘@3x.png │ │ │ └── image.shuffle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shuffle.png │ │ │ │ ├── shuffle@2x.png │ │ │ │ └── shuffle@3x.png │ │ ├── Coinbase.imageset │ │ │ ├── Contents.json │ │ │ ├── Group.png │ │ │ ├── Group@2x.png │ │ │ └── Group@3x.png │ │ ├── Coinbase │ │ │ ├── Contents.json │ │ │ ├── coinbase.contact.support.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── coinbase.converter.switch.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── switch.png │ │ │ │ ├── switch@2x.png │ │ │ │ └── switch@3x.png │ │ │ ├── coinbase.failure.operation.status.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── coinbase.fee.info.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── coinbase.payment-method.applepay.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── apple.pay.png │ │ │ │ ├── apple.pay@2x.png │ │ │ │ └── apple.pay@3x.png │ │ │ ├── coinbase.payment-method.bank.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bank.png │ │ │ │ ├── bank@2x.png │ │ │ │ └── bank@3x.png │ │ │ ├── coinbase.payment-method.cash.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cash.account.svg │ │ │ │ ├── cash.account@2x.png │ │ │ │ └── cash.account@3x.png │ │ │ ├── coinbase.payment-method.credit-card.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Vector.png │ │ │ │ ├── Vector@2x.png │ │ │ │ └── Vector@3x.png │ │ │ ├── coinbase.payment-method.gpay.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── G_Pay_Lockup_1_.png │ │ │ │ ├── G_Pay_Lockup_1_@2x.png │ │ │ │ └── G_Pay_Lockup_1_@3x.png │ │ │ ├── coinbase.payment-method.paypal.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── paypal.element.png │ │ │ │ ├── paypal.element@2x.png │ │ │ │ └── paypal.element@3x.png │ │ │ ├── coinbase.payment-method.wallet.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.wallet.png │ │ │ │ ├── icon.wallet@2x.png │ │ │ │ └── icon.wallet@3x.png │ │ │ ├── coinbase.success.operation.status.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ └── icon.wallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.wallet.png │ │ │ │ ├── icon.wallet@2x.png │ │ │ │ └── icon.wallet@3x.png │ │ ├── Connected.imageset │ │ │ ├── Contents.json │ │ │ ├── Ellipse 11.png │ │ │ ├── Ellipse 11@2x.png │ │ │ └── Ellipse 11@3x.png │ │ ├── Contents.json │ │ ├── CrowdNode │ │ │ ├── Contents.json │ │ │ ├── image.crowdnode.account.link.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── image.crowdnode.account.new.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── image.crowdnode.apy.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-apy.png │ │ │ │ ├── icon-apy@2x.png │ │ │ │ └── icon-apy@3x.png │ │ │ ├── image.crowdnode.bullet.point.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── image.crowdnode.deposit.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── deposit.png │ │ │ │ ├── deposit@2x.png │ │ │ │ └── deposit@3x.png │ │ │ ├── image.crowdnode.error.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── error.png │ │ │ │ ├── error@2x.png │ │ │ │ └── error@3x.png │ │ │ ├── image.crowdnode.first.deposit.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.first.minimum.deposit.png │ │ │ │ ├── icon.first.minimum.deposit@2x.png │ │ │ │ └── icon.first.minimum.deposit@3x.png │ │ │ ├── image.crowdnode.history.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── history.png │ │ │ │ ├── history@2x.png │ │ │ │ └── history@3x.png │ │ │ ├── image.crowdnode.info.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── image.crowdnode.joining.pool.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.join.the.pool.png │ │ │ │ ├── icon.join.the.pool@2x.png │ │ │ │ └── icon.join.the.pool@3x.png │ │ │ ├── image.crowdnode.leaning.pool.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.leaving.the.pool.png │ │ │ │ ├── icon.leaving.the.pool@2x.png │ │ │ │ └── icon.leaving.the.pool@3x.png │ │ │ ├── image.crowdnode.lightning.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── image.crowdnode.logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── logo.png │ │ │ │ ├── logo@2x.png │ │ │ │ └── logo@3x.png │ │ │ ├── image.crowdnode.online.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── online.png │ │ │ │ ├── online@2x.png │ │ │ │ └── online@3x.png │ │ │ ├── image.crowdnode.payout.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── payout.png │ │ │ │ ├── payout@2x.png │ │ │ │ └── payout@3x.png │ │ │ ├── image.crowdnode.receiving.rewards.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.receiving.rewards.png │ │ │ │ ├── icon.receiving.rewards@2x.png │ │ │ │ └── icon.receiving.rewards@3x.png │ │ │ ├── image.crowdnode.recovery.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── recovery.png │ │ │ │ ├── recovery@2x.png │ │ │ │ └── recovery@3x.png │ │ │ ├── image.crowdnode.staking.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── staking.png │ │ │ │ ├── staking@2x.png │ │ │ │ └── staking@3x.png │ │ │ ├── image.crowdnode.support.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── support.png │ │ │ │ ├── support@2x.png │ │ │ │ └── support@3x.png │ │ │ ├── image.crowdnode.warning.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── image.crowdnode.withdraw.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── withdraw.png │ │ │ │ ├── withdraw@2x.png │ │ │ │ └── withdraw@3x.png │ │ │ └── image.explore.dash.staking.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-staking.png │ │ │ │ ├── icon-staking@2x.png │ │ │ │ └── icon-staking@3x.png │ │ ├── DashPay Users │ │ │ ├── Contents.json │ │ │ ├── dp_user_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dp_user_1.png │ │ │ │ ├── dp_user_1@2x.png │ │ │ │ └── dp_user_1@3x.png │ │ │ ├── dp_user_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dp_user_2.png │ │ │ │ ├── dp_user_2@2x.png │ │ │ │ └── dp_user_2@3x.png │ │ │ ├── dp_user_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dp_user_3.png │ │ │ │ ├── dp_user_3@2x.png │ │ │ │ └── dp_user_3@3x.png │ │ │ └── dp_user_generic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Group.png │ │ │ │ ├── Group@2x.png │ │ │ │ └── Group@3x.png │ │ ├── Disconnected.imageset │ │ │ ├── Contents.json │ │ │ ├── Ellipse 11.png │ │ │ ├── Ellipse 11@2x.png │ │ │ └── Ellipse 11@3x.png │ │ ├── Explore Dash │ │ │ ├── Contents.json │ │ │ ├── ctx.logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── logo.ctx.png │ │ │ │ ├── logo.ctx@2x.png │ │ │ │ └── logo.ctx@3x.png │ │ │ ├── dashspend.logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dashspend.png │ │ │ │ ├── dashspend@2x.png │ │ │ │ └── dashspend@3x.png │ │ │ ├── exploredash.checkbox.checked.imageset │ │ │ │ ├── Checked status.png │ │ │ │ ├── Checked status@2x.png │ │ │ │ ├── Checked status@3x.png │ │ │ │ └── Contents.json │ │ │ ├── exploredash.checkbox.unchecked.imageset │ │ │ │ ├── Checked status.png │ │ │ │ ├── Checked status@2x.png │ │ │ │ ├── Checked status@3x.png │ │ │ │ └── Contents.json │ │ │ ├── image.dashspend.giftcard.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GiftCard.png │ │ │ │ ├── GiftCard@2x.png │ │ │ │ └── GiftCard@3x.png │ │ │ ├── image.dashspend.online.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── network.png │ │ │ │ ├── network@2x.png │ │ │ │ └── network@3x.png │ │ │ ├── image.dashspend.shop.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── merchant.png │ │ │ │ ├── merchant@2x.png │ │ │ │ └── merchant@3x.png │ │ │ ├── image.discount.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer_1.png │ │ │ │ ├── Layer_1@2x.png │ │ │ │ └── Layer_1@3x.png │ │ │ ├── image.explore.dash.atm.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── image.explore.dash.atm.item.logo.empty.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icons & images.png │ │ │ │ ├── Icons & images@2x.png │ │ │ │ └── Icons & images@3x.png │ │ │ ├── image.explore.dash.circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dash.logo.subtract@1x.png │ │ │ │ ├── dash.logo.subtract@2x.png │ │ │ │ └── dash.logo.subtract@3x.png │ │ │ ├── image.explore.dash.distance.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── title.png │ │ │ │ ├── title@2x.png │ │ │ │ └── title@3x.png │ │ │ ├── image.explore.dash.gift-card.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.gift-card.png │ │ │ │ ├── icon.gift-card@2x.png │ │ │ │ └── icon.gift-card@3x.png │ │ │ ├── image.explore.dash.wallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hand_blue.png │ │ │ │ ├── hand_blue@2x.png │ │ │ │ └── hand_blue@3x.png │ │ │ ├── image.explore.dash.wheretospend.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── image.explore.dash.wts.card.blue.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Group 1727.png │ │ │ │ ├── Group 1727@2x.png │ │ │ │ └── Group 1727@3x.png │ │ │ ├── image.explore.dash.wts.card.orange.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GiftCard.png │ │ │ │ ├── GiftCard@2x.png │ │ │ │ └── GiftCard@3x.png │ │ │ ├── image.explore.dash.wts.dash.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dash.circle.filled.png │ │ │ │ ├── dash.circle.filled@2x.png │ │ │ │ └── dash.circle.filled@3x.png │ │ │ ├── image.explore.dash.wts.item.logo.empty.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── image.logo.png │ │ │ │ ├── image.logo@2x.png │ │ │ │ └── image.logo@3x.png │ │ │ ├── image.explore.dash.wts.lighting.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Regular-M.png │ │ │ │ ├── Regular-M@2x.png │ │ │ │ └── Regular-M@3x.png │ │ │ ├── image.explore.dash.wts.map.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Regular-M.png │ │ │ │ ├── Regular-M@2x.png │ │ │ │ └── Regular-M@3x.png │ │ │ ├── image.explore.dash.wts.map.my-location.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── image.explore.dash.wts.payment.dash.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── payment type.png │ │ │ │ ├── payment type@2x.png │ │ │ │ └── payment type@3x.png │ │ │ ├── image.explore.dash.wts.payment.gift-card.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── payment type.png │ │ │ │ ├── payment type@2x.png │ │ │ │ └── payment type@3x.png │ │ │ ├── image.giftcard.black.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer_1.png │ │ │ │ ├── Layer_1@2x.png │ │ │ │ └── Layer_1@3x.png │ │ │ ├── image.merchant.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── merchants.png │ │ │ │ ├── merchants@2x.png │ │ │ │ └── merchants@3x.png │ │ │ ├── piggycards.logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PiggyCards.png │ │ │ │ ├── PiggyCards@2x.png │ │ │ │ └── PiggyCards@3x.png │ │ │ └── piggycards.logo.small.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── piggy-cards-logo-l.png │ │ │ │ ├── piggy-cards-logo-l@2x.png │ │ │ │ └── piggy-cards-logo-l@3x.png │ │ ├── Flags │ │ │ ├── Algeria.imageset │ │ │ │ ├── Algeria.png │ │ │ │ ├── Algeria@2x.png │ │ │ │ ├── Algeria@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── East Timor.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── East Timor.png │ │ │ │ ├── East Timor@2x.png │ │ │ │ └── East Timor@3x.png │ │ │ ├── Rapa Nui.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Rapa Nui.png │ │ │ │ ├── Rapa Nui@2x.png │ │ │ │ └── Rapa Nui@3x.png │ │ │ ├── abkhazia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── abkhazia.png │ │ │ │ ├── abkhazia@2x.png │ │ │ │ └── abkhazia@3x.png │ │ │ ├── afghanistan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── afghanistan.png │ │ │ │ ├── afghanistan@2x.png │ │ │ │ └── afghanistan@3x.png │ │ │ ├── aland islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── aland islands.png │ │ │ │ ├── aland islands@2x.png │ │ │ │ └── aland islands@3x.png │ │ │ ├── albania.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── albania.png │ │ │ │ ├── albania@2x.png │ │ │ │ └── albania@3x.png │ │ │ ├── american samoa.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── american samoa.png │ │ │ │ ├── american samoa@2x.png │ │ │ │ └── american samoa@3x.png │ │ │ ├── andorra.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── andorra.png │ │ │ │ ├── andorra@2x.png │ │ │ │ └── andorra@3x.png │ │ │ ├── angola.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── angola.png │ │ │ │ ├── angola@2x.png │ │ │ │ └── angola@3x.png │ │ │ ├── anguilla.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── anguilla.png │ │ │ │ ├── anguilla@2x.png │ │ │ │ └── anguilla@3x.png │ │ │ ├── antigua and barbuda.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── antigua and barbuda.png │ │ │ │ ├── antigua and barbuda@2x.png │ │ │ │ └── antigua and barbuda@3x.png │ │ │ ├── argentina.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── argentina.png │ │ │ │ ├── argentina@2x.png │ │ │ │ └── argentina@3x.png │ │ │ ├── armenia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── armenia.png │ │ │ │ ├── armenia@2x.png │ │ │ │ └── armenia@3x.png │ │ │ ├── aruba.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── aruba.png │ │ │ │ ├── aruba@2x.png │ │ │ │ └── aruba@3x.png │ │ │ ├── australia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── australia.png │ │ │ │ ├── australia@2x.png │ │ │ │ └── australia@3x.png │ │ │ ├── austria.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── austria.png │ │ │ │ ├── austria@2x.png │ │ │ │ └── austria@3x.png │ │ │ ├── azerbaijan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── azerbaijan.png │ │ │ │ ├── azerbaijan@2x.png │ │ │ │ └── azerbaijan@3x.png │ │ │ ├── azores islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── azores islands.png │ │ │ │ ├── azores islands@2x.png │ │ │ │ └── azores islands@3x.png │ │ │ ├── bahamas.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bahamas.png │ │ │ │ ├── bahamas@2x.png │ │ │ │ └── bahamas@3x.png │ │ │ ├── bahrain.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bahrain.png │ │ │ │ ├── bahrain@2x.png │ │ │ │ └── bahrain@3x.png │ │ │ ├── balearic islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── balearic islands.png │ │ │ │ ├── balearic islands@2x.png │ │ │ │ └── balearic islands@3x.png │ │ │ ├── bangladesh.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bangladesh.png │ │ │ │ ├── bangladesh@2x.png │ │ │ │ └── bangladesh@3x.png │ │ │ ├── barbados.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbados.png │ │ │ │ ├── barbados@2x.png │ │ │ │ └── barbados@3x.png │ │ │ ├── basque country.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── basque country.png │ │ │ │ ├── basque country@2x.png │ │ │ │ └── basque country@3x.png │ │ │ ├── belarus.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── belarus.png │ │ │ │ ├── belarus@2x.png │ │ │ │ └── belarus@3x.png │ │ │ ├── belgium.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── belgium.png │ │ │ │ ├── belgium@2x.png │ │ │ │ └── belgium@3x.png │ │ │ ├── belize.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── belize.png │ │ │ │ ├── belize@2x.png │ │ │ │ └── belize@3x.png │ │ │ ├── benin.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── benin.png │ │ │ │ ├── benin@2x.png │ │ │ │ └── benin@3x.png │ │ │ ├── bermuda.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bermuda.png │ │ │ │ ├── bermuda@2x.png │ │ │ │ └── bermuda@3x.png │ │ │ ├── bhutan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bhutan.png │ │ │ │ ├── bhutan@2x.png │ │ │ │ └── bhutan@3x.png │ │ │ ├── bolivia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bolivia.png │ │ │ │ ├── bolivia@2x.png │ │ │ │ └── bolivia@3x.png │ │ │ ├── bonaire.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bonaire.png │ │ │ │ ├── bonaire@2x.png │ │ │ │ └── bonaire@3x.png │ │ │ ├── bosnia and herzegovina.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bosnia and herzegovina.png │ │ │ │ ├── bosnia and herzegovina@2x.png │ │ │ │ └── bosnia and herzegovina@3x.png │ │ │ ├── botswana.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── botswana.png │ │ │ │ ├── botswana@2x.png │ │ │ │ └── botswana@3x.png │ │ │ ├── brazil.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── brazil.png │ │ │ │ ├── brazil@2x.png │ │ │ │ └── brazil@3x.png │ │ │ ├── british columbia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── british columbia.png │ │ │ │ ├── british columbia@2x.png │ │ │ │ └── british columbia@3x.png │ │ │ ├── british indian ocean territory.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── british indian ocean territory.png │ │ │ │ ├── british indian ocean territory@2x.png │ │ │ │ └── british indian ocean territory@3x.png │ │ │ ├── british virgin islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── british virgin islands.png │ │ │ │ ├── british virgin islands@2x.png │ │ │ │ └── british virgin islands@3x.png │ │ │ ├── brunei.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── brunei.png │ │ │ │ ├── brunei@2x.png │ │ │ │ └── brunei@3x.png │ │ │ ├── bulgaria.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bulgaria.png │ │ │ │ ├── bulgaria@2x.png │ │ │ │ └── bulgaria@3x.png │ │ │ ├── burkina faso.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── burkina faso.png │ │ │ │ ├── burkina faso@2x.png │ │ │ │ └── burkina faso@3x.png │ │ │ ├── burundi.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── burundi.png │ │ │ │ ├── burundi@2x.png │ │ │ │ └── burundi@3x.png │ │ │ ├── cambodia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cambodia.png │ │ │ │ ├── cambodia@2x.png │ │ │ │ └── cambodia@3x.png │ │ │ ├── cameroon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cameroon.png │ │ │ │ ├── cameroon@2x.png │ │ │ │ └── cameroon@3x.png │ │ │ ├── canada.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── canada.png │ │ │ │ ├── canada@2x.png │ │ │ │ └── canada@3x.png │ │ │ ├── canary islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── canary islands.png │ │ │ │ ├── canary islands@2x.png │ │ │ │ └── canary islands@3x.png │ │ │ ├── cape verde.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cape verde.png │ │ │ │ ├── cape verde@2x.png │ │ │ │ └── cape verde@3x.png │ │ │ ├── cayman islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cayman islands.png │ │ │ │ ├── cayman islands@2x.png │ │ │ │ └── cayman islands@3x.png │ │ │ ├── central african cfa franc.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── central african cfa franc.png │ │ │ │ ├── central african cfa franc@2x.png │ │ │ │ └── central african cfa franc@3x.png │ │ │ ├── central african republic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── central african republic.png │ │ │ │ ├── central african republic@2x.png │ │ │ │ └── central african republic@3x.png │ │ │ ├── ceuta.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ceuta.png │ │ │ │ ├── ceuta@2x.png │ │ │ │ └── ceuta@3x.png │ │ │ ├── cfp franc.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cfp franc.png │ │ │ │ ├── cfp franc@2x.png │ │ │ │ └── cfp franc@3x.png │ │ │ ├── chad.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chad.png │ │ │ │ ├── chad@2x.png │ │ │ │ └── chad@3x.png │ │ │ ├── chile.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chile.png │ │ │ │ ├── chile@2x.png │ │ │ │ └── chile@3x.png │ │ │ ├── china.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── china.png │ │ │ │ ├── china@2x.png │ │ │ │ └── china@3x.png │ │ │ ├── cocos island.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cocos island.png │ │ │ │ ├── cocos island@2x.png │ │ │ │ └── cocos island@3x.png │ │ │ ├── colombia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── colombia.png │ │ │ │ ├── colombia@2x.png │ │ │ │ └── colombia@3x.png │ │ │ ├── comoros.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── comoros.png │ │ │ │ ├── comoros@2x.png │ │ │ │ └── comoros@3x.png │ │ │ ├── cook islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cook islands.png │ │ │ │ ├── cook islands@2x.png │ │ │ │ └── cook islands@3x.png │ │ │ ├── corsica.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── corsica.png │ │ │ │ ├── corsica@2x.png │ │ │ │ └── corsica@3x.png │ │ │ ├── costa rica.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── costa rica.png │ │ │ │ ├── costa rica@2x.png │ │ │ │ └── costa rica@3x.png │ │ │ ├── croatia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── croatia.png │ │ │ │ ├── croatia@2x.png │ │ │ │ └── croatia@3x.png │ │ │ ├── cuba.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cuba.png │ │ │ │ ├── cuba@2x.png │ │ │ │ └── cuba@3x.png │ │ │ ├── curacao.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── curacao.png │ │ │ │ ├── curacao@2x.png │ │ │ │ └── curacao@3x.png │ │ │ ├── cyprus.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cyprus.png │ │ │ │ ├── cyprus@2x.png │ │ │ │ └── cyprus@3x.png │ │ │ ├── czech republic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── czech republic.png │ │ │ │ ├── czech republic@2x.png │ │ │ │ └── czech republic@3x.png │ │ │ ├── default flag.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── default flag.png │ │ │ │ ├── default flag@2x.png │ │ │ │ └── default flag@3x.png │ │ │ ├── democratic republic of congo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── democratic republic of congo.png │ │ │ │ ├── democratic republic of congo@2x.png │ │ │ │ └── democratic republic of congo@3x.png │ │ │ ├── denmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── denmark.png │ │ │ │ ├── denmark@2x.png │ │ │ │ └── denmark@3x.png │ │ │ ├── djibouti.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── djibouti.png │ │ │ │ ├── djibouti@2x.png │ │ │ │ └── djibouti@3x.png │ │ │ ├── dominica.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dominica.png │ │ │ │ ├── dominica@2x.png │ │ │ │ └── dominica@3x.png │ │ │ ├── dominican republic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dominican republic.png │ │ │ │ ├── dominican republic@2x.png │ │ │ │ └── dominican republic@3x.png │ │ │ ├── east carribean dollar.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── east carribean dollar.png │ │ │ │ ├── east carribean dollar@2x.png │ │ │ │ └── east carribean dollar@3x.png │ │ │ ├── ecuador.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ecuador.png │ │ │ │ ├── ecuador@2x.png │ │ │ │ └── ecuador@3x.png │ │ │ ├── egypt.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── egypt.png │ │ │ │ ├── egypt@2x.png │ │ │ │ └── egypt@3x.png │ │ │ ├── el salvador.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── el salvador.png │ │ │ │ ├── el salvador@2x.png │ │ │ │ └── el salvador@3x.png │ │ │ ├── england.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── england.png │ │ │ │ ├── england@2x.png │ │ │ │ └── england@3x.png │ │ │ ├── equatorial guinea.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── equatorial guinea.png │ │ │ │ ├── equatorial guinea@2x.png │ │ │ │ └── equatorial guinea@3x.png │ │ │ ├── eritrea.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── eritrea.png │ │ │ │ ├── eritrea@2x.png │ │ │ │ └── eritrea@3x.png │ │ │ ├── estonia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── estonia.png │ │ │ │ ├── estonia@2x.png │ │ │ │ └── estonia@3x.png │ │ │ ├── ethiopia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ethiopia.png │ │ │ │ ├── ethiopia@2x.png │ │ │ │ └── ethiopia@3x.png │ │ │ ├── european union.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── european union.png │ │ │ │ ├── european union@2x.png │ │ │ │ └── european union@3x.png │ │ │ ├── falkland islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── falkland islands.png │ │ │ │ ├── falkland islands@2x.png │ │ │ │ └── falkland islands@3x.png │ │ │ ├── faroe islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── faroe islands.png │ │ │ │ ├── faroe islands@2x.png │ │ │ │ └── faroe islands@3x.png │ │ │ ├── fiji.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── fiji.png │ │ │ │ ├── fiji@2x.png │ │ │ │ └── fiji@3x.png │ │ │ ├── finland.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── finland.png │ │ │ │ ├── finland@2x.png │ │ │ │ └── finland@3x.png │ │ │ ├── france.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── france.png │ │ │ │ ├── france@2x.png │ │ │ │ └── france@3x.png │ │ │ ├── french polynesia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── french polynesia.png │ │ │ │ ├── french polynesia@2x.png │ │ │ │ └── french polynesia@3x.png │ │ │ ├── gabon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gabon.png │ │ │ │ ├── gabon@2x.png │ │ │ │ └── gabon@3x.png │ │ │ ├── galapagos islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── galapagos islands.png │ │ │ │ ├── galapagos islands@2x.png │ │ │ │ └── galapagos islands@3x.png │ │ │ ├── gambia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gambia.png │ │ │ │ ├── gambia@2x.png │ │ │ │ └── gambia@3x.png │ │ │ ├── georgia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── georgia.png │ │ │ │ ├── georgia@2x.png │ │ │ │ └── georgia@3x.png │ │ │ ├── germany.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── germany.png │ │ │ │ ├── germany@2x.png │ │ │ │ └── germany@3x.png │ │ │ ├── ghana.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ghana.png │ │ │ │ ├── ghana@2x.png │ │ │ │ └── ghana@3x.png │ │ │ ├── gibraltar.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gibraltar.png │ │ │ │ ├── gibraltar@2x.png │ │ │ │ └── gibraltar@3x.png │ │ │ ├── gold.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gold.png │ │ │ │ ├── gold@2x.png │ │ │ │ └── gold@3x.png │ │ │ ├── greece.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── greece.png │ │ │ │ ├── greece@2x.png │ │ │ │ └── greece@3x.png │ │ │ ├── greenland.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── greenland.png │ │ │ │ ├── greenland@2x.png │ │ │ │ └── greenland@3x.png │ │ │ ├── grenada.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── grenada.png │ │ │ │ ├── grenada@2x.png │ │ │ │ └── grenada@3x.png │ │ │ ├── guam.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── guam.png │ │ │ │ ├── guam@2x.png │ │ │ │ └── guam@3x.png │ │ │ ├── guatemala.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── guatemala.png │ │ │ │ ├── guatemala@2x.png │ │ │ │ └── guatemala@3x.png │ │ │ ├── guernsey.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── guernsey.png │ │ │ │ ├── guernsey@2x.png │ │ │ │ └── guernsey@3x.png │ │ │ ├── guinea bissau.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── guinea bissau.png │ │ │ │ ├── guinea bissau@2x.png │ │ │ │ └── guinea bissau@3x.png │ │ │ ├── guinea.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── guinea.png │ │ │ │ ├── guinea@2x.png │ │ │ │ └── guinea@3x.png │ │ │ ├── guyana.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── guyana.png │ │ │ │ ├── guyana@2x.png │ │ │ │ └── guyana@3x.png │ │ │ ├── haiti.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── haiti.png │ │ │ │ ├── haiti@2x.png │ │ │ │ └── haiti@3x.png │ │ │ ├── hawaii.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hawaii.png │ │ │ │ ├── hawaii@2x.png │ │ │ │ └── hawaii@3x.png │ │ │ ├── honduras.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── honduras.png │ │ │ │ ├── honduras@2x.png │ │ │ │ └── honduras@3x.png │ │ │ ├── hong kong.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hong kong.png │ │ │ │ ├── hong kong@2x.png │ │ │ │ └── hong kong@3x.png │ │ │ ├── hungary.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hungary.png │ │ │ │ ├── hungary@2x.png │ │ │ │ └── hungary@3x.png │ │ │ ├── iceland.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iceland.png │ │ │ │ ├── iceland@2x.png │ │ │ │ └── iceland@3x.png │ │ │ ├── india.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── india.png │ │ │ │ ├── india@2x.png │ │ │ │ └── india@3x.png │ │ │ ├── indonesia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── indonesia.png │ │ │ │ ├── indonesia@2x.png │ │ │ │ └── indonesia@3x.png │ │ │ ├── iran.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iran.png │ │ │ │ ├── iran@2x.png │ │ │ │ └── iran@3x.png │ │ │ ├── iraq.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iraq.png │ │ │ │ ├── iraq@2x.png │ │ │ │ └── iraq@3x.png │ │ │ ├── ireland.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ireland.png │ │ │ │ ├── ireland@2x.png │ │ │ │ └── ireland@3x.png │ │ │ ├── isle of man.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── isle of man.png │ │ │ │ ├── isle of man@2x.png │ │ │ │ └── isle of man@3x.png │ │ │ ├── israel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── israel.png │ │ │ │ ├── israel@2x.png │ │ │ │ └── israel@3x.png │ │ │ ├── italy.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── italy.png │ │ │ │ ├── italy@2x.png │ │ │ │ └── italy@3x.png │ │ │ ├── ivory coast.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ivory coast.png │ │ │ │ ├── ivory coast@2x.png │ │ │ │ └── ivory coast@3x.png │ │ │ ├── jamaica.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── jamaica.png │ │ │ │ ├── jamaica@2x.png │ │ │ │ └── jamaica@3x.png │ │ │ ├── japan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── japan.png │ │ │ │ ├── japan@2x.png │ │ │ │ └── japan@3x.png │ │ │ ├── jersey.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── jersey.png │ │ │ │ ├── jersey@2x.png │ │ │ │ └── jersey@3x.png │ │ │ ├── jordan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── jordan.png │ │ │ │ ├── jordan@2x.png │ │ │ │ └── jordan@3x.png │ │ │ ├── kazakhstan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── kazakhstan.png │ │ │ │ ├── kazakhstan@2x.png │ │ │ │ └── kazakhstan@3x.png │ │ │ ├── kenya.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── kenya.png │ │ │ │ ├── kenya@2x.png │ │ │ │ └── kenya@3x.png │ │ │ ├── kiribati.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── kiribati.png │ │ │ │ ├── kiribati@2x.png │ │ │ │ └── kiribati@3x.png │ │ │ ├── kosovo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── kosovo.png │ │ │ │ ├── kosovo@2x.png │ │ │ │ └── kosovo@3x.png │ │ │ ├── kuwait.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── kuwait.png │ │ │ │ ├── kuwait@2x.png │ │ │ │ └── kuwait@3x.png │ │ │ ├── kyrgyzstan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── kyrgyzstan.png │ │ │ │ ├── kyrgyzstan@2x.png │ │ │ │ └── kyrgyzstan@3x.png │ │ │ ├── laos.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── laos.png │ │ │ │ ├── laos@2x.png │ │ │ │ └── laos@3x.png │ │ │ ├── latvia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── latvia.png │ │ │ │ ├── latvia@2x.png │ │ │ │ └── latvia@3x.png │ │ │ ├── lebanon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── lebanon.png │ │ │ │ ├── lebanon@2x.png │ │ │ │ └── lebanon@3x.png │ │ │ ├── lesotho.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── lesotho.png │ │ │ │ ├── lesotho@2x.png │ │ │ │ └── lesotho@3x.png │ │ │ ├── liberia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── liberia.png │ │ │ │ ├── liberia@2x.png │ │ │ │ └── liberia@3x.png │ │ │ ├── libya.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── libya.png │ │ │ │ ├── libya@2x.png │ │ │ │ └── libya@3x.png │ │ │ ├── liechtenstein.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── liechtenstein.png │ │ │ │ ├── liechtenstein@2x.png │ │ │ │ └── liechtenstein@3x.png │ │ │ ├── lithuania.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── lithuania.png │ │ │ │ ├── lithuania@2x.png │ │ │ │ └── lithuania@3x.png │ │ │ ├── luxembourg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── luxembourg.png │ │ │ │ ├── luxembourg@2x.png │ │ │ │ └── luxembourg@3x.png │ │ │ ├── macao.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── macao.png │ │ │ │ ├── macao@2x.png │ │ │ │ └── macao@3x.png │ │ │ ├── madagascar.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── madagascar.png │ │ │ │ ├── madagascar@2x.png │ │ │ │ └── madagascar@3x.png │ │ │ ├── madeira.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── madeira.png │ │ │ │ ├── madeira@2x.png │ │ │ │ └── madeira@3x.png │ │ │ ├── malawi.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── malawi.png │ │ │ │ ├── malawi@2x.png │ │ │ │ └── malawi@3x.png │ │ │ ├── malaysia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── malaysia.png │ │ │ │ ├── malaysia@2x.png │ │ │ │ └── malaysia@3x.png │ │ │ ├── maldives.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── maldives.png │ │ │ │ ├── maldives@2x.png │ │ │ │ └── maldives@3x.png │ │ │ ├── mali.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mali.png │ │ │ │ ├── mali@2x.png │ │ │ │ └── mali@3x.png │ │ │ ├── malta.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── malta.png │ │ │ │ ├── malta@2x.png │ │ │ │ └── malta@3x.png │ │ │ ├── marshall island.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── marshall island.png │ │ │ │ ├── marshall island@2x.png │ │ │ │ └── marshall island@3x.png │ │ │ ├── martinique.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── martinique.png │ │ │ │ ├── martinique@2x.png │ │ │ │ └── martinique@3x.png │ │ │ ├── mauritania.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mauritania.png │ │ │ │ ├── mauritania@2x.png │ │ │ │ └── mauritania@3x.png │ │ │ ├── mauritius.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mauritius.png │ │ │ │ ├── mauritius@2x.png │ │ │ │ └── mauritius@3x.png │ │ │ ├── melilla.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── melilla.png │ │ │ │ ├── melilla@2x.png │ │ │ │ └── melilla@3x.png │ │ │ ├── mexico.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mexico.png │ │ │ │ ├── mexico@2x.png │ │ │ │ └── mexico@3x.png │ │ │ ├── micronesia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── micronesia.png │ │ │ │ ├── micronesia@2x.png │ │ │ │ └── micronesia@3x.png │ │ │ ├── moldova.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── moldova.png │ │ │ │ ├── moldova@2x.png │ │ │ │ └── moldova@3x.png │ │ │ ├── monaco.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── monaco.png │ │ │ │ ├── monaco@2x.png │ │ │ │ └── monaco@3x.png │ │ │ ├── mongolia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mongolia.png │ │ │ │ ├── mongolia@2x.png │ │ │ │ └── mongolia@3x.png │ │ │ ├── montenegro.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── montenegro.png │ │ │ │ ├── montenegro@2x.png │ │ │ │ └── montenegro@3x.png │ │ │ ├── montserrat.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── montserrat.png │ │ │ │ ├── montserrat@2x.png │ │ │ │ └── montserrat@3x.png │ │ │ ├── morocco.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── morocco.png │ │ │ │ ├── morocco@2x.png │ │ │ │ └── morocco@3x.png │ │ │ ├── mozambique.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mozambique.png │ │ │ │ ├── mozambique@2x.png │ │ │ │ └── mozambique@3x.png │ │ │ ├── myanmar.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── myanmar.png │ │ │ │ ├── myanmar@2x.png │ │ │ │ └── myanmar@3x.png │ │ │ ├── namibia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── namibia.png │ │ │ │ ├── namibia@2x.png │ │ │ │ └── namibia@3x.png │ │ │ ├── nato.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── nato.png │ │ │ │ ├── nato@2x.png │ │ │ │ └── nato@3x.png │ │ │ ├── nauru.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── nauru.png │ │ │ │ ├── nauru@2x.png │ │ │ │ └── nauru@3x.png │ │ │ ├── nepal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── nepal.png │ │ │ │ ├── nepal@2x.png │ │ │ │ └── nepal@3x.png │ │ │ ├── netherlands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── netherlands.png │ │ │ │ ├── netherlands@2x.png │ │ │ │ └── netherlands@3x.png │ │ │ ├── new zealand.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── new zealand.png │ │ │ │ ├── new zealand@2x.png │ │ │ │ └── new zealand@3x.png │ │ │ ├── nicaragua.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── nicaragua.png │ │ │ │ ├── nicaragua@2x.png │ │ │ │ └── nicaragua@3x.png │ │ │ ├── niger.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── niger.png │ │ │ │ ├── niger@2x.png │ │ │ │ └── niger@3x.png │ │ │ ├── nigeria.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── nigeria.png │ │ │ │ ├── nigeria@2x.png │ │ │ │ └── nigeria@3x.png │ │ │ ├── niue.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── niue.png │ │ │ │ ├── niue@2x.png │ │ │ │ └── niue@3x.png │ │ │ ├── norfolk island.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── norfolk island.png │ │ │ │ ├── norfolk island@2x.png │ │ │ │ └── norfolk island@3x.png │ │ │ ├── north korea.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── north korea.png │ │ │ │ ├── north korea@2x.png │ │ │ │ └── north korea@3x.png │ │ │ ├── northern cyprus.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── northern cyprus.png │ │ │ │ ├── northern cyprus@2x.png │ │ │ │ └── northern cyprus@3x.png │ │ │ ├── northern marianas islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── northern marianas islands.png │ │ │ │ ├── northern marianas islands@2x.png │ │ │ │ └── northern marianas islands@3x.png │ │ │ ├── norway.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── norway.png │ │ │ │ ├── norway@2x.png │ │ │ │ └── norway@3x.png │ │ │ ├── oman.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── oman.png │ │ │ │ ├── oman@2x.png │ │ │ │ └── oman@3x.png │ │ │ ├── orkney islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── orkney islands.png │ │ │ │ ├── orkney islands@2x.png │ │ │ │ └── orkney islands@3x.png │ │ │ ├── ossetia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ossetia.png │ │ │ │ ├── ossetia@2x.png │ │ │ │ └── ossetia@3x.png │ │ │ ├── pakistan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pakistan.png │ │ │ │ ├── pakistan@2x.png │ │ │ │ └── pakistan@3x.png │ │ │ ├── palau.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── palau.png │ │ │ │ ├── palau@2x.png │ │ │ │ └── palau@3x.png │ │ │ ├── palestine.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── palestine.png │ │ │ │ ├── palestine@2x.png │ │ │ │ └── palestine@3x.png │ │ │ ├── panama.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── panama.png │ │ │ │ ├── panama@2x.png │ │ │ │ └── panama@3x.png │ │ │ ├── papua new guinea.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── papua new guinea.png │ │ │ │ ├── papua new guinea@2x.png │ │ │ │ └── papua new guinea@3x.png │ │ │ ├── paraguay.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── paraguay.png │ │ │ │ ├── paraguay@2x.png │ │ │ │ └── paraguay@3x.png │ │ │ ├── peru.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── peru.png │ │ │ │ ├── peru@2x.png │ │ │ │ └── peru@3x.png │ │ │ ├── philippines.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── philippines.png │ │ │ │ ├── philippines@2x.png │ │ │ │ └── philippines@3x.png │ │ │ ├── pitcairn islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pitcairn islands.png │ │ │ │ ├── pitcairn islands@2x.png │ │ │ │ └── pitcairn islands@3x.png │ │ │ ├── poland.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── poland.png │ │ │ │ ├── poland@2x.png │ │ │ │ └── poland@3x.png │ │ │ ├── portugal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── portugal.png │ │ │ │ ├── portugal@2x.png │ │ │ │ └── portugal@3x.png │ │ │ ├── puerto rico.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── puerto rico.png │ │ │ │ ├── puerto rico@2x.png │ │ │ │ └── puerto rico@3x.png │ │ │ ├── qatar.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── qatar.png │ │ │ │ ├── qatar@2x.png │ │ │ │ └── qatar@3x.png │ │ │ ├── republic of macedonia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── republic of macedonia.png │ │ │ │ ├── republic of macedonia@2x.png │ │ │ │ └── republic of macedonia@3x.png │ │ │ ├── republic of the congo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── republic of the congo.png │ │ │ │ ├── republic of the congo@2x.png │ │ │ │ └── republic of the congo@3x.png │ │ │ ├── romania.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── romania.png │ │ │ │ ├── romania@2x.png │ │ │ │ └── romania@3x.png │ │ │ ├── russia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── russia.png │ │ │ │ ├── russia@2x.png │ │ │ │ └── russia@3x.png │ │ │ ├── rwanda.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── rwanda.png │ │ │ │ ├── rwanda@2x.png │ │ │ │ └── rwanda@3x.png │ │ │ ├── saba island.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── saba island.png │ │ │ │ ├── saba island@2x.png │ │ │ │ └── saba island@3x.png │ │ │ ├── sahrawi arab democratic republic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sahrawi arab democratic republic.png │ │ │ │ ├── sahrawi arab democratic republic@2x.png │ │ │ │ └── sahrawi arab democratic republic@3x.png │ │ │ ├── samoa.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── samoa.png │ │ │ │ ├── samoa@2x.png │ │ │ │ └── samoa@3x.png │ │ │ ├── san marino.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── san marino.png │ │ │ │ ├── san marino@2x.png │ │ │ │ └── san marino@3x.png │ │ │ ├── sao tome and prince.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sao tome and prince.png │ │ │ │ ├── sao tome and prince@2x.png │ │ │ │ └── sao tome and prince@3x.png │ │ │ ├── sardinia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sardinia.png │ │ │ │ ├── sardinia@2x.png │ │ │ │ └── sardinia@3x.png │ │ │ ├── saudi arabia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── saudi arabia.png │ │ │ │ ├── saudi arabia@2x.png │ │ │ │ └── saudi arabia@3x.png │ │ │ ├── scotland.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── scotland.png │ │ │ │ ├── scotland@2x.png │ │ │ │ └── scotland@3x.png │ │ │ ├── senegal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── senegal.png │ │ │ │ ├── senegal@2x.png │ │ │ │ └── senegal@3x.png │ │ │ ├── serbia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── serbia.png │ │ │ │ ├── serbia@2x.png │ │ │ │ └── serbia@3x.png │ │ │ ├── seychelles.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── seychelles.png │ │ │ │ ├── seychelles@2x.png │ │ │ │ └── seychelles@3x.png │ │ │ ├── sierra leone.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sierra leone.png │ │ │ │ ├── sierra leone@2x.png │ │ │ │ └── sierra leone@3x.png │ │ │ ├── silver.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── silver.png │ │ │ │ ├── silver@2x.png │ │ │ │ └── silver@3x.png │ │ │ ├── singapore.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── singapore.png │ │ │ │ ├── singapore@2x.png │ │ │ │ └── singapore@3x.png │ │ │ ├── sint eustatius.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sint eustatius.png │ │ │ │ ├── sint eustatius@2x.png │ │ │ │ └── sint eustatius@3x.png │ │ │ ├── sint maarten.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sint maarten.png │ │ │ │ ├── sint maarten@2x.png │ │ │ │ └── sint maarten@3x.png │ │ │ ├── slovakia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── slovakia.png │ │ │ │ ├── slovakia@2x.png │ │ │ │ └── slovakia@3x.png │ │ │ ├── slovenia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── slovenia.png │ │ │ │ ├── slovenia@2x.png │ │ │ │ └── slovenia@3x.png │ │ │ ├── solomon islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── solomon islands.png │ │ │ │ ├── solomon islands@2x.png │ │ │ │ └── solomon islands@3x.png │ │ │ ├── somalia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── somalia.png │ │ │ │ ├── somalia@2x.png │ │ │ │ └── somalia@3x.png │ │ │ ├── somaliland.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── somaliland.png │ │ │ │ ├── somaliland@2x.png │ │ │ │ └── somaliland@3x.png │ │ │ ├── south africa.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── south africa.png │ │ │ │ ├── south africa@2x.png │ │ │ │ └── south africa@3x.png │ │ │ ├── south korea.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── south korea.png │ │ │ │ ├── south korea@2x.png │ │ │ │ └── south korea@3x.png │ │ │ ├── south sudan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── south sudan.png │ │ │ │ ├── south sudan@2x.png │ │ │ │ └── south sudan@3x.png │ │ │ ├── spain.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── spain.png │ │ │ │ ├── spain@2x.png │ │ │ │ └── spain@3x.png │ │ │ ├── special drawing rights.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── special drawing rights.png │ │ │ │ ├── special drawing rights@2x.png │ │ │ │ └── special drawing rights@3x.png │ │ │ ├── sri lanka.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sri lanka.png │ │ │ │ ├── sri lanka@2x.png │ │ │ │ └── sri lanka@3x.png │ │ │ ├── st barts.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── st barts.png │ │ │ │ ├── st barts@2x.png │ │ │ │ └── st barts@3x.png │ │ │ ├── st lucia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── st lucia.png │ │ │ │ ├── st lucia@2x.png │ │ │ │ └── st lucia@3x.png │ │ │ ├── st vincent and the grenadines.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── st vincent and the grenadines.png │ │ │ │ ├── st vincent and the grenadines@2x.png │ │ │ │ └── st vincent and the grenadines@3x.png │ │ │ ├── sudan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sudan.png │ │ │ │ ├── sudan@2x.png │ │ │ │ └── sudan@3x.png │ │ │ ├── suriname.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── suriname.png │ │ │ │ ├── suriname@2x.png │ │ │ │ └── suriname@3x.png │ │ │ ├── swaziland.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── swaziland.png │ │ │ │ ├── swaziland@2x.png │ │ │ │ └── swaziland@3x.png │ │ │ ├── sweden.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sweden.png │ │ │ │ ├── sweden@2x.png │ │ │ │ └── sweden@3x.png │ │ │ ├── switzerland.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── switzerland.png │ │ │ │ ├── switzerland@2x.png │ │ │ │ └── switzerland@3x.png │ │ │ ├── syria.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── syria.png │ │ │ │ ├── syria@2x.png │ │ │ │ └── syria@3x.png │ │ │ ├── taiwan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── taiwan.png │ │ │ │ ├── taiwan@2x.png │ │ │ │ └── taiwan@3x.png │ │ │ ├── tajikistan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tajikistan.png │ │ │ │ ├── tajikistan@2x.png │ │ │ │ └── tajikistan@3x.png │ │ │ ├── tanzania.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tanzania.png │ │ │ │ ├── tanzania@2x.png │ │ │ │ └── tanzania@3x.png │ │ │ ├── thailand.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── thailand.png │ │ │ │ ├── thailand@2x.png │ │ │ │ └── thailand@3x.png │ │ │ ├── tibet.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tibet.png │ │ │ │ ├── tibet@2x.png │ │ │ │ └── tibet@3x.png │ │ │ ├── togo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── togo.png │ │ │ │ ├── togo@2x.png │ │ │ │ └── togo@3x.png │ │ │ ├── tokelau.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tokelau.png │ │ │ │ ├── tokelau@2x.png │ │ │ │ └── tokelau@3x.png │ │ │ ├── tonga.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tonga.png │ │ │ │ ├── tonga@2x.png │ │ │ │ └── tonga@3x.png │ │ │ ├── transnistria.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── transnistria.png │ │ │ │ ├── transnistria@2x.png │ │ │ │ └── transnistria@3x.png │ │ │ ├── trinidad and tobago.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── trinidad and tobago.png │ │ │ │ ├── trinidad and tobago@2x.png │ │ │ │ └── trinidad and tobago@3x.png │ │ │ ├── tunisia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tunisia.png │ │ │ │ ├── tunisia@2x.png │ │ │ │ └── tunisia@3x.png │ │ │ ├── turkey.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── turkey.png │ │ │ │ ├── turkey@2x.png │ │ │ │ └── turkey@3x.png │ │ │ ├── turkmenistan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── turkmenistan.png │ │ │ │ ├── turkmenistan@2x.png │ │ │ │ └── turkmenistan@3x.png │ │ │ ├── turks and caicos.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── turks and caicos.png │ │ │ │ ├── turks and caicos@2x.png │ │ │ │ └── turks and caicos@3x.png │ │ │ ├── tuvalu.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tuvalu.png │ │ │ │ ├── tuvalu@2x.png │ │ │ │ └── tuvalu@3x.png │ │ │ ├── uganda.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── uganda.png │ │ │ │ ├── uganda@2x.png │ │ │ │ └── uganda@3x.png │ │ │ ├── ukraine.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ukraine.png │ │ │ │ ├── ukraine@2x.png │ │ │ │ └── ukraine@3x.png │ │ │ ├── united arab emirates.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── united arab emirates.png │ │ │ │ ├── united arab emirates@2x.png │ │ │ │ └── united arab emirates@3x.png │ │ │ ├── united kingdom.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── united kingdom.png │ │ │ │ ├── united kingdom@2x.png │ │ │ │ └── united kingdom@3x.png │ │ │ ├── united nations.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── united nations.png │ │ │ │ ├── united nations@2x.png │ │ │ │ └── united nations@3x.png │ │ │ ├── united states.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── united states.png │ │ │ │ ├── united states@2x.png │ │ │ │ └── united states@3x.png │ │ │ ├── uruguay.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── uruguay.png │ │ │ │ ├── uruguay@2x.png │ │ │ │ └── uruguay@3x.png │ │ │ ├── uzbekistan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── uzbekistan.png │ │ │ │ ├── uzbekistan@2x.png │ │ │ │ └── uzbekistan@3x.png │ │ │ ├── vanuatu.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── vanuatu.png │ │ │ │ ├── vanuatu@2x.png │ │ │ │ └── vanuatu@3x.png │ │ │ ├── vatican city.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── vatican city.png │ │ │ │ ├── vatican city@2x.png │ │ │ │ └── vatican city@3x.png │ │ │ ├── venezuela.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── venezuela.png │ │ │ │ ├── venezuela@2x.png │ │ │ │ └── venezuela@3x.png │ │ │ ├── vietnam.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── vietnam.png │ │ │ │ ├── vietnam@2x.png │ │ │ │ └── vietnam@3x.png │ │ │ ├── virgin islands.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── virgin islands.png │ │ │ │ ├── virgin islands@2x.png │ │ │ │ └── virgin islands@3x.png │ │ │ ├── wales.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── wales.png │ │ │ │ ├── wales@2x.png │ │ │ │ └── wales@3x.png │ │ │ ├── west african cfa franc.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── west african cfa franc.png │ │ │ │ ├── west african cfa franc@2x.png │ │ │ │ └── west african cfa franc@3x.png │ │ │ ├── yemen.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yemen.png │ │ │ │ ├── yemen@2x.png │ │ │ │ └── yemen@3x.png │ │ │ ├── zambia.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── zambia.png │ │ │ │ ├── zambia@2x.png │ │ │ │ └── zambia@3x.png │ │ │ └── zimbabwe.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── zimbabwe.png │ │ │ │ ├── zimbabwe@2x.png │ │ │ │ └── zimbabwe@3x.png │ │ ├── Hourglass Animation │ │ │ ├── Contents.json │ │ │ ├── hourglass_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hourglass_1.png │ │ │ │ ├── hourglass_1@2x.png │ │ │ │ └── hourglass_1@3x.png │ │ │ ├── hourglass_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hourglass_2.png │ │ │ │ ├── hourglass_2@2x.png │ │ │ │ └── hourglass_2@3x.png │ │ │ ├── hourglass_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hourglass_3.png │ │ │ │ ├── hourglass_3@2x.png │ │ │ │ └── hourglass_3@3x.png │ │ │ ├── hourglass_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hourglass_4.png │ │ │ │ ├── hourglass_4@2x.png │ │ │ │ └── hourglass_4@3x.png │ │ │ └── hourglass_5.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hourglass_5.png │ │ │ │ ├── hourglass_5@2x.png │ │ │ │ └── hourglass_5@3x.png │ │ ├── Integrations │ │ │ ├── Contents.json │ │ │ ├── integration.buy.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── buy.png │ │ │ │ ├── buy@2x.png │ │ │ │ └── buy@3x.png │ │ │ ├── integration.convert.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── convert.png │ │ │ │ ├── convert@2x.png │ │ │ │ └── convert@3x.png │ │ │ ├── integration.sell.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sell.png │ │ │ │ ├── sell@2x.png │ │ │ │ └── sell@3x.png │ │ │ ├── integration.transfer.disabled.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── integration.transfer.disabled.png │ │ │ │ ├── integration.transfer.disabled@2x.png │ │ │ │ └── integration.transfer.disabled@3x.png │ │ │ └── integration.transfer.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── transfer.png │ │ │ │ ├── transfer@2x.png │ │ │ │ └── transfer@3x.png │ │ ├── Menu │ │ │ ├── Contents.json │ │ │ ├── Image.face.id.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer 1.png │ │ │ │ ├── Layer 1@2x.png │ │ │ │ └── Layer 1@3x.png │ │ │ ├── image.about.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dash.logo.circle.png │ │ │ │ ├── dash.logo.circle@2x.png │ │ │ │ └── dash.logo.circle@3x.png │ │ │ ├── image.advanced.security.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── advanced security.png │ │ │ │ ├── advanced security@2x.png │ │ │ │ └── advanced security@3x.png │ │ │ ├── image.autohide.balance.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── eye.closed.png │ │ │ │ ├── eye.closed@2x.png │ │ │ │ └── eye.closed@3x.png │ │ │ ├── image.buy.and.sell.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── buy.sell.dash.2.png │ │ │ │ ├── buy.sell.dash.2@2x.png │ │ │ │ └── buy.sell.dash.2@3x.png │ │ │ ├── image.change.pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer_1.png │ │ │ │ ├── Layer_1@2x.png │ │ │ │ └── Layer_1@3x.png │ │ │ ├── image.coinjoin.menu.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer_1.png │ │ │ │ ├── Layer_1@2x.png │ │ │ │ └── Layer_1@3x.png │ │ │ ├── image.csv.export.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── csv.export.png │ │ │ │ ├── csv.export@2x.png │ │ │ │ └── csv.export@3x.png │ │ │ ├── image.currency.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cash.png │ │ │ │ ├── cash@2x.png │ │ │ │ └── cash@3x.png │ │ │ ├── image.explore.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Explore-Blue.png │ │ │ │ ├── Explore-Blue@2x.png │ │ │ │ └── Explore-Blue@3x.png │ │ │ ├── image.extend.public.key.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── public.key.png │ │ │ │ ├── public.key@2x.png │ │ │ │ └── public.key@3x.png │ │ │ ├── image.import.private.key.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── import.private.key.png │ │ │ │ ├── import.private.key@2x.png │ │ │ │ └── import.private.key@3x.png │ │ │ ├── image.masternode.keys.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer_1.png │ │ │ │ ├── Layer_1@2x.png │ │ │ │ └── Layer_1@3x.png │ │ │ ├── image.network.monitor.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer_1.png │ │ │ │ ├── Layer_1@2x.png │ │ │ │ └── Layer_1@3x.png │ │ │ ├── image.notifications.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer 1.png │ │ │ │ ├── Layer 1@2x.png │ │ │ │ └── Layer 1@3x.png │ │ │ ├── image.recovery.phrase.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer_1.png │ │ │ │ ├── Layer_1@2x.png │ │ │ │ └── Layer_1@3x.png │ │ │ ├── image.rescan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── rescan.blockchain.png │ │ │ │ ├── rescan.blockchain@2x.png │ │ │ │ └── rescan.blockchain@3x.png │ │ │ ├── image.reset.wallet.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── reset wallet.png │ │ │ │ ├── reset wallet@2x.png │ │ │ │ └── reset wallet@3x.png │ │ │ ├── image.security.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Vector.png │ │ │ │ ├── Vector@2x.png │ │ │ │ └── Vector@3x.png │ │ │ ├── image.settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Iconly_x2F_Bold_x2F_Setting.png │ │ │ │ ├── Iconly_x2F_Bold_x2F_Setting@2x.png │ │ │ │ └── Iconly_x2F_Bold_x2F_Setting@3x.png │ │ │ ├── image.support.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Group.png │ │ │ │ ├── Group@2x.png │ │ │ │ └── Group@3x.png │ │ │ ├── image.tools.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Group.png │ │ │ │ ├── Group@2x.png │ │ │ │ └── Group@3x.png │ │ │ ├── image.touch.id.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── fingerprint.png │ │ │ │ ├── fingerprint@2x.png │ │ │ │ └── fingerprint@3x.png │ │ │ ├── menu_buySellDash.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_buySellDash.png │ │ │ │ ├── menu_buySellDash@2x.png │ │ │ │ ├── menu_buySellDash@3x.png │ │ │ │ ├── menu_buySellDash_dark.png │ │ │ │ ├── menu_buySellDash_dark@2x.png │ │ │ │ └── menu_buySellDash_dark@3x.png │ │ │ ├── menu_invite.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_invite.png │ │ │ │ ├── menu_invite@2x.png │ │ │ │ └── menu_invite@3x.png │ │ │ ├── menu_security.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_security.png │ │ │ │ ├── menu_security@2x.png │ │ │ │ ├── menu_security@3x.png │ │ │ │ ├── menu_security_dark.png │ │ │ │ ├── menu_security_dark@2x.png │ │ │ │ └── menu_security_dark@3x.png │ │ │ ├── menu_settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── levels.png │ │ │ │ ├── levels@2x.png │ │ │ │ ├── levels@3x.png │ │ │ │ ├── menu_settings.png │ │ │ │ ├── menu_settings@2x.png │ │ │ │ └── menu_settings@3x.png │ │ │ ├── menu_support.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_support.png │ │ │ │ ├── menu_support@2x.png │ │ │ │ └── menu_support@3x.png │ │ │ ├── menu_tools.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_tools.png │ │ │ │ ├── menu_tools@2x.png │ │ │ │ ├── menu_tools@3x.png │ │ │ │ ├── tools.png │ │ │ │ ├── tools@2x.png │ │ │ │ └── tools@3x.png │ │ │ └── menu_voting.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── voting.png │ │ │ │ ├── voting@2x.png │ │ │ │ └── voting@3x.png │ │ ├── Onboarding │ │ │ ├── Contents.json │ │ │ ├── ipad_pro_11_bezel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ipad_pro_11_bezel.png │ │ │ ├── ipad_pro_12_bezel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ipad_pro_12_bezel.png │ │ │ ├── ipad_regular_bezel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ipad_regular_bezel.png │ │ │ ├── iphone_5_bezel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iphone_5_bezel.png │ │ │ ├── iphone_8_bezel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iphone_8_bezel.png │ │ │ ├── iphone_bezel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Group 8.png │ │ │ └── iphone_x_bezel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iphone_x_bezel.png │ │ ├── Shortcuts │ │ │ ├── Contents.json │ │ │ ├── shortcut_buySellDash.imageset │ │ │ │ ├── Buy & Sell 1.png │ │ │ │ ├── Buy & Sell.png │ │ │ │ ├── Buy & Sell@2x 1.png │ │ │ │ ├── Buy & Sell@2x.png │ │ │ │ ├── Buy & Sell@3x 1.png │ │ │ │ ├── Buy & Sell@3x.png │ │ │ │ └── Contents.json │ │ │ ├── shortcut_explore.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Explore 1.png │ │ │ │ ├── Explore.png │ │ │ │ ├── Explore@2x 1.png │ │ │ │ ├── Explore@2x.png │ │ │ │ ├── Explore@3x 1.png │ │ │ │ └── Explore@3x.png │ │ │ ├── shortcut_importPrivateKey.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shortcut_importPrivateKey.png │ │ │ │ ├── shortcut_importPrivateKey@2x.png │ │ │ │ ├── shortcut_importPrivateKey@3x.png │ │ │ │ ├── shortcut_importPrivateKey_dark.png │ │ │ │ ├── shortcut_importPrivateKey_dark@2x.png │ │ │ │ └── shortcut_importPrivateKey_dark@3x.png │ │ │ ├── shortcut_localCurrency.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shortcut_localCurrency.png │ │ │ │ ├── shortcut_localCurrency@2x.png │ │ │ │ ├── shortcut_localCurrency@3x.png │ │ │ │ ├── shortcut_localCurrency_dark.png │ │ │ │ ├── shortcut_localCurrency_dark@2x.png │ │ │ │ └── shortcut_localCurrency_dark@3x.png │ │ │ ├── shortcut_payToAddress.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Send 1.png │ │ │ │ ├── Send.png │ │ │ │ ├── Send@2x 1.png │ │ │ │ ├── Send@2x.png │ │ │ │ ├── Send@3x 1.png │ │ │ │ └── Send@3x.png │ │ │ ├── shortcut_payWithNFC.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pay_nfc-1.png │ │ │ │ ├── pay_nfc-1@2x-1.png │ │ │ │ ├── pay_nfc-1@2x.png │ │ │ │ ├── pay_nfc-1@3x-1.png │ │ │ │ ├── pay_nfc-1@3x.png │ │ │ │ └── pay_nfc-2.png │ │ │ ├── shortcut_receive.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Receive 1.png │ │ │ │ ├── Receive.png │ │ │ │ ├── Receive@2x 1.png │ │ │ │ ├── Receive@2x.png │ │ │ │ ├── Receive@3x 1.png │ │ │ │ └── Receive@3x.png │ │ │ ├── shortcut_reportAnIssue.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shortcut_reportAnIssue.png │ │ │ │ ├── shortcut_reportAnIssue@2x.png │ │ │ │ ├── shortcut_reportAnIssue@3x.png │ │ │ │ ├── shortcut_reportAnIssue_dark.png │ │ │ │ ├── shortcut_reportAnIssue_dark@2x.png │ │ │ │ └── shortcut_reportAnIssue_dark@3x.png │ │ │ ├── shortcut_scanToPay.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── scan.svg │ │ │ ├── shortcut_secureWalletNow.imageset │ │ │ │ ├── Backup 1.png │ │ │ │ ├── Backup.png │ │ │ │ ├── Backup@2x 1.png │ │ │ │ ├── Backup@2x.png │ │ │ │ ├── Backup@3x 1.png │ │ │ │ ├── Backup@3x.png │ │ │ │ └── Contents.json │ │ │ ├── shortcut_spend.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── spend.svg │ │ │ ├── shortcut_switchNetwork.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shortcut_switchNetwork.png │ │ │ │ ├── shortcut_switchNetwork@2x.png │ │ │ │ ├── shortcut_switchNetwork@3x.png │ │ │ │ ├── testnet.png │ │ │ │ ├── testnet@2x.png │ │ │ │ └── testnet@3x.png │ │ │ └── shortcut_syncNow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shortcut_syncNow.png │ │ │ │ ├── shortcut_syncNow@2x.png │ │ │ │ ├── shortcut_syncNow@3x.png │ │ │ │ ├── shortcut_syncNow_dark.png │ │ │ │ ├── shortcut_syncNow_dark@2x.png │ │ │ │ └── shortcut_syncNow_dark@3x.png │ │ ├── TabBar │ │ │ ├── Contents.json │ │ │ ├── tabbar_contacts_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts.png │ │ │ │ ├── contacts@2x.png │ │ │ │ └── contacts@3x.png │ │ │ ├── tabbar_contacts_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts_selected.png │ │ │ │ ├── contacts_selected@2x.png │ │ │ │ └── contacts_selected@3x.png │ │ │ ├── tabbar_discover_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── explore.png │ │ │ │ ├── explore@2x.png │ │ │ │ └── explore@3x.png │ │ │ ├── tabbar_discover_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── explore_selected.png │ │ │ │ ├── explore_selected@2x.png │ │ │ │ └── explore_selected@3x.png │ │ │ ├── tabbar_home_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home.png │ │ │ │ ├── home@2x.png │ │ │ │ └── home@3x.png │ │ │ ├── tabbar_home_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_selected.png │ │ │ │ ├── home_selected@2x.png │ │ │ │ └── home_selected@3x.png │ │ │ ├── tabbar_other_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── more.png │ │ │ │ ├── more@2x.png │ │ │ │ └── more@3x.png │ │ │ ├── tabbar_other_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── more_selected.png │ │ │ │ ├── more_selected@2x.png │ │ │ │ └── more_selected@3x.png │ │ │ └── tabbar_pay_button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── receive.sent.png │ │ │ │ ├── receive.sent@2x.png │ │ │ │ └── receive.sent@3x.png │ │ ├── Transactions │ │ │ ├── Contents.json │ │ │ ├── tx.invalid.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── error.png │ │ │ │ ├── error@2x.png │ │ │ │ └── error@3x.png │ │ │ ├── tx.item.cn.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cn-tx.png │ │ │ │ ├── cn-tx@2x.png │ │ │ │ └── cn-tx@3x.png │ │ │ ├── tx.item.coinjoin.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 􀷙.png │ │ │ │ ├── 􀷙@2x.png │ │ │ │ └── 􀷙@3x.png │ │ │ ├── tx.item.internal.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Transaction types - Primary.png │ │ │ │ ├── Transaction types - Primary@2x.png │ │ │ │ └── Transaction types - Primary@3x.png │ │ │ ├── tx.item.received.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Transaction types - Primary.png │ │ │ │ ├── Transaction types - Primary@2x.png │ │ │ │ └── Transaction types - Primary@3x.png │ │ │ └── tx.item.sent.icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Transaction types - Primary.png │ │ │ │ ├── Transaction types - Primary@2x.png │ │ │ │ └── Transaction types - Primary@3x.png │ │ ├── Uphold │ │ │ ├── Contents.json │ │ │ ├── uphold-buy-dash-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── uphold-buy-dash-icon.png │ │ │ │ ├── uphold-buy-dash-icon@2x.png │ │ │ │ └── uphold-buy-dash-icon@3x.png │ │ │ ├── uphold-transfer-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── uphold-transfer-icon.png │ │ │ │ ├── uphold-transfer-icon@2x.png │ │ │ │ └── uphold-transfer-icon@3x.png │ │ │ └── uphold_logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── logo.uphold.png │ │ │ │ ├── logo.uphold@2x.png │ │ │ │ └── logo.uphold@3x.png │ │ ├── Usernames │ │ │ ├── Contents.json │ │ │ ├── dashpay.welcome.disabled.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── dashpay.welcome.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── friends.add.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── icon.clock.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── clock.png │ │ │ │ ├── clock@2x.png │ │ │ │ └── clock@3x.png │ │ │ ├── icon.passphrase.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon.voting.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── voting.png │ │ │ │ ├── voting@2x.png │ │ │ │ └── voting@3x.png │ │ │ ├── link.badge.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── link.badge.png │ │ │ │ ├── link.badge@2x.png │ │ │ │ └── link.badge@3x.png │ │ │ ├── not.approved.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── not_approved.png │ │ │ │ ├── not_approved@2x.png │ │ │ │ └── not_approved@3x.png │ │ │ ├── profile.personalized.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── profile.png │ │ │ │ ├── profile@2x.png │ │ │ │ └── profile@3x.png │ │ │ ├── radio.button.checked.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Option.png │ │ │ │ ├── Option@2x.png │ │ │ │ └── Option@3x.png │ │ │ ├── radio.button.unchecked.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Oval.png │ │ │ │ ├── Oval@2x.png │ │ │ │ └── Oval@3x.png │ │ │ ├── username.create.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── create.username.png │ │ │ │ ├── create.username@2x.png │ │ │ │ └── create.username@3x.png │ │ │ ├── username.letter.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── username.png │ │ │ │ ├── username@2x.png │ │ │ │ └── username@3x.png │ │ │ ├── username.requirement.accepted.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── checkmark.png │ │ │ │ ├── checkmark@2x.png │ │ │ │ └── checkmark@3x.png │ │ │ ├── username.requirement.empty.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── checkmark.png │ │ │ │ ├── checkmark@2x.png │ │ │ │ └── checkmark@3x.png │ │ │ ├── username.requirement.rejected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── xmark.circle.fill.png │ │ │ │ ├── xmark.circle.fill@2x.png │ │ │ │ └── xmark.circle.fill@3x.png │ │ │ ├── username_approved.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── account success.png │ │ │ │ ├── account success@2x.png │ │ │ │ └── account success@3x.png │ │ │ ├── username_rejected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer 1.png │ │ │ │ ├── Layer 1@2x.png │ │ │ │ └── Layer 1@3x.png │ │ │ ├── username_requested.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer 1.png │ │ │ │ ├── Layer 1@2x.png │ │ │ │ └── Layer 1@3x.png │ │ │ ├── voting.blocked.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── voting.blocked.png │ │ │ │ ├── voting.blocked@2x.png │ │ │ │ └── voting.blocked@3x.png │ │ │ └── voting.list.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── feature.list.png │ │ │ │ ├── feature.list@2x.png │ │ │ │ └── feature.list@3x.png │ │ ├── Voting │ │ │ ├── checkmark.circle.white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── checkmark.circle.png │ │ │ │ ├── checkmark.circle@2x.png │ │ │ │ └── checkmark.circle@3x.png │ │ │ └── plus.rounded.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── plus.png │ │ │ │ ├── plus@2x.png │ │ │ │ └── plus@3x.png │ │ ├── backarrow.imageset │ │ │ ├── Contents.json │ │ │ ├── icon.png │ │ │ ├── icon@2x.png │ │ │ └── icon@3x.png │ │ ├── backup-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Large icon.png │ │ │ ├── Large icon@2x.png │ │ │ └── Large icon@3x.png │ │ ├── backup-not-stored-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Icon@3x.png │ │ ├── backup-recovery-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Icon@3x.png │ │ ├── blockchair_logo.imageset │ │ │ ├── Contents.json │ │ │ ├── blockchair.logo.png │ │ │ ├── blockchair.logo@2x.png │ │ │ └── blockchair.logo@3x.png │ │ ├── coinbase.header.imageset │ │ │ ├── Background.png │ │ │ ├── Background@2x.png │ │ │ ├── Background@3x.png │ │ │ └── Contents.json │ │ ├── coinbase.info.imageset │ │ │ ├── Contents.json │ │ │ └── Image C.png │ │ ├── connection_animation_1.imageset │ │ │ ├── Contents.json │ │ │ ├── connection_animation_1.png │ │ │ ├── connection_animation_1@2x.png │ │ │ └── connection_animation_1@3x.png │ │ ├── connection_animation_2.imageset │ │ │ ├── Contents.json │ │ │ ├── connection_animation_2.png │ │ │ ├── connection_animation_2@2x.png │ │ │ └── connection_animation_2@3x.png │ │ ├── connection_animation_3.imageset │ │ │ ├── Contents.json │ │ │ ├── connection_animation_3.png │ │ │ ├── connection_animation_3@2x.png │ │ │ └── connection_animation_3@3x.png │ │ ├── connection_animation_4.imageset │ │ │ ├── Contents.json │ │ │ ├── connection_animation_4.png │ │ │ ├── connection_animation_4@2x.png │ │ │ └── connection_animation_4@3x.png │ │ ├── contacts_avatar_placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── contacts_avatar_placeholder.png │ │ │ ├── contacts_avatar_placeholder@2x.png │ │ │ └── contacts_avatar_placeholder@3x.png │ │ ├── dashCircleFilled.imageset │ │ │ ├── Contents.json │ │ │ ├── dash.circle.filled.png │ │ │ ├── dash.circle.filled@2x.png │ │ │ └── dash.circle.filled@3x.png │ │ ├── dashCurrency.imageset │ │ │ ├── Contents.json │ │ │ ├── dash d.png │ │ │ ├── dash d@2x.png │ │ │ └── dash d@3x.png │ │ ├── dash_logo_testnet.imageset │ │ │ ├── Contents.json │ │ │ ├── dash_logo_testnet.png │ │ │ ├── dash_logo_testnet@2x.png │ │ │ └── dash_logo_testnet@3x.png │ │ ├── dp_add_contact.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_add_contact.png │ │ │ ├── dp_add_contact@2x.png │ │ │ └── dp_add_contact@3x.png │ │ ├── dp_animation_body.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_animation_body.png │ │ │ ├── dp_animation_body@2x.png │ │ │ └── dp_animation_body@3x.png │ │ ├── dp_animation_head.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_animation_head.png │ │ │ ├── dp_animation_head@2x.png │ │ │ └── dp_animation_head@3x.png │ │ ├── dp_avatar_edit.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_avatar_edit.png │ │ │ ├── dp_avatar_edit@2x.png │ │ │ └── dp_avatar_edit@3x.png │ │ ├── dp_avatar_gallery.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_avatar_gallery.png │ │ │ ├── dp_avatar_gallery@2x.png │ │ │ └── dp_avatar_gallery@3x.png │ │ ├── dp_avatar_gravatar.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_avatar_gravatar.png │ │ │ ├── dp_avatar_gravatar@2x.png │ │ │ └── dp_avatar_gravatar@3x.png │ │ ├── dp_avatar_photo.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_avatar_photo.png │ │ │ ├── dp_avatar_photo@2x.png │ │ │ └── dp_avatar_photo@3x.png │ │ ├── dp_avatar_url.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_avatar_url.png │ │ │ ├── dp_avatar_url@2x.png │ │ │ └── dp_avatar_url@3x.png │ │ ├── dp_current_user_placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_current_user_placeholder.png │ │ │ ├── dp_current_user_placeholder@2x.png │ │ │ └── dp_current_user_placeholder@3x.png │ │ ├── dp_established_contact.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_established_contact.png │ │ │ ├── dp_established_contact@2x.png │ │ │ └── dp_established_contact@3x.png │ │ ├── dp_friendship.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_friendship.png │ │ │ ├── dp_friendship@2x.png │ │ │ └── dp_friendship@3x.png │ │ ├── dp_no_notifications.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_no_notifications.png │ │ │ ├── dp_no_notifications@2x.png │ │ │ └── dp_no_notifications@3x.png │ │ ├── dp_pending_contact.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_pending_contact.png │ │ │ ├── dp_pending_contact@2x.png │ │ │ └── dp_pending_contact@3x.png │ │ ├── dp_registration_done_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_registration_done_icon.png │ │ │ ├── dp_registration_done_icon@2x.png │ │ │ └── dp_registration_done_icon@3x.png │ │ ├── dp_search_add_contact.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_search_add_contact.png │ │ │ ├── dp_search_add_contact@2x.png │ │ │ └── dp_search_add_contact@3x.png │ │ ├── dp_send_request.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_send_request.png │ │ │ ├── dp_send_request@2x.png │ │ │ └── dp_send_request@3x.png │ │ ├── dp_show_qr.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_show_qr.png │ │ │ ├── dp_show_qr@2x.png │ │ │ └── dp_show_qr@3x.png │ │ ├── dp_user_search_anim_1.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_user_search_anim_1.png │ │ │ ├── dp_user_search_anim_1@2x.png │ │ │ └── dp_user_search_anim_1@3x.png │ │ ├── dp_user_search_anim_2.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_user_search_anim_2.png │ │ │ ├── dp_user_search_anim_2@2x.png │ │ │ └── dp_user_search_anim_2@3x.png │ │ ├── dp_user_search_anim_3.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_user_search_anim_3.png │ │ │ ├── dp_user_search_anim_3@2x.png │ │ │ └── dp_user_search_anim_3@3x.png │ │ ├── dp_user_search_anim_4.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_user_search_anim_4.png │ │ │ ├── dp_user_search_anim_4@2x.png │ │ │ └── dp_user_search_anim_4@3x.png │ │ ├── dp_user_search_placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_user_search_placeholder.png │ │ │ ├── dp_user_search_placeholder@2x.png │ │ │ └── dp_user_search_placeholder@3x.png │ │ ├── dp_user_search_warning.imageset │ │ │ ├── Contents.json │ │ │ ├── dp_user_search_warning.png │ │ │ ├── dp_user_search_warning@2x.png │ │ │ └── dp_user_search_warning@3x.png │ │ ├── external.link.imageset │ │ │ ├── Contents.json │ │ │ ├── external.link.png │ │ │ ├── external.link@2x.png │ │ │ └── external.link@3x.png │ │ ├── eye_slash.imageset │ │ │ ├── Button.png │ │ │ ├── Button@2x.png │ │ │ ├── Button@3x.png │ │ │ └── Contents.json │ │ ├── greyarrow.imageset │ │ │ ├── Contents.json │ │ │ ├── large.png │ │ │ ├── large@2x.png │ │ │ └── large@3x.png │ │ ├── icon_bell.imageset │ │ │ ├── Contents.json │ │ │ ├── bell.png │ │ │ ├── bell@2x.png │ │ │ └── bell@3x.png │ │ ├── icon_bell_active.imageset │ │ │ ├── Contents.json │ │ │ ├── bell.png │ │ │ ├── bell@2x.png │ │ │ └── bell@3x.png │ │ ├── icon_checkbox.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_checkbox.png │ │ │ ├── icon_checkbox@2x.png │ │ │ └── icon_checkbox@3x.png │ │ ├── icon_checkbox_checked.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_checkbox_checked.png │ │ │ ├── icon_checkbox_checked@2x.png │ │ │ ├── icon_checkbox_checked@3x.png │ │ │ ├── icon_checkbox_checked_dark.png │ │ │ ├── icon_checkbox_checked_dark@2x.png │ │ │ └── icon_checkbox_checked_dark@3x.png │ │ ├── icon_checkbox_square.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_checkbox_square.png │ │ │ ├── icon_checkbox_square@2x.png │ │ │ └── icon_checkbox_square@3x.png │ │ ├── icon_checkbox_square_checked.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_checkbox_square_checked.png │ │ │ ├── icon_checkbox_square_checked@2x.png │ │ │ └── icon_checkbox_square_checked@3x.png │ │ ├── icon_continue.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_continue.png │ │ │ ├── icon_continue@2x.png │ │ │ └── icon_continue@3x.png │ │ ├── icon_convert.imageset │ │ │ ├── Contents.json │ │ │ ├── convert.png │ │ │ ├── convert@2x.png │ │ │ └── convert@3x.png │ │ ├── icon_copy_outline.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Icon@3x.png │ │ ├── icon_create_invitation.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_create_invitation.png │ │ │ ├── icon_create_invitation@2x.png │ │ │ └── icon_create_invitation@3x.png │ │ ├── icon_dash_currency.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_dash_currency.png │ │ │ ├── icon_dash_currency@2x.png │ │ │ └── icon_dash_currency@3x.png │ │ ├── icon_decline.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_decline.png │ │ │ ├── icon_decline@2x.png │ │ │ └── icon_decline@3x.png │ │ ├── icon_disclosure_indicator.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_disclosure_indicator.png │ │ │ ├── icon_disclosure_indicator@2x.png │ │ │ └── icon_disclosure_indicator@3x.png │ │ ├── icon_dropdown_arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_dropdown_arrow.png │ │ │ ├── icon_dropdown_arrow@2x.png │ │ │ └── icon_dropdown_arrow@3x.png │ │ ├── icon_error.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_error.png │ │ │ ├── icon_error@2x.png │ │ │ └── icon_error@3x.png │ │ ├── icon_exclamation.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_exclamation.png │ │ │ ├── icon_exclamation@2x.png │ │ │ ├── icon_exclamation@3x.png │ │ │ ├── icon_exclamation_dark.png │ │ │ ├── icon_exclamation_dark@2x.png │ │ │ └── icon_exclamation_dark@3x.png │ │ ├── icon_faceid.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_faceid.png │ │ │ ├── icon_faceid@2x.png │ │ │ └── icon_faceid@3x.png │ │ ├── icon_filter_button.imageset │ │ │ ├── Contents.json │ │ │ ├── icon.png │ │ │ ├── icon@2x.png │ │ │ └── icon@3x.png │ │ ├── icon_invitation_error.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_invitation_error.png │ │ │ ├── icon_invitation_error@2x.png │ │ │ └── icon_invitation_error@3x.png │ │ ├── icon_invitation_read.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_invitation_read.png │ │ │ ├── icon_invitation_read@2x.png │ │ │ └── icon_invitation_read@3x.png │ │ ├── icon_invitation_read_big.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_invitation_read_big.png │ │ │ ├── icon_invitation_read_big@2x.png │ │ │ └── icon_invitation_read_big@3x.png │ │ ├── icon_invitation_unread.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_invitation_unread.png │ │ │ ├── icon_invitation_unread@2x.png │ │ │ └── icon_invitation_unread@3x.png │ │ ├── icon_invitation_unread_big.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_invitation_unread_big.png │ │ │ ├── icon_invitation_unread_big@2x.png │ │ │ └── icon_invitation_unread_big@3x.png │ │ ├── icon_lock_faceid.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_lock_faceid.png │ │ │ ├── icon_lock_faceid@2x.png │ │ │ └── icon_lock_faceid@3x.png │ │ ├── icon_lock_receive.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_lock_receive.png │ │ │ ├── icon_lock_receive@2x.png │ │ │ └── icon_lock_receive@3x.png │ │ ├── icon_lock_scan_to_pay.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_lock_scan_to_pay.png │ │ │ ├── icon_lock_scan_to_pay@2x.png │ │ │ └── icon_lock_scan_to_pay@3x.png │ │ ├── icon_lock_touchid.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_lock_touchid.png │ │ │ ├── icon_lock_touchid@2x.png │ │ │ └── icon_lock_touchid@3x.png │ │ ├── icon_options.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_options.png │ │ │ ├── icon_options@2x.png │ │ │ └── icon_options@3x.png │ │ ├── icon_qr_cancel.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_qr_cancel.png │ │ │ ├── icon_qr_cancel@2x.png │ │ │ └── icon_qr_cancel@3x.png │ │ ├── icon_qr_flash.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_qr_flash.png │ │ │ ├── icon_qr_flash@2x.png │ │ │ └── icon_qr_flash@3x.png │ │ ├── icon_reload.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_reload.png │ │ │ ├── icon_reload@2x.png │ │ │ └── icon_reload@3x.png │ │ ├── icon_screenshot_warning.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_screenshot_warning.png │ │ │ ├── icon_screenshot_warning@2x.png │ │ │ └── icon_screenshot_warning@3x.png │ │ ├── icon_secure_wallet.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_secure_wallet.png │ │ │ ├── icon_secure_wallet@2x.png │ │ │ ├── icon_secure_wallet@3x.png │ │ │ ├── icon_secure_wallet_dark.png │ │ │ ├── icon_secure_wallet_dark@2x.png │ │ │ └── icon_secure_wallet_dark@3x.png │ │ ├── icon_security.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_security.png │ │ │ ├── icon_security@2x.png │ │ │ ├── icon_security@3x.png │ │ │ ├── icon_security_dark.png │ │ │ ├── icon_security_dark@2x.png │ │ │ └── icon_security_dark@3x.png │ │ ├── icon_security_excl.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_security_excl.png │ │ │ ├── icon_security_excl@2x.png │ │ │ └── icon_security_excl@3x.png │ │ ├── icon_security_ok.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_security_ok.png │ │ │ ├── icon_security_ok@2x.png │ │ │ └── icon_security_ok@3x.png │ │ ├── icon_syncing_large.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_syncing_large.png │ │ │ ├── icon_syncing_large@2x.png │ │ │ └── icon_syncing_large@3x.png │ │ ├── icon_thumbs_up.imageset │ │ │ ├── Contents.json │ │ │ ├── Vector.png │ │ │ ├── Vector@2x.png │ │ │ └── Vector@3x.png │ │ ├── icon_touchid.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_touchid.png │ │ │ ├── icon_touchid@2x.png │ │ │ └── icon_touchid@3x.png │ │ ├── icon_tx_list_dash.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_tx_list_dash.png │ │ │ ├── icon_tx_list_dash@2x.png │ │ │ └── icon_tx_list_dash@3x.png │ │ ├── icon_warning.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_warning.png │ │ │ ├── icon_warning@2x.png │ │ │ ├── icon_warning@3x.png │ │ │ ├── icon_warning_dark.png │ │ │ ├── icon_warning_dark@2x.png │ │ │ └── icon_warning_dark@3x.png │ │ ├── image.filter.options.imageset │ │ │ ├── Contents.json │ │ │ ├── all trans.png │ │ │ ├── all trans@2x.png │ │ │ └── all trans@3x.png │ │ ├── image_bg.imageset │ │ │ ├── Contents.json │ │ │ ├── image_bg~iPad.jpg │ │ │ └── image_bg~iPhone.jpg │ │ ├── import-icon.imageset │ │ │ ├── @2x.png │ │ │ ├── @3x.png │ │ │ └── Contents.json │ │ ├── invalid_qr.imageset │ │ │ ├── Contents.json │ │ │ ├── invalid_qr.png │ │ │ ├── invalid_qr@2x.png │ │ │ └── invalid_qr@3x.png │ │ ├── invite_logo.imageset │ │ │ ├── Contents.json │ │ │ ├── invite_logo.png │ │ │ ├── invite_logo@2x.png │ │ │ └── invite_logo@3x.png │ │ ├── logo_with_tag.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_with_tag.png │ │ │ ├── logo_with_tag@2x.png │ │ │ └── logo_with_tag@3x.png │ │ ├── logo_with_tag_blue.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_with_tag_blue.png │ │ │ ├── logo_with_tag_blue@2x.png │ │ │ └── logo_with_tag_blue@3x.png │ │ ├── logout.imageset │ │ │ ├── Contents.json │ │ │ ├── icon.disconnect.png │ │ │ ├── icon.disconnect@2x.png │ │ │ └── icon.disconnect@3x.png │ │ ├── network.unavailable.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Icon@3x.png │ │ ├── no_contacts_placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── no_contacts_placeholder.png │ │ │ ├── no_contacts_placeholder@2x.png │ │ │ └── no_contacts_placeholder@3x.png │ │ ├── pay_copied_address.imageset │ │ │ ├── Contents.json │ │ │ ├── Menu items-1.png │ │ │ ├── Menu items@2x-1.png │ │ │ └── Menu items@3x-1.png │ │ ├── pay_nfc.imageset │ │ │ ├── Contents.json │ │ │ ├── pay_nfc.png │ │ │ ├── pay_nfc@2x.png │ │ │ ├── pay_nfc@3x.png │ │ │ ├── pay_nfc_dark.png │ │ │ ├── pay_nfc_dark@2x.png │ │ │ └── pay_nfc_dark@3x.png │ │ ├── pay_scan_qr.imageset │ │ │ ├── Contents.json │ │ │ ├── Menu items.png │ │ │ ├── Menu items@2x.png │ │ │ └── Menu items@3x.png │ │ ├── pay_to_contact.imageset │ │ │ ├── Avatar.png │ │ │ ├── Avatar@2x.png │ │ │ ├── Avatar@3x.png │ │ │ └── Contents.json │ │ ├── payments_nav_cross.imageset │ │ │ ├── Contents.json │ │ │ ├── payments_nav_cross.png │ │ │ ├── payments_nav_cross@2x.png │ │ │ └── payments_nav_cross@3x.png │ │ ├── portal.coinbase.disabled.imageset │ │ │ ├── Contents.json │ │ │ ├── portal.coinbase.disabled.png │ │ │ ├── portal.coinbase.disabled@2x.png │ │ │ └── portal.coinbase.disabled@3x.png │ │ ├── portal.coinbase.imageset │ │ │ ├── Contents.json │ │ │ ├── portal.coinbase.png │ │ │ ├── portal.coinbase@2x.png │ │ │ └── portal.coinbase@3x.png │ │ ├── portal.thor.imageset │ │ │ ├── Contents.json │ │ │ ├── portal.thor.png │ │ │ ├── portal.thor@2x.png │ │ │ └── portal.thor@3x.png │ │ ├── portal.topper.imageset │ │ │ ├── Contents.json │ │ │ ├── portal.topper.png │ │ │ ├── portal.topper@2x.png │ │ │ └── portal.topper@3x.png │ │ ├── portal.uphold.disabled.imageset │ │ │ ├── Contents.json │ │ │ ├── portal.uphold.disabled.png │ │ │ ├── portal.uphold.disabled@2x.png │ │ │ └── portal.uphold.disabled@3x.png │ │ ├── portal.uphold.imageset │ │ │ ├── Contents.json │ │ │ ├── portal.uphold.png │ │ │ ├── portal.uphold@2x.png │ │ │ └── portal.uphold@3x.png │ │ ├── qr_frame.imageset │ │ │ ├── Contents.json │ │ │ ├── qr_frame.png │ │ │ ├── qr_frame@2x.png │ │ │ └── qr_frame@3x.png │ │ ├── scan-qr.accessory.icon.imageset │ │ │ ├── Button.png │ │ │ ├── Button@2x.png │ │ │ ├── Button@3x.png │ │ │ ├── Contents.json │ │ │ ├── scan-qr.accessory.icon.png │ │ │ ├── scan-qr.accessory.icon@2x.png │ │ │ └── scan-qr.accessory.icon@3x.png │ │ ├── service.BuyAndConvertDash.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Icon@3x.png │ │ ├── service.BuyDashwithfiat.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Icon@3x.png │ │ ├── service.TransferDash.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Icon@3x.png │ │ ├── service.coinbase.square.imageset │ │ │ ├── Contents.json │ │ │ ├── Frame 1818.png │ │ │ ├── Frame 1818@2x.png │ │ │ └── Frame 1818@3x.png │ │ ├── service.uphold.square.imageset │ │ │ ├── Contents.json │ │ │ ├── Frame 1818.png │ │ │ ├── Frame 1818@2x.png │ │ │ └── Frame 1818@3x.png │ │ ├── tx.reclassify.icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 1818.png │ │ │ ├── Group 1818@2x.png │ │ │ └── Group 1818@3x.png │ │ ├── unable_to_connect.imageset │ │ │ ├── Contents.json │ │ │ ├── unable_to_connect.png │ │ │ ├── unable_to_connect@2x.png │ │ │ └── unable_to_connect@3x.png │ │ ├── validation_checkmark.imageset │ │ │ ├── Contents.json │ │ │ ├── validation_checkmark.png │ │ │ ├── validation_checkmark@2x.png │ │ │ └── validation_checkmark@3x.png │ │ ├── validation_cross.imageset │ │ │ ├── Contents.json │ │ │ ├── validation_cross.png │ │ │ ├── validation_cross@2x.png │ │ │ └── validation_cross@3x.png │ │ ├── zenledger.imageset │ │ │ ├── Contents.json │ │ │ ├── zen_ledger.png │ │ │ ├── zen_ledger@2x.png │ │ │ └── zen_ledger@3x.png │ │ └── zenledger_large.imageset │ │ │ ├── Contents.json │ │ │ ├── zenledger_large.png │ │ │ ├── zenledger_large@2x.png │ │ │ └── zenledger_large@3x.png │ ├── coinflip.aiff │ └── mixing_anim.json ├── Sources │ ├── AppleWatch │ │ ├── BRAppleWatchData.h │ │ ├── BRAppleWatchData.m │ │ ├── BRAppleWatchSharedConstants.h │ │ ├── BRAppleWatchTransactionData.h │ │ ├── BRAppleWatchTransactionData.m │ │ ├── DSWatchTransactionData.h │ │ ├── DSWatchTransactionDataObject.h │ │ ├── DSWatchTransactionDataObject.m │ │ ├── DWPhoneWCSessionManager.h │ │ └── DWPhoneWCSessionManager.m │ ├── Application │ │ ├── App.swift │ │ ├── Constants.swift │ │ ├── Syncyng Activity Monitor │ │ │ └── SyncingActivityMonitor.swift │ │ ├── Tools.swift │ │ └── Types.swift │ ├── Categories │ │ ├── CALayer+MBAnimationPersistence.h │ │ ├── CALayer+MBAnimationPersistence.m │ │ ├── ColorizedText.swift │ │ ├── DSChain+DashWallet.h │ │ ├── DSChain+DashWallet.m │ │ ├── DSTransaction+DashWallet.h │ │ ├── DSTransaction+DashWallet.m │ │ ├── DSTransaction+DashWallet.swift │ │ ├── Embedding │ │ │ ├── UIView+DWEmbedding.h │ │ │ ├── UIView+DWEmbedding.m │ │ │ ├── UIViewController+DWEmbedding.h │ │ │ └── UIViewController+DWEmbedding.m │ │ ├── ErrorPresentable.swift │ │ ├── FileManager+DashWallet.swift │ │ ├── Foundation+Bitcoin.swift │ │ ├── NSAttributedString+Builder.swift │ │ ├── NSAttributedString+DWHighlightText.h │ │ ├── NSAttributedString+DWHighlightText.m │ │ ├── NSLayoutConstraint+DashWallet.swift │ │ ├── NSPredicate+DWFullTextSearch.h │ │ ├── NSPredicate+DWFullTextSearch.m │ │ ├── NSString+DWTextSize.h │ │ ├── NSString+DWTextSize.m │ │ ├── NavigationBarAppearanceCustomizable.swift │ │ ├── NumberFormatter+DashWallet.swift │ │ ├── Numbers+Dash.swift │ │ ├── String+DashWallet.swift │ │ ├── UIApplication+DashWallet.swift │ │ ├── UIDevice+Compatibility.swift │ │ ├── UIDevice+DashWallet.h │ │ ├── UIDevice+DashWallet.m │ │ ├── UIHostingController+DashWallet.swift │ │ ├── UIStackView+DashWallet.swift │ │ ├── UITableView+DashWallet.swift │ │ ├── UIView+DWFindConstraints.h │ │ ├── UIView+DWFindConstraints.m │ │ ├── UIView+DWRecursiveSubview.h │ │ ├── UIView+DWRecursiveSubview.m │ │ ├── UIView+DWReuseHelper.h │ │ ├── UIView+DWReuseHelper.m │ │ ├── UIView+Reuse.swift │ │ ├── UIViewController+AlertPresenting.swift │ │ ├── UIViewController+DWDisplayError.h │ │ ├── UIViewController+DWDisplayError.m │ │ └── UIViewController+DashWallet.swift │ ├── Foundation │ │ └── DashTextAttachment.swift │ ├── Infrastructure │ │ ├── Currency Exchanger │ │ │ ├── CurrencyExchanger.swift │ │ │ ├── CurrencyExchanger_Objc.h │ │ │ ├── CurrencyExchanger_Objc.m │ │ │ └── Data Provider │ │ │ │ └── RatesProvider.swift │ │ ├── Database │ │ │ ├── DatabaseConnection.swift │ │ │ ├── Migrations.bundle │ │ │ │ ├── 20220713105051_initial.sql │ │ │ │ ├── 20220803184458_add_address_userinfo.sql │ │ │ │ ├── 20230208142504_update_tx_userinfo_table.sql │ │ │ │ ├── 20230212103028_add_rate_fraction_digits_into_userinfo_table.sql │ │ │ │ ├── 20231023152234_add_username_requests.sql │ │ │ │ ├── 20241130210940_migrate_username_request.sql │ │ │ │ └── 20250418145536_more_metadata_tx_userinfo.sql │ │ │ └── Migrations │ │ │ │ ├── AddGiftCardsTable.swift │ │ │ │ ├── AddIconBitmapsTable.swift │ │ │ │ └── SeedDB.swift │ │ └── Networking │ │ │ └── HTTPClient.swift │ ├── Models │ │ ├── CoinJoin │ │ │ ├── CoinJoinMixingTxSet.swift │ │ │ ├── CoinJoinProgress.swift │ │ │ ├── CoinJoinService.swift │ │ │ └── CoinJoinTransaction.swift │ │ ├── Coinbase │ │ │ ├── Accounts │ │ │ │ ├── Account │ │ │ │ │ └── CBAccount.swift │ │ │ │ ├── AccountRepository.swift │ │ │ │ ├── AccountService.swift │ │ │ │ └── Service │ │ │ │ │ └── CBAccountManager.swift │ │ │ ├── Auth │ │ │ │ ├── CBAuth.swift │ │ │ │ ├── CBAuthInterop.swift │ │ │ │ ├── Services │ │ │ │ │ ├── CBSecureTokenService.swift │ │ │ │ │ └── CBUserManager.swift │ │ │ │ └── User │ │ │ │ │ └── CBUser.swift │ │ │ ├── Coinbase+Constants.swift │ │ │ ├── Coinbase+Error.swift │ │ │ ├── Coinbase.swift │ │ │ ├── Infrastructure │ │ │ │ ├── API │ │ │ │ │ ├── CoinbaseAPIClient.swift │ │ │ │ │ ├── CoinbaseAPIEndpoint.swift │ │ │ │ │ └── DTOs │ │ │ │ │ │ ├── Account │ │ │ │ │ │ └── CoinbaseUserAccountData.swift │ │ │ │ │ │ ├── Address │ │ │ │ │ │ ├── CoinbaseAccountAddress.swift │ │ │ │ │ │ └── CoinbaseCreateAddressesRequest.swift │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── CoinbaseTokenResponse.swift │ │ │ │ │ │ └── CoinbaseUserAuthInformation.swift │ │ │ │ │ │ ├── Base │ │ │ │ │ │ ├── BaseResponse.swift │ │ │ │ │ │ └── CoinbaseAmount.swift │ │ │ │ │ │ ├── Deposit │ │ │ │ │ │ ├── CoinbaseDepositRequest.swift │ │ │ │ │ │ └── CoinbaseDepositResponse.swift │ │ │ │ │ │ ├── Exchange Rates │ │ │ │ │ │ └── CoinbaseExchangeRateResponse.swift │ │ │ │ │ │ ├── Payment Methods │ │ │ │ │ │ └── CoinbasePaymentMethodsResponse.swift │ │ │ │ │ │ ├── Place Buy Order │ │ │ │ │ │ ├── CoinbasePlaceBuyOrderRequest.swift │ │ │ │ │ │ └── CoinbasePlaceBuyOrderResponse.swift │ │ │ │ │ │ ├── Trade │ │ │ │ │ │ ├── CoinbaseBaseIDForCurrencyResponse.swift │ │ │ │ │ │ ├── CoinbaseSwapeTradeRequest.swift │ │ │ │ │ │ └── CoinbaseSwapeTradeResponse.swift │ │ │ │ │ │ └── Transactions │ │ │ │ │ │ ├── CoinbaseTransactionResponse.swift │ │ │ │ │ │ └── CoinbaseTransactionsRequest.swift │ │ │ │ └── Currency Exchanger │ │ │ │ │ └── CoinbaseRatesProvider.swift │ │ │ ├── Payment Methods │ │ │ │ └── PaymentMethods.swift │ │ │ └── Services │ │ │ │ └── CoinbaseService.swift │ │ ├── CrowdNode │ │ │ ├── API │ │ │ │ ├── CrowdNodeEndpoint.swift │ │ │ │ └── DTOs │ │ │ │ │ ├── AddressStatus.swift │ │ │ │ │ ├── CrowdNodeBalance.swift │ │ │ │ │ ├── FeeInfo.swift │ │ │ │ │ ├── IsAddressInUse.swift │ │ │ │ │ ├── IsDefaultEmail.swift │ │ │ │ │ ├── MessageStatus.swift │ │ │ │ │ └── WithdrawalLimit.swift │ │ │ ├── CrowdNode+Constants.swift │ │ │ ├── CrowdNode+UserDefaults.swift │ │ │ ├── CrowdNode.swift │ │ │ ├── Model │ │ │ │ ├── ApiCode.swift │ │ │ │ └── CrowdNodeError.swift │ │ │ ├── Services │ │ │ │ ├── CrowdNodeWebService.swift │ │ │ │ └── TransactionObserver.swift │ │ │ └── TxFilters │ │ │ │ ├── CoinsToAddressTxFilter.swift │ │ │ │ ├── CrowdNodeAPIConfirmationTx.swift │ │ │ │ ├── CrowdNodeDepositTx.swift │ │ │ │ ├── CrowdNodeErrorResponse.swift │ │ │ │ ├── CrowdNodeRequest.swift │ │ │ │ ├── CrowdNodeResponse.swift │ │ │ │ ├── CrowdNodeTopUpTx.swift │ │ │ │ ├── CrowdNodeWithdrawalReceivedTx.swift │ │ │ │ ├── FullCrowdNodeSignUpTxSet.swift │ │ │ │ ├── SingleInputAddressSelector.swift │ │ │ │ ├── SpendableTransaction.swift │ │ │ │ ├── TransactionFilter.swift │ │ │ │ ├── TransactionWrapper.swift │ │ │ │ └── TxWithinTimePeriod.swift │ │ ├── DWAppGroupConstants.h │ │ ├── DWAppGroupOptions.h │ │ ├── DWAppGroupOptions.m │ │ ├── DWDateFormatter.swift │ │ ├── DWEnvironment.h │ │ ├── DWEnvironment.m │ │ ├── DWGlobalOptions.h │ │ ├── DWGlobalOptions.m │ │ ├── DWPaymentCurrency.h │ │ ├── DWVersionManager.h │ │ ├── DWVersionManager.m │ │ ├── DataMigration │ │ │ ├── DWDataMigrationManager.h │ │ │ ├── DWDataMigrationManager.m │ │ │ └── DashWallet.xcdatamodeld │ │ │ │ ├── .xccurrentversion │ │ │ │ ├── BreadWallet 2.xcdatamodel │ │ │ │ └── contents │ │ │ │ └── BreadWallet.xcdatamodel │ │ │ │ └── contents │ │ ├── Explore Dash │ │ │ ├── ExploreDash.swift │ │ │ ├── Extensions │ │ │ │ └── SQLite+ExloreDash.swift │ │ │ ├── Infrastructure │ │ │ │ ├── DAO Impl │ │ │ │ │ ├── AtmDAO.swift │ │ │ │ │ └── MerchantDAO.swift │ │ │ │ └── Database Connection │ │ │ │ │ └── ExploreDatabaseConnection.swift │ │ │ ├── Model │ │ │ │ ├── DAO │ │ │ │ │ ├── GiftCardsDAO.swift │ │ │ │ │ └── PointOfUseDAO.swift │ │ │ │ ├── DashSpend │ │ │ │ │ ├── CTXConstants.swift │ │ │ │ │ ├── GiftCardProvider.swift │ │ │ │ │ └── PiggyCardsConstants.swift │ │ │ │ └── Entites │ │ │ │ │ ├── CTXSpendModels.swift │ │ │ │ │ ├── ExplorePointOfUse.swift │ │ │ │ │ ├── GiftCard.swift │ │ │ │ │ └── PiggyCardsModels.swift │ │ │ └── Services │ │ │ │ ├── DWLocationManager.swift │ │ │ │ ├── DashSpend │ │ │ │ ├── CTX │ │ │ │ │ ├── CTXSpendAPI.swift │ │ │ │ │ ├── CTXSpendEndpoint.swift │ │ │ │ │ ├── CTXSpendRepository.swift │ │ │ │ │ └── CTXSpendTokenService.swift │ │ │ │ ├── DashSpendError.swift │ │ │ │ ├── DashSpendRepository.swift │ │ │ │ ├── DashSpendRepositoryFactory.swift │ │ │ │ └── PiggyCards │ │ │ │ │ ├── PiggyCardsAPI.swift │ │ │ │ │ ├── PiggyCardsEndpoint.swift │ │ │ │ │ ├── PiggyCardsRepository.swift │ │ │ │ │ └── PiggyCardsTokenService.swift │ │ │ │ └── ExploreDatabaseSyncManager.swift │ │ ├── Taxes │ │ │ ├── Address │ │ │ │ ├── AddressUserInfo.swift │ │ │ │ └── DAO │ │ │ │ │ └── AddressUserInfoDAO.swift │ │ │ ├── Services │ │ │ │ └── TaxReportGenerator.swift │ │ │ ├── Taxes.swift │ │ │ └── ZenLedger.swift │ │ ├── Transactions │ │ │ ├── BalanceNotifier.swift │ │ │ ├── Model │ │ │ │ └── Transaction.swift │ │ │ └── SendCoinsService.swift │ │ ├── Tx Metadata │ │ │ ├── DAO │ │ │ │ ├── IconBitmapDAO.swift │ │ │ │ └── TransactionMetadataDAO.swift │ │ │ ├── IconBitmap.swift │ │ │ ├── ServiceName.swift │ │ │ └── TransactionMetadata.swift │ │ ├── Tx │ │ │ ├── GroupedTransactions.swift │ │ │ └── Transactions.swift │ │ ├── URL Handling │ │ │ ├── DWURLActions.h │ │ │ ├── DWURLActions.m │ │ │ ├── DWURLParser.h │ │ │ ├── DWURLParser.m │ │ │ ├── DWURLRequestHandler.h │ │ │ └── DWURLRequestHandler.m │ │ ├── Uphold │ │ │ ├── DWUpholdAPIProvider.h │ │ │ ├── DWUpholdAPIProvider.m │ │ │ ├── DWUpholdAccountObject.h │ │ │ ├── DWUpholdAccountObject.m │ │ │ ├── DWUpholdCardObject+Internal.h │ │ │ ├── DWUpholdCardObject.h │ │ │ ├── DWUpholdCardObject.m │ │ │ ├── DWUpholdClient.h │ │ │ ├── DWUpholdClient.m │ │ │ ├── DWUpholdClientCancellationToken.h │ │ │ ├── DWUpholdConstants.h │ │ │ ├── DWUpholdConstants.m │ │ │ ├── DWUpholdMainnetConstants.h │ │ │ ├── DWUpholdMainnetConstants.m │ │ │ ├── DWUpholdTransactionObject.h │ │ │ ├── DWUpholdTransactionObject.m │ │ │ ├── Model │ │ │ │ ├── SupportedTopperPaymentMethods.swift │ │ │ │ ├── UpholdCapability.swift │ │ │ │ └── UpholdError.swift │ │ │ ├── SupportedTopperAssets.swift │ │ │ ├── Topper.swift │ │ │ └── UpholdClient.swift │ │ ├── UsernamePrefs.swift │ │ ├── Usernames │ │ │ ├── CurrentUserProfileModel.swift │ │ │ └── UsernamePrefs.swift │ │ └── Voting │ │ │ ├── DAO │ │ │ └── UsernameRequestsDAO.swift │ │ │ ├── MasternodeKey.swift │ │ │ ├── UsernameRequest.swift │ │ │ ├── VotingConstants.swift │ │ │ ├── VotingFiltersModel.swift │ │ │ └── VotingPrefs.swift │ ├── UI │ │ ├── Assembly │ │ │ └── UIAssembly.swift │ │ ├── Basic Info │ │ │ └── BasicInfoController.swift │ │ ├── Buy Sell │ │ │ ├── BuySellPortal.storyboard │ │ │ ├── BuySellPortalViewController.swift │ │ │ ├── IntegrationViewController.swift │ │ │ ├── Model │ │ │ │ ├── BaseIntegrationModel.swift │ │ │ │ ├── BuySellPortalModel.swift │ │ │ │ ├── ServiceDataProvider.swift │ │ │ │ ├── ServiceDataSource.swift │ │ │ │ └── VO │ │ │ │ │ └── ServiceItem.swift │ │ │ └── Views │ │ │ │ └── BuySellServiceItemCell.swift │ │ ├── Coinbase │ │ │ ├── Account List Controller │ │ │ │ ├── AccountListController.swift │ │ │ │ ├── Model │ │ │ │ │ └── AccountListModel.swift │ │ │ │ └── Views │ │ │ │ │ └── AccountCell.swift │ │ │ ├── Base.lproj │ │ │ │ └── Coinbase.storyboard │ │ │ ├── Base │ │ │ │ ├── CoinbaseAmountViewController.swift │ │ │ │ ├── UIViewController+Coinbase.swift │ │ │ │ └── ViewModel+Coinbase.swift │ │ │ ├── Buy Dash │ │ │ │ ├── BuyDashViewController.swift │ │ │ │ ├── Confirm Transaction Controller │ │ │ │ │ ├── ConfirmOrderController.swift │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ConfirmOrderModel.swift │ │ │ │ │ └── Views │ │ │ │ │ │ └── ConfirmOrderCells.swift │ │ │ │ ├── Model │ │ │ │ │ └── BuyDashModel.swift │ │ │ │ ├── Payment Methods Controller │ │ │ │ │ ├── PaymentMethodsController.swift │ │ │ │ │ └── Views │ │ │ │ │ │ └── PaymentMethodCell.swift │ │ │ │ └── Views │ │ │ │ │ ├── ActivePaymentMethodView.swift │ │ │ │ │ └── SendingToView.swift │ │ │ ├── CoinbaseEntryPoint │ │ │ │ ├── CoinbaseEntryPointModel.swift │ │ │ │ └── IntegrationViewController+Coinbase.swift │ │ │ ├── Custodial Swaps │ │ │ │ ├── CustodialSwapsViewController.swift │ │ │ │ ├── Model │ │ │ │ │ └── CustodialSwapsModel.swift │ │ │ │ └── Order Preview │ │ │ │ │ ├── ConvertCryptoOrderPreviewController.swift │ │ │ │ │ ├── Model │ │ │ │ │ └── ConvertCryptoOrderPreviewModel.swift │ │ │ │ │ └── Views │ │ │ │ │ └── ConvertCryptoOrderPreviewViews.swift │ │ │ ├── Info Screen │ │ │ │ └── CoinbaseInfoViewController.swift │ │ │ ├── Order Preview │ │ │ │ ├── Model │ │ │ │ │ └── OrderPreviewModel.swift │ │ │ │ └── OrderPreviewViewController.swift │ │ │ ├── ServiceOverview │ │ │ │ ├── ServiceEntryPointModel.swift │ │ │ │ ├── ServiceOverviewTableCell.swift │ │ │ │ └── ServiceOverviewViewController.swift │ │ │ ├── SwiftUIViewFactory.swift │ │ │ ├── Transfer Amount │ │ │ │ ├── Model │ │ │ │ │ └── TransferAmountModel.swift │ │ │ │ ├── TransferAmountViewController.swift │ │ │ │ └── Views │ │ │ │ │ ├── ConverterView.swift │ │ │ │ │ └── NetworkUnavailableView.swift │ │ │ └── Two Factor Auth │ │ │ │ └── TwoFactorAuthViewController.swift │ │ ├── CrowdNode │ │ │ ├── CrowdNode.storyboard │ │ │ ├── CrowdNodeModel.swift │ │ │ ├── Extensions │ │ │ │ ├── UINavigationController+CrowdNode.swift │ │ │ │ └── WKWebView+CrowdNode.swift │ │ │ ├── Getting Started │ │ │ │ ├── GettingStartedViewController.swift │ │ │ │ └── WelcomeToCrowdNodeViewController.swift │ │ │ ├── New Account │ │ │ │ ├── AccountCreatingController.swift │ │ │ │ └── NewAccountViewController.swift │ │ │ ├── Online │ │ │ │ ├── ConfirmationTransactionQRController.swift │ │ │ │ ├── CrowdNodeWebViewController.swift │ │ │ │ ├── OnlineAccountConfirmationController.swift │ │ │ │ ├── OnlineAccountDetailsController.swift │ │ │ │ ├── OnlineAccountEmailController.swift │ │ │ │ └── OnlineAccountInfoController.swift │ │ │ ├── Portal │ │ │ │ ├── CrowdNodePortalViewController.swift │ │ │ │ ├── CrowdNodeTransferViewController.swift │ │ │ │ ├── Model │ │ │ │ │ ├── CrowdNodePortalItem.swift │ │ │ │ │ └── CrowdNodeTransferModel.swift │ │ │ │ ├── StakingInfoDialogController.swift │ │ │ │ ├── Views │ │ │ │ │ ├── CrowdNodeCell.swift │ │ │ │ │ ├── FromLabel.swift │ │ │ │ │ ├── KeyboardHeader.swift │ │ │ │ │ └── MinimumDepositBanner.swift │ │ │ │ └── WithdrawalLimitsController.swift │ │ │ ├── Tx Details │ │ │ │ └── GroupedTransactionsScreen.swift │ │ │ └── Views │ │ │ │ └── CrowdNodeAPYView.swift │ │ ├── DashPay │ │ │ ├── CoinJoin │ │ │ │ ├── Base.lproj │ │ │ │ │ └── CoinJoin.storyboard │ │ │ │ ├── CoinJoinInfoViewController.swift │ │ │ │ ├── CoinJoinLevelsViewController.swift │ │ │ │ └── CoinJoinLevelsViewModel.swift │ │ │ ├── Contacts │ │ │ │ ├── Base │ │ │ │ │ ├── DWSearchViewController.h │ │ │ │ │ └── DWSearchViewController.m │ │ │ │ ├── ContactsPlaceholderViewController.swift │ │ │ │ ├── DWBaseContactsContentViewController+DWProtected.h │ │ │ │ ├── DWBaseContactsContentViewController.h │ │ │ │ ├── DWBaseContactsContentViewController.m │ │ │ │ ├── DWBaseContactsViewController+DWProtected.h │ │ │ │ ├── DWBaseContactsViewController.h │ │ │ │ ├── DWBaseContactsViewController.m │ │ │ │ ├── DWContactsContentViewController.h │ │ │ │ ├── DWContactsContentViewController.m │ │ │ │ ├── DWContactsViewController.h │ │ │ │ ├── DWContactsViewController.m │ │ │ │ ├── DWRootContactsViewController.h │ │ │ │ ├── DWRootContactsViewController.m │ │ │ │ ├── GlobalSearch │ │ │ │ │ ├── Children │ │ │ │ │ │ ├── DWSearchStateViewController.h │ │ │ │ │ │ ├── DWSearchStateViewController.m │ │ │ │ │ │ ├── DWUserSearchResultViewController.h │ │ │ │ │ │ └── DWUserSearchResultViewController.m │ │ │ │ │ ├── DWUserSearchViewController.h │ │ │ │ │ ├── DWUserSearchViewController.m │ │ │ │ │ └── Model │ │ │ │ │ │ ├── DWUserSearchModel.h │ │ │ │ │ │ └── DWUserSearchModel.m │ │ │ │ ├── Models │ │ │ │ │ ├── DWBaseContactsModel+DWProtected.h │ │ │ │ │ ├── DWBaseContactsModel.h │ │ │ │ │ ├── DWBaseContactsModel.m │ │ │ │ │ ├── DWContactsModel.h │ │ │ │ │ ├── DWContactsModel.m │ │ │ │ │ ├── DWContactsSortModeProtocol.h │ │ │ │ │ ├── DataSource │ │ │ │ │ │ ├── DWContactsDataSource.h │ │ │ │ │ │ ├── DWContactsDataSourceObject.h │ │ │ │ │ │ ├── DWContactsDataSourceObject.m │ │ │ │ │ │ ├── DWContactsSearchDataSourceObject.h │ │ │ │ │ │ └── DWContactsSearchDataSourceObject.m │ │ │ │ │ └── Fetched DataSource │ │ │ │ │ │ ├── DWContactsFetchedDataSource.h │ │ │ │ │ │ ├── DWContactsFetchedDataSource.m │ │ │ │ │ │ ├── DWFetchedResultsDataSource.h │ │ │ │ │ │ ├── DWFetchedResultsDataSource.m │ │ │ │ │ │ ├── DWIncomingFetchedDataSource.h │ │ │ │ │ │ └── DWIncomingFetchedDataSource.m │ │ │ │ ├── Placeholders │ │ │ │ │ ├── DWInvitationSuggestionView.h │ │ │ │ │ ├── DWInvitationSuggestionView.m │ │ │ │ │ ├── DWNoContactsViewController.h │ │ │ │ │ └── DWNoContactsViewController.m │ │ │ │ ├── Requests │ │ │ │ │ ├── DWRequestsContentViewController.h │ │ │ │ │ ├── DWRequestsContentViewController.m │ │ │ │ │ ├── DWRequestsViewController.h │ │ │ │ │ ├── DWRequestsViewController.m │ │ │ │ │ └── Models │ │ │ │ │ │ ├── DWRequestsModel.h │ │ │ │ │ │ └── DWRequestsModel.m │ │ │ │ └── Views │ │ │ │ │ ├── BaseCollectionReusableView.h │ │ │ │ │ ├── BaseCollectionReusableView.m │ │ │ │ │ ├── DWContactsSearchInfoHeaderView.h │ │ │ │ │ ├── DWContactsSearchInfoHeaderView.m │ │ │ │ │ ├── DWContactsSearchPlaceholderView.h │ │ │ │ │ ├── DWContactsSearchPlaceholderView.m │ │ │ │ │ ├── DWGlobalMatchFailedHeaderView.h │ │ │ │ │ ├── DWGlobalMatchFailedHeaderView.m │ │ │ │ │ ├── DWGlobalMatchHeaderView.h │ │ │ │ │ ├── DWGlobalMatchHeaderView.m │ │ │ │ │ ├── DWTitleActionHeaderView.h │ │ │ │ │ ├── DWTitleActionHeaderView.m │ │ │ │ │ └── DWTitleActionHeaderView.xib │ │ │ ├── Credits │ │ │ │ └── BuyCreditsViewController.swift │ │ │ ├── DWDashPayConstants.h │ │ │ ├── DWDashPayConstants.m │ │ │ ├── Explore │ │ │ │ ├── DWExploreTestnetViewController.h │ │ │ │ └── Views │ │ │ │ │ ├── DWExploreHeaderView.h │ │ │ │ │ ├── DWExploreHeaderView.m │ │ │ │ │ ├── DWExploreTestnetContentsView.h │ │ │ │ │ └── DWExploreTestnetContentsView.m │ │ │ ├── Global │ │ │ │ ├── DSBlockchainIdentity+DWDisplayName.h │ │ │ │ ├── DSBlockchainIdentity+DWDisplayName.m │ │ │ │ ├── DWDashPayContactsActions.h │ │ │ │ ├── DWDashPayContactsActions.m │ │ │ │ ├── DWDashPayContactsUpdater.h │ │ │ │ ├── DWDashPayContactsUpdater.m │ │ │ │ ├── Notifications │ │ │ │ │ ├── DWNotificationsData.h │ │ │ │ │ ├── DWNotificationsData.m │ │ │ │ │ ├── DWNotificationsFetchedDataSource.h │ │ │ │ │ ├── DWNotificationsFetchedDataSource.m │ │ │ │ │ ├── DWNotificationsProvider.h │ │ │ │ │ └── DWNotificationsProvider.m │ │ │ │ ├── UIImageView+DWDPAvatar.h │ │ │ │ └── UIImageView+DWDPAvatar.m │ │ │ ├── Invites │ │ │ │ ├── Additions │ │ │ │ │ ├── DPAlertViewController+DWInvite.h │ │ │ │ │ └── DPAlertViewController+DWInvite.m │ │ │ │ ├── Confirmation │ │ │ │ │ ├── DWConfirmInvitationContentView.h │ │ │ │ │ ├── DWConfirmInvitationContentView.m │ │ │ │ │ ├── DWConfirmInvitationContentView.xib │ │ │ │ │ ├── DWConfirmInvitationViewController.h │ │ │ │ │ └── DWConfirmInvitationViewController.m │ │ │ │ ├── DWSendInviteFirstStepViewController.h │ │ │ │ ├── DWSendInviteFirstStepViewController.m │ │ │ │ ├── DWSendInviteFlowController.h │ │ │ │ ├── DWSendInviteFlowController.m │ │ │ │ ├── History │ │ │ │ │ ├── DWInvitationHistoryViewController.h │ │ │ │ │ ├── DWInvitationHistoryViewController.m │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── DWHistoryFilterContentView.h │ │ │ │ │ │ ├── DWHistoryFilterContentView.m │ │ │ │ │ │ ├── DWHistoryFilterViewController.h │ │ │ │ │ │ └── DWHistoryFilterViewController.m │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── DWInvitationHistoryFilter.h │ │ │ │ │ │ ├── DWInvitationHistoryModel.h │ │ │ │ │ │ ├── DWInvitationHistoryModel.m │ │ │ │ │ │ └── DWInvitationItem.h │ │ │ │ │ └── Views │ │ │ │ │ │ ├── DWCreateInvitationButton.h │ │ │ │ │ │ ├── DWCreateInvitationButton.m │ │ │ │ │ │ ├── DWHistoryHeaderView.h │ │ │ │ │ │ ├── DWHistoryHeaderView.m │ │ │ │ │ │ ├── DWInvitationTableViewCell.h │ │ │ │ │ │ └── DWInvitationTableViewCell.m │ │ │ │ ├── Invitation │ │ │ │ │ ├── BaseInvitationViewController.swift │ │ │ │ │ ├── DWInvitationLinkBuilder.h │ │ │ │ │ ├── DWInvitationLinkBuilder.m │ │ │ │ │ ├── SuccessInvitationViewController.swift │ │ │ │ │ └── Views │ │ │ │ │ │ ├── DWInvitationActionsView.h │ │ │ │ │ │ ├── DWInvitationActionsView.m │ │ │ │ │ │ ├── DWInvitationMessageView.h │ │ │ │ │ │ ├── DWInvitationMessageView.m │ │ │ │ │ │ ├── DWSuccessInvitationView.h │ │ │ │ │ │ ├── DWSuccessInvitationView.m │ │ │ │ │ │ ├── InvitationBottomView.swift │ │ │ │ │ │ ├── InvitationTopView.swift │ │ │ │ │ │ └── SuccessInvitationTopView.swift │ │ │ │ └── Preview │ │ │ │ │ ├── DWInvitationPreviewViewController.h │ │ │ │ │ └── DWInvitationPreviewViewController.m │ │ │ ├── Items │ │ │ │ ├── Factory │ │ │ │ │ ├── DWDPContactsItemsFactory.h │ │ │ │ │ ├── DWDPContactsItemsFactory.m │ │ │ │ │ ├── DWDPSearchItemsFactory.h │ │ │ │ │ └── DWDPSearchItemsFactory.m │ │ │ │ ├── Objects │ │ │ │ │ ├── DWDPContactObject.h │ │ │ │ │ ├── DWDPContactObject.m │ │ │ │ │ ├── DWDPEstablishedContactObject.h │ │ │ │ │ ├── DWDPEstablishedContactObject.m │ │ │ │ │ ├── DWDPIncomingRequestObject.h │ │ │ │ │ ├── DWDPIncomingRequestObject.m │ │ │ │ │ ├── DWDPNewIncomingRequestObject.h │ │ │ │ │ ├── DWDPNewIncomingRequestObject.m │ │ │ │ │ ├── DWDPPendingRequestObject.h │ │ │ │ │ ├── DWDPPendingRequestObject.m │ │ │ │ │ ├── DWDPRespondedIncomingRequestObject.h │ │ │ │ │ ├── DWDPRespondedIncomingRequestObject.m │ │ │ │ │ ├── DWDPTxObject.h │ │ │ │ │ ├── DWDPTxObject.m │ │ │ │ │ ├── DWDPUserObject.h │ │ │ │ │ ├── DWDPUserObject.m │ │ │ │ │ └── Notifications │ │ │ │ │ │ ├── DWDPAcceptedRequestNotificationObject.h │ │ │ │ │ │ ├── DWDPAcceptedRequestNotificationObject.m │ │ │ │ │ │ ├── DWDPEstablishedContactNotificationObject.h │ │ │ │ │ │ ├── DWDPEstablishedContactNotificationObject.m │ │ │ │ │ │ ├── DWDPNewIncomingRequestNotificationObject.h │ │ │ │ │ │ ├── DWDPNewIncomingRequestNotificationObject.m │ │ │ │ │ │ ├── DWDPOutgoingRequestNotificationObject.h │ │ │ │ │ │ └── DWDPOutgoingRequestNotificationObject.m │ │ │ │ ├── Protocols │ │ │ │ │ ├── DWDPBasicItem.h │ │ │ │ │ ├── DWDPBasicUserItem.h │ │ │ │ │ ├── DWDPEstablishedContactItem.h │ │ │ │ │ ├── DWDPIncomingRequestItem.h │ │ │ │ │ ├── DWDPNewIncomingRequestItem.h │ │ │ │ │ ├── DWDPNotificationItem.h │ │ │ │ │ ├── DWDPPendingRequestItem.h │ │ │ │ │ ├── DWDPRespondedRequestItem.h │ │ │ │ │ ├── DWDPTxItem.h │ │ │ │ │ └── Items Associated Data │ │ │ │ │ │ ├── DWDPBlockchainIdentityBackedItem.h │ │ │ │ │ │ ├── DWDPDashpayUserBackedItem.h │ │ │ │ │ │ └── DWDPFriendRequestBackedItem.h │ │ │ │ └── Views │ │ │ │ │ ├── ContentViews │ │ │ │ │ ├── DWDPGenericContactRequestItemView.h │ │ │ │ │ ├── DWDPGenericContactRequestItemView.m │ │ │ │ │ ├── DWDPGenericImageItemView.h │ │ │ │ │ ├── DWDPGenericImageItemView.m │ │ │ │ │ ├── DWDPGenericItemView.h │ │ │ │ │ ├── DWDPGenericItemView.m │ │ │ │ │ ├── DWDPGenericStatusItemView.h │ │ │ │ │ ├── DWDPGenericStatusItemView.m │ │ │ │ │ ├── DWDPTxItemView.h │ │ │ │ │ └── DWDPTxItemView.m │ │ │ │ │ ├── DWDPBasicCell.h │ │ │ │ │ ├── DWDPBasicCell.m │ │ │ │ │ ├── DWDPImageStatusCell.h │ │ │ │ │ ├── DWDPImageStatusCell.m │ │ │ │ │ ├── DWDPIncomingRequestCell.h │ │ │ │ │ ├── DWDPIncomingRequestCell.m │ │ │ │ │ ├── DWDPTextStatusCell.h │ │ │ │ │ ├── DWDPTextStatusCell.m │ │ │ │ │ ├── DWDPTxListCell.h │ │ │ │ │ ├── DWDPTxListCell.m │ │ │ │ │ ├── UICollectionView+DWDPItemDequeue.h │ │ │ │ │ ├── UICollectionView+DWDPItemDequeue.m │ │ │ │ │ ├── UIFont+DWDPItem.h │ │ │ │ │ └── UIFont+DWDPItem.m │ │ │ ├── Notifications │ │ │ │ ├── Cells │ │ │ │ │ ├── DWNoNotificationsCell.h │ │ │ │ │ ├── DWNoNotificationsCell.m │ │ │ │ │ ├── DWNotificationsInvitationCell.h │ │ │ │ │ └── DWNotificationsInvitationCell.m │ │ │ │ ├── DWListCollectionLayout.h │ │ │ │ ├── DWListCollectionLayout.m │ │ │ │ ├── DWNotificationsViewController.h │ │ │ │ ├── DWNotificationsViewController.m │ │ │ │ └── Models │ │ │ │ │ ├── DWNotificationsModel.h │ │ │ │ │ └── DWNotificationsModel.m │ │ │ ├── Profile │ │ │ │ ├── DWModalUserProfileViewController.h │ │ │ │ ├── DWModalUserProfileViewController.m │ │ │ │ ├── DWUserProfileViewController.h │ │ │ │ ├── DWUserProfileViewController.m │ │ │ │ ├── Edit Profile │ │ │ │ │ └── RootEditProfileViewController.swift │ │ │ │ ├── Model │ │ │ │ │ ├── DWUserProfileModel.h │ │ │ │ │ ├── DWUserProfileModel.m │ │ │ │ │ └── DataSource │ │ │ │ │ │ ├── DWProfileTxsFetchedDataSource.h │ │ │ │ │ │ ├── DWProfileTxsFetchedDataSource.m │ │ │ │ │ │ ├── DWUserProfileDataSource.h │ │ │ │ │ │ ├── DWUserProfileDataSourceObject.h │ │ │ │ │ │ └── DWUserProfileDataSourceObject.m │ │ │ │ └── Views │ │ │ │ │ ├── DWPendingContactInfoView.h │ │ │ │ │ ├── DWPendingContactInfoView.m │ │ │ │ │ ├── DWStretchyHeaderListCollectionLayout.h │ │ │ │ │ ├── DWStretchyHeaderListCollectionLayout.m │ │ │ │ │ ├── DWUserProfileContactActionsCell.h │ │ │ │ │ ├── DWUserProfileContactActionsCell.m │ │ │ │ │ ├── DWUserProfileHeaderView.h │ │ │ │ │ ├── DWUserProfileHeaderView.m │ │ │ │ │ ├── DWUserProfileNavigationTitleView.h │ │ │ │ │ ├── DWUserProfileNavigationTitleView.m │ │ │ │ │ ├── DWUserProfileSendRequestCell.h │ │ │ │ │ └── DWUserProfileSendRequestCell.m │ │ │ ├── Setup │ │ │ │ ├── CreateUsername │ │ │ │ │ ├── CreateUsernameViewController.swift │ │ │ │ │ ├── CreateUsernameViewModel.swift │ │ │ │ │ ├── JoinDashPayInfoDialog.swift │ │ │ │ │ ├── JoinDashPayScreen.swift │ │ │ │ │ ├── JoinDashPayView.swift │ │ │ │ │ ├── JoinDashPayViewModel.swift │ │ │ │ │ ├── MixDashDialog.swift │ │ │ │ │ ├── VerifyIdentityScreen.swift │ │ │ │ │ └── VotingInfoScreen.swift │ │ │ │ ├── Model │ │ │ │ │ ├── DWDashPaySetupModel.h │ │ │ │ │ ├── DWDashPaySetupModel.m │ │ │ │ │ └── UsernameValidationRuleResult.swift │ │ │ │ └── UsernamePending │ │ │ │ │ ├── DWUsernamePendingViewController.h │ │ │ │ │ └── DWUsernamePendingViewController.m │ │ │ ├── Usernames │ │ │ │ ├── IconAttributedText.swift │ │ │ │ ├── RequestDetailsViewController.swift │ │ │ │ └── UsernameRequests.storyboard │ │ │ ├── Views │ │ │ │ ├── DWDPAvatarView.h │ │ │ │ ├── DWDPAvatarView.m │ │ │ │ ├── DWDPSmallContactView.h │ │ │ │ ├── DWDPSmallContactView.m │ │ │ │ ├── DWDashPayAnimationView.h │ │ │ │ ├── DWDashPayAnimationView.m │ │ │ │ ├── DWNetworkUnavailableView.h │ │ │ │ ├── DWNetworkUnavailableView.m │ │ │ │ ├── UIColor+DWDashPay.h │ │ │ │ └── UIColor+DWDashPay.m │ │ │ ├── Voting │ │ │ │ ├── CastVoteViewController.swift │ │ │ │ ├── Cells │ │ │ │ │ ├── GroupedRequestCell.swift │ │ │ │ │ ├── MasternodeIPCell.swift │ │ │ │ │ ├── UsernameRequestCell.swift │ │ │ │ │ ├── VoteButton.swift │ │ │ │ │ └── VotingFilterItemSelectableCell.swift │ │ │ │ ├── EnterVotingKeyViewController.swift │ │ │ │ ├── QuickVoteViewController.swift │ │ │ │ ├── UsernameRequestDetailsViewController.swift │ │ │ │ ├── UsernameVoting.storyboard │ │ │ │ ├── UsernameVotingViewController.swift │ │ │ │ ├── VotingFiltersViewController.swift │ │ │ │ ├── VotingHeaderView.swift │ │ │ │ ├── VotingHeaderView.xib │ │ │ │ └── VotingViewModel.swift │ │ │ └── Welcome │ │ │ │ ├── DWDPWelcomeCollectionViewController.h │ │ │ │ ├── DWDPWelcomeCollectionViewController.m │ │ │ │ ├── DWDPWelcomePageViewController.h │ │ │ │ ├── DWDPWelcomePageViewController.m │ │ │ │ ├── GetStarted │ │ │ │ ├── DWGetStarted.h │ │ │ │ ├── DWGetStartedContentViewController.h │ │ │ │ ├── DWGetStartedContentViewController.m │ │ │ │ ├── GetStartedViewController.swift │ │ │ │ └── Views │ │ │ │ │ ├── DWGetStartedItemView.h │ │ │ │ │ └── DWGetStartedItemView.m │ │ │ │ ├── InvitationFlowViewController.swift │ │ │ │ ├── Views │ │ │ │ ├── DWPassthroughStackView.h │ │ │ │ ├── DWPassthroughStackView.m │ │ │ │ ├── DWPassthroughView.h │ │ │ │ └── DWPassthroughView.m │ │ │ │ └── WelcomeViewController.swift │ │ ├── Explore Dash │ │ │ ├── ExploreViewController.swift │ │ │ ├── Merchants & ATMs │ │ │ │ ├── Details │ │ │ │ │ ├── POIDetailsViewController.swift │ │ │ │ │ └── Views │ │ │ │ │ │ ├── POIDetailsView.swift │ │ │ │ │ │ └── POIDetailsViewModel.swift │ │ │ │ ├── Info │ │ │ │ │ └── MerchantTypesDialog.swift │ │ │ │ └── List │ │ │ │ │ ├── AllMerchantLocationsViewController.swift │ │ │ │ │ ├── AtmListViewController.swift │ │ │ │ │ ├── Cells │ │ │ │ │ ├── AtmItemCell.swift │ │ │ │ │ ├── FetchingNextPageCell.swift │ │ │ │ │ ├── MerchantItemCell.swift │ │ │ │ │ ├── MerchantListLocationOffCell.swift │ │ │ │ │ ├── PointOfUseItemCell.swift │ │ │ │ │ ├── PointOfUseListFiltersCell.swift │ │ │ │ │ ├── PointOfUseListSearchCell.swift │ │ │ │ │ └── PointOfUseListSegmentedCell.swift │ │ │ │ │ ├── ExplorePointOfUseListViewController.swift │ │ │ │ │ ├── ExploreSyncBannerView.swift │ │ │ │ │ ├── Filters │ │ │ │ │ ├── MerchantFiltersView.swift │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── MerchantFiltersViewModel.swift │ │ │ │ │ │ └── PointOfUseListFiltersModel.swift │ │ │ │ │ └── TerritoryPickerView.swift │ │ │ │ │ ├── MerchantListViewController.swift │ │ │ │ │ ├── Model │ │ │ │ │ ├── AllMerchantLocationsDataProvider.swift │ │ │ │ │ ├── AtmDataProvider.swift │ │ │ │ │ ├── MerchantsDataProvider.swift │ │ │ │ │ └── PointOfUseListModel.swift │ │ │ │ │ └── Views │ │ │ │ │ ├── ExploreMapAnnotationView.swift │ │ │ │ │ ├── ExploreMapView.swift │ │ │ │ │ ├── ListHandlerView.swift │ │ │ │ │ ├── PointOfUseListEmptyResultsView.swift │ │ │ │ │ └── PointOfUseLocationServicePopup.swift │ │ │ └── Views │ │ │ │ ├── DashSpend │ │ │ │ ├── DashSpendConfirmationDialog.swift │ │ │ │ ├── DashSpendLoginInfoView.swift │ │ │ │ ├── DashSpendPayScreen.swift │ │ │ │ ├── DashSpendPayViewModel.swift │ │ │ │ ├── DashSpendTermsScreen.swift │ │ │ │ ├── DashSpendUserAuthScreen.swift │ │ │ │ ├── DashSpendUserAuthViewModel.swift │ │ │ │ ├── GiftCardDetailsView.swift │ │ │ │ └── GiftCardDetailsViewModel.swift │ │ │ │ ├── ExploreContentsView.swift │ │ │ │ └── ExploreHeaderView.swift │ │ ├── Home │ │ │ ├── HomeViewController+BackupReminder.swift │ │ │ ├── HomeViewController+ImportPrivateKeyDelegateImpl.swift │ │ │ ├── HomeViewController+JailbreakCheck.swift │ │ │ ├── HomeViewController+SecureWalletDelegateImpl.swift │ │ │ ├── HomeViewController+Shortcuts.swift │ │ │ ├── HomeViewController.swift │ │ │ ├── Models │ │ │ │ ├── DWDPRegistrationStatus.h │ │ │ │ ├── DWDPRegistrationStatus.m │ │ │ │ ├── DWDashPayModel.h │ │ │ │ ├── DWDashPayModel.m │ │ │ │ ├── DWHomeModel.h │ │ │ │ ├── DWHomeModel.m │ │ │ │ └── Transactions │ │ │ │ │ ├── DWBaseTransactionListDataProvider.h │ │ │ │ │ ├── DWBaseTransactionListDataProvider.m │ │ │ │ │ ├── DWTransactionListDataItem.h │ │ │ │ │ ├── DWTransactionListDataItemObject.h │ │ │ │ │ ├── DWTransactionListDataItemObject.m │ │ │ │ │ ├── DWTransactionListDataProvider.h │ │ │ │ │ ├── DWTransactionListDataProvider.m │ │ │ │ │ └── DWTransactionListDataProviderProtocol.h │ │ │ ├── Protocols │ │ │ │ ├── DWDashPayProtocol.h │ │ │ │ └── DWHomeProtocol.h │ │ │ ├── Syncing Views │ │ │ │ ├── Alert │ │ │ │ │ ├── SyncingAlertContentView.swift │ │ │ │ │ └── SyncingAlertViewController.swift │ │ │ │ ├── Model │ │ │ │ │ └── SyncModel.swift │ │ │ │ └── Sync View │ │ │ │ │ ├── SyncView.swift │ │ │ │ │ └── SyncView.xib │ │ │ ├── Tx Metadata │ │ │ │ ├── CustomIconMetadataProvider.swift │ │ │ │ └── GiftCardMetadataProvider.swift │ │ │ └── Views │ │ │ │ ├── Cells │ │ │ │ ├── CoinJoinProgressView.swift │ │ │ │ └── SyncingHeaderView.swift │ │ │ │ ├── Home Balance View │ │ │ │ ├── BalanceModel.swift │ │ │ │ └── HomeBalanceView.swift │ │ │ │ ├── Home Header View │ │ │ │ ├── HomeHeaderModel.swift │ │ │ │ └── HomeHeaderView.swift │ │ │ │ ├── HomeView.swift │ │ │ │ ├── HomeViewModel.swift │ │ │ │ ├── MetadataProvider.swift │ │ │ │ ├── Shortcuts │ │ │ │ ├── DWShortcutCollectionViewCell~ipad.xib │ │ │ │ ├── DWShortcutCollectionViewCell~iphone.xib │ │ │ │ ├── Models │ │ │ │ │ └── ShortcutAction.swift │ │ │ │ ├── ShortcutCell.swift │ │ │ │ ├── ShortcutsView.swift │ │ │ │ └── ShortcutsView.xib │ │ │ │ ├── TransactionFilterDialog.swift │ │ │ │ └── TransactionListDataItem.swift │ │ ├── LockScreen │ │ │ ├── DWLockScreenModel.h │ │ │ ├── DWLockScreenModel.m │ │ │ ├── DWLockScreenViewController.h │ │ │ ├── DWLockScreenViewController.m │ │ │ ├── LockScreen.storyboard │ │ │ ├── QuickReceive │ │ │ │ ├── DWQuickReceiveViewController.h │ │ │ │ ├── DWQuickReceiveViewController.m │ │ │ │ └── QuickReceive.storyboard │ │ │ └── Views │ │ │ │ ├── DWLockActionButton.h │ │ │ │ ├── DWLockActionButton.m │ │ │ │ ├── DWLockPinInputView.h │ │ │ │ └── DWLockPinInputView.m │ │ ├── Main │ │ │ ├── MainTabbarController.swift │ │ │ └── Views │ │ │ │ └── PaymentButton.swift │ │ ├── Menu │ │ │ ├── Forms │ │ │ │ ├── DWBaseFormCellModel.h │ │ │ │ ├── DWBaseFormCellModel.m │ │ │ │ ├── DWBaseFormTableViewCell.h │ │ │ │ ├── DWBaseFormTableViewCell.m │ │ │ │ ├── DWFormSectionModel.h │ │ │ │ ├── DWFormSectionModel.m │ │ │ │ ├── DWFormTableViewController.h │ │ │ │ ├── DWFormTableViewController.m │ │ │ │ ├── DWSelectorFormItem.h │ │ │ │ ├── Placeholder │ │ │ │ │ ├── DWPlaceholderFormCellModel.h │ │ │ │ │ ├── DWPlaceholderFormCellModel.m │ │ │ │ │ ├── DWPlaceholderFormTableViewCell.h │ │ │ │ │ └── DWPlaceholderFormTableViewCell.m │ │ │ │ ├── Selector │ │ │ │ │ ├── DWSelectorFormCellModel.h │ │ │ │ │ ├── DWSelectorFormCellModel.m │ │ │ │ │ ├── DWSelectorFormTableViewCell.h │ │ │ │ │ └── DWSelectorFormTableViewCell.m │ │ │ │ └── Switcher │ │ │ │ │ ├── DWSwitcherFormCellModel.h │ │ │ │ │ ├── DWSwitcherFormCellModel.m │ │ │ │ │ ├── DWSwitcherFormTableViewCell.h │ │ │ │ │ └── DWSwitcherFormTableViewCell.m │ │ │ ├── Main │ │ │ │ ├── MainMenuViewController.swift │ │ │ │ ├── MainMenuViewControllerDelegate.swift │ │ │ │ └── MainMenuViewModel.swift │ │ │ ├── MenuItemModel.swift │ │ │ ├── Security │ │ │ │ ├── Advanced Security │ │ │ │ │ ├── DWAdvancedSecurityViewController.h │ │ │ │ │ ├── DWAdvancedSecurityViewController.m │ │ │ │ │ ├── DWSecurityLevel.h │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── DWAdvancedSecurityModel.h │ │ │ │ │ │ ├── DWAdvancedSecurityModel.m │ │ │ │ │ │ ├── DWBaseAdvancedSecurityModel.h │ │ │ │ │ │ └── DWBaseAdvancedSecurityModel.m │ │ │ │ │ ├── Protocol │ │ │ │ │ │ └── DWAdvancedSecurityModelProtocol.h │ │ │ │ │ └── Views │ │ │ │ │ │ ├── DWSecurityStatusView.h │ │ │ │ │ │ ├── DWSecurityStatusView.m │ │ │ │ │ │ ├── DWSecurityStatusView.xib │ │ │ │ │ │ ├── DWSegmentSlider.h │ │ │ │ │ │ ├── DWSegmentSlider.m │ │ │ │ │ │ ├── DWSegmentSliderFormCellModel.h │ │ │ │ │ │ ├── DWSegmentSliderFormCellModel.m │ │ │ │ │ │ ├── DWSegmentSliderFormTableViewCell.h │ │ │ │ │ │ └── DWSegmentSliderFormTableViewCell.m │ │ │ │ ├── ResetWalletInfo │ │ │ │ │ ├── DWResetWalletInfoViewController.h │ │ │ │ │ ├── DWResetWalletInfoViewController.m │ │ │ │ │ └── ResetWalletInfo.storyboard │ │ │ │ ├── SecurityMenuScreen.swift │ │ │ │ └── SecurityMenuViewModel.swift │ │ │ ├── Settings │ │ │ │ ├── About │ │ │ │ │ ├── About.storyboard │ │ │ │ │ ├── DWAboutModel.h │ │ │ │ │ ├── DWAboutModel.m │ │ │ │ │ ├── DWAboutViewController.h │ │ │ │ │ └── DWAboutViewController.m │ │ │ │ ├── LocalCurrency │ │ │ │ │ ├── Cells │ │ │ │ │ │ ├── DWLocalCurrencyTableViewCell.h │ │ │ │ │ │ └── DWLocalCurrencyTableViewCell.m │ │ │ │ │ ├── DWCurrencyItem.h │ │ │ │ │ ├── DWCurrencyItemPriceProvider.h │ │ │ │ │ ├── DWCurrencyObject.h │ │ │ │ │ ├── DWCurrencyObject.m │ │ │ │ │ ├── DWLocalCurrencyModel.h │ │ │ │ │ ├── DWLocalCurrencyModel.m │ │ │ │ │ ├── DWLocalCurrencyViewController.h │ │ │ │ │ └── DWLocalCurrencyViewController.m │ │ │ │ ├── SettingsMenuViewModel.swift │ │ │ │ └── SettingsScreen.swift │ │ │ └── Tools │ │ │ │ ├── ExtendedKeys │ │ │ │ ├── ExtendedPublicKeysModel.swift │ │ │ │ └── ExtendedPublicKeysViewController.swift │ │ │ │ ├── ImportWallet │ │ │ │ ├── DWImportWalletInfoViewController.h │ │ │ │ ├── DWImportWalletInfoViewController.m │ │ │ │ └── ImportWalletInfo.storyboard │ │ │ │ ├── Masternode Keys │ │ │ │ ├── DerivationPathKeys │ │ │ │ │ ├── DerivationPathKeysViewController.swift │ │ │ │ │ ├── Models │ │ │ │ │ │ └── DerivationPathKeysModel.swift │ │ │ │ │ └── Views │ │ │ │ │ │ ├── DerivationPathKeysCell.swift │ │ │ │ │ │ └── DerivationPathKeysHeaderView.swift │ │ │ │ └── Overview │ │ │ │ │ ├── Cell │ │ │ │ │ └── KeysOverviewCell.swift │ │ │ │ │ ├── KeysOverviewViewController.swift │ │ │ │ │ └── Model │ │ │ │ │ └── WalletKeysOverviewModel.swift │ │ │ │ ├── ToolsMenuScreen.swift │ │ │ │ ├── ToolsMenuViewModel.swift │ │ │ │ └── ZenLedger │ │ │ │ ├── ZenLedgerInfoSheet.swift │ │ │ │ └── ZenLedgerViewModel.swift │ │ ├── Onboarding │ │ │ ├── Controllers │ │ │ │ ├── DWDemoAdvancedSecurityViewController.h │ │ │ │ ├── DWDemoAdvancedSecurityViewController.m │ │ │ │ ├── DWDemoAppRootViewController.h │ │ │ │ └── DWDemoAppRootViewController.m │ │ │ ├── DWDemoDelegate.h │ │ │ ├── DWOnboardingViewController.h │ │ │ ├── DWOnboardingViewController.m │ │ │ ├── Models │ │ │ │ ├── DWOnboardingModel.h │ │ │ │ └── DWOnboardingModel.m │ │ │ ├── Onboarding.storyboard │ │ │ ├── Protocols │ │ │ │ └── DWOnboardingPageProtocol.h │ │ │ ├── Stubs │ │ │ │ ├── DWAdvancedSecurityModelStub.h │ │ │ │ ├── DWAdvancedSecurityModelStub.m │ │ │ │ ├── DWHomeModelStub.h │ │ │ │ ├── DWHomeModelStub.m │ │ │ │ ├── DWPayModelStub.h │ │ │ │ ├── DWPayModelStub.m │ │ │ │ ├── DWReceiveModelStub.h │ │ │ │ ├── DWReceiveModelStub.m │ │ │ │ ├── DWRootModelStub.h │ │ │ │ ├── DWRootModelStub.m │ │ │ │ ├── DWTransactionListDataProviderStub.h │ │ │ │ ├── DWTransactionListDataProviderStub.m │ │ │ │ ├── DWTransactionStub.h │ │ │ │ ├── DWTransactionStub.m │ │ │ │ └── StubTransactionSource.swift │ │ │ └── Views │ │ │ │ ├── DWOnboardingCollectionViewCell.h │ │ │ │ └── DWOnboardingCollectionViewCell.m │ │ ├── Operation Status │ │ │ ├── FailedOperationStatusViewController.swift │ │ │ ├── OperationStatus.storyboard │ │ │ └── SuccessfulOperationStatusViewController.swift │ │ ├── Payment Controller │ │ │ ├── Enter Amount │ │ │ │ └── ProvideAmountViewController.swift │ │ │ └── PaymentController.swift │ │ ├── Payments │ │ │ ├── Amount │ │ │ │ ├── BaseAmountViewController.swift │ │ │ │ ├── Model │ │ │ │ │ ├── AmountObject.swift │ │ │ │ │ ├── BaseAmountModel.swift │ │ │ │ │ └── Send │ │ │ │ │ │ └── SendAmountModel.swift │ │ │ │ ├── SendAmountViewController.swift │ │ │ │ ├── SpecifyAmountViewController.swift │ │ │ │ ├── Validation │ │ │ │ │ ├── DWAmountInputValidator.h │ │ │ │ │ ├── DWAmountInputValidator.m │ │ │ │ │ ├── DWDecimalInputValidator.h │ │ │ │ │ ├── DWDecimalInputValidator.m │ │ │ │ │ └── DWInputValidator.h │ │ │ │ └── Views │ │ │ │ │ ├── AmountInput │ │ │ │ │ └── AmountInputControl.swift │ │ │ │ │ ├── AmountInputTypeSwitcher.swift │ │ │ │ │ ├── AmountView.swift │ │ │ │ │ ├── DWDPAmountContactView.h │ │ │ │ │ ├── DWDPAmountContactView.m │ │ │ │ │ └── DWDPAmountUserView.m │ │ │ ├── Enter Address │ │ │ │ ├── EnterAddressModel.swift │ │ │ │ ├── EnterAddressViewController.swift │ │ │ │ └── Views │ │ │ │ │ └── PasteboardContentView.swift │ │ │ ├── Pay │ │ │ │ ├── Cells │ │ │ │ │ ├── PayTableViewCell.swift │ │ │ │ │ └── PayTableViewCell.xib │ │ │ │ ├── Confirm │ │ │ │ │ ├── Cells │ │ │ │ │ │ ├── TitleCell.swift │ │ │ │ │ │ └── TitleValueCell.swift │ │ │ │ │ ├── ConfirmPaymentViewController.swift │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ConfirmPaymentModel.swift │ │ │ │ │ └── Views │ │ │ │ │ │ ├── AmountPreviewView.swift │ │ │ │ │ │ └── AmountPreviewView.xib │ │ │ │ ├── DWBasePayViewController.h │ │ │ │ ├── DWBasePayViewController.m │ │ │ │ ├── Models │ │ │ │ │ ├── DWPasteboardAddressExtractor.h │ │ │ │ │ ├── DWPasteboardAddressExtractor.m │ │ │ │ │ ├── DWPayModel.h │ │ │ │ │ ├── DWPayModel.m │ │ │ │ │ ├── DWPayModelProtocol.h │ │ │ │ │ ├── DWPayOptionModel.h │ │ │ │ │ └── DWPayOptionModel.m │ │ │ │ ├── Pay.storyboard │ │ │ │ ├── PayViewController.swift │ │ │ │ └── PayableViewController.swift │ │ │ ├── PaymentModels │ │ │ │ ├── DWPaymentInput+Private.h │ │ │ │ ├── DWPaymentInput.h │ │ │ │ ├── DWPaymentInput.m │ │ │ │ ├── DWPaymentInputBuilder.h │ │ │ │ ├── DWPaymentInputBuilder.m │ │ │ │ ├── DWPaymentOutput+DWView.h │ │ │ │ ├── DWPaymentOutput+DWView.m │ │ │ │ ├── DWPaymentOutput+Private.h │ │ │ │ ├── DWPaymentOutput.h │ │ │ │ ├── DWPaymentOutput.m │ │ │ │ ├── DWPaymentProcessor.h │ │ │ │ └── DWPaymentProcessor.m │ │ │ ├── Payments.storyboard │ │ │ ├── PaymentsViewController.swift │ │ │ ├── Receive │ │ │ │ ├── Models │ │ │ │ │ ├── DWBaseReceiveModel.h │ │ │ │ │ ├── DWBaseReceiveModel.m │ │ │ │ │ ├── DWReceiveModel.h │ │ │ │ │ ├── DWReceiveModel.m │ │ │ │ │ └── DWReceiveModelProtocol.h │ │ │ │ ├── ReceiveViewController.swift │ │ │ │ ├── RequestAmount │ │ │ │ │ ├── DWRequestAmountViewController.h │ │ │ │ │ ├── DWRequestAmountViewController.m │ │ │ │ │ └── Views │ │ │ │ │ │ ├── DWRequestAmountContentView.h │ │ │ │ │ │ └── DWRequestAmountContentView.m │ │ │ │ ├── UIViewController+DWShareReceiveInfo.h │ │ │ │ ├── UIViewController+DWShareReceiveInfo.m │ │ │ │ └── Views │ │ │ │ │ ├── ReceiveContentView.swift │ │ │ │ │ └── ReceiveContentView.xib │ │ │ ├── ScanQR │ │ │ │ ├── DWCaptureSessionFrameDelegate.h │ │ │ │ ├── DWCaptureSessionManager.h │ │ │ │ ├── DWCaptureSessionManager.m │ │ │ │ ├── DWQRScanModel.h │ │ │ │ ├── DWQRScanModel.m │ │ │ │ ├── DWQRScanStatusView.h │ │ │ │ ├── DWQRScanStatusView.m │ │ │ │ ├── DWQRScanView.h │ │ │ │ ├── DWQRScanView.m │ │ │ │ ├── DWQRScanViewController.h │ │ │ │ └── DWQRScanViewController.m │ │ │ └── SendReceivePageController.swift │ │ ├── RootNavigation │ │ │ ├── DWAppRootViewController.h │ │ │ ├── DWAppRootViewController.m │ │ │ ├── DWInitialViewController.h │ │ │ ├── DWInitialViewController.m │ │ │ ├── DWInvitationSetupState.h │ │ │ ├── DWInvitationSetupState.m │ │ │ ├── DWRootModel.h │ │ │ ├── DWRootModel.m │ │ │ ├── DWRootProtocol.h │ │ │ └── DWWipeDelegate.h │ │ ├── Setup │ │ │ ├── BiometricAuth │ │ │ │ ├── BiometricAuth.storyboard │ │ │ │ ├── DWBiometricAuthModel.h │ │ │ │ ├── DWBiometricAuthModel.m │ │ │ │ ├── DWBiometricAuthViewController.h │ │ │ │ └── DWBiometricAuthViewController.m │ │ │ ├── DWSetupViewController.h │ │ │ ├── DWSetupViewController.m │ │ │ ├── RecoverWallet │ │ │ │ ├── DWRecoverAction.h │ │ │ │ ├── DWRecoverModel.h │ │ │ │ ├── DWRecoverModel.m │ │ │ │ ├── DWRecoverViewController.h │ │ │ │ ├── DWRecoverViewController.m │ │ │ │ ├── DWRecoverWalletCommand.h │ │ │ │ ├── DWRecoverWalletCommand.m │ │ │ │ ├── PhraseRepair │ │ │ │ │ ├── DWPhraseRepairChildViewController.h │ │ │ │ │ ├── DWPhraseRepairChildViewController.m │ │ │ │ │ ├── DWPhraseRepairViewController.h │ │ │ │ │ └── DWPhraseRepairViewController.m │ │ │ │ └── Views │ │ │ │ │ ├── DWRecoverContentView.h │ │ │ │ │ ├── DWRecoverContentView.m │ │ │ │ │ ├── DWRecoverTextView.h │ │ │ │ │ └── DWRecoverTextView.m │ │ │ ├── ScreenshotWarning │ │ │ │ ├── DWScreenshotWarningViewController.h │ │ │ │ └── DWScreenshotWarningViewController.m │ │ │ ├── SecureWallet │ │ │ │ ├── BackupInfo │ │ │ │ │ ├── BackupInfo.storyboard │ │ │ │ │ ├── BackupInfoViewController.swift │ │ │ │ │ └── Views │ │ │ │ │ │ ├── BackupInfoItemView.swift │ │ │ │ │ │ └── BackupInfoItemView.xib │ │ │ │ ├── DWSecureWalletDelegate.h │ │ │ │ ├── Seed │ │ │ │ │ ├── BackupSeedPhraseViewController.swift │ │ │ │ │ ├── Base │ │ │ │ │ │ ├── DWBaseSeedViewController.h │ │ │ │ │ │ ├── DWBaseSeedViewController.m │ │ │ │ │ │ ├── DWSeedUIConstants.h │ │ │ │ │ │ └── DWSeedUIConstants.m │ │ │ │ │ ├── DWPreviewSeedPhraseModel.h │ │ │ │ │ ├── DWPreviewSeedPhraseModel.m │ │ │ │ │ ├── DWPreviewSeedPhraseViewController+DWProtected.h │ │ │ │ │ ├── DWPreviewSeedPhraseViewController.h │ │ │ │ │ ├── DWPreviewSeedPhraseViewController.m │ │ │ │ │ └── Views │ │ │ │ │ │ ├── DWCheckbox.h │ │ │ │ │ │ ├── DWCheckbox.m │ │ │ │ │ │ ├── DWPreviewSeedPhraseContentView.h │ │ │ │ │ │ ├── DWPreviewSeedPhraseContentView.m │ │ │ │ │ │ ├── DWSeedPhraseTitledView.h │ │ │ │ │ │ ├── DWSeedPhraseTitledView.m │ │ │ │ │ │ └── SeedPhrase │ │ │ │ │ │ ├── DWSeedPhraseModel.h │ │ │ │ │ │ ├── DWSeedPhraseModel.m │ │ │ │ │ │ ├── DWSeedPhraseType.h │ │ │ │ │ │ ├── DWSeedPhraseView.h │ │ │ │ │ │ ├── DWSeedPhraseView.m │ │ │ │ │ │ ├── DWSeedWordModel.h │ │ │ │ │ │ ├── DWSeedWordModel.m │ │ │ │ │ │ ├── DWSeedWordView.h │ │ │ │ │ │ ├── DWSeedWordView.m │ │ │ │ │ │ └── Layout │ │ │ │ │ │ ├── DWSeedPhraseRow.h │ │ │ │ │ │ ├── DWSeedPhraseRow.m │ │ │ │ │ │ ├── DWSeedPhraseViewLayout.h │ │ │ │ │ │ ├── DWSeedPhraseViewLayout.m │ │ │ │ │ │ ├── DWSeedWordModel+DWLayoutSupport.h │ │ │ │ │ │ └── DWSeedWordModel+DWLayoutSupport.m │ │ │ │ ├── VerifiedSuccessfully │ │ │ │ │ ├── DWVerifiedSuccessfullyViewController.h │ │ │ │ │ ├── DWVerifiedSuccessfullyViewController.m │ │ │ │ │ ├── VerifiedSuccessfully.storyboard │ │ │ │ │ └── VerifiedSuccessfullyViewController.swift │ │ │ │ └── Verify │ │ │ │ │ ├── DWVerifySeedPhraseModel.h │ │ │ │ │ ├── DWVerifySeedPhraseModel.m │ │ │ │ │ ├── DWVerifySeedPhraseViewController.h │ │ │ │ │ ├── DWVerifySeedPhraseViewController.m │ │ │ │ │ ├── VerifySeedPhrase.storyboard │ │ │ │ │ └── Views │ │ │ │ │ ├── DWVerifySeedPhraseContentView.h │ │ │ │ │ └── DWVerifySeedPhraseContentView.m │ │ │ ├── SetPin │ │ │ │ ├── DWSetPinModel.h │ │ │ │ ├── DWSetPinModel.m │ │ │ │ ├── DWSetPinViewController.h │ │ │ │ ├── DWSetPinViewController.m │ │ │ │ ├── SetPin.storyboard │ │ │ │ └── Views │ │ │ │ │ ├── DWPinField.h │ │ │ │ │ ├── DWPinField.m │ │ │ │ │ ├── DWPinInputStepView.h │ │ │ │ │ ├── DWPinInputStepView.m │ │ │ │ │ ├── DWPinView.h │ │ │ │ │ └── DWPinView.m │ │ │ └── Setup.storyboard │ │ ├── Start │ │ │ ├── DWBaseLegacyViewController.h │ │ │ ├── DWBaseLegacyViewController.m │ │ │ ├── DWStartModel.h │ │ │ ├── DWStartModel.m │ │ │ ├── DWStartViewController.h │ │ │ ├── DWStartViewController.m │ │ │ └── StartStoryboard.storyboard │ │ ├── Style │ │ │ └── Style.swift │ │ ├── SwiftUI Components │ │ │ ├── BottomSheet.swift │ │ │ ├── Button.swift │ │ │ ├── ButtonsGroup.swift │ │ │ ├── Color+DWStyle.swift │ │ │ ├── DashAmount.swift │ │ │ ├── Dialogs │ │ │ │ ├── ConfirmSpendDialog.swift │ │ │ │ └── ModalDialog.swift │ │ │ ├── Extensions.swift │ │ │ ├── FeatureSingleItem.swift │ │ │ ├── FeatureTopText.swift │ │ │ ├── Font+DWStyle.swift │ │ │ ├── Icon.swift │ │ │ ├── MenuItem.swift │ │ │ ├── MerchantDenominations.swift │ │ │ ├── NumericKeyboardView.swift │ │ │ ├── RadioButtonRow.swift │ │ │ ├── SendIntro.swift │ │ │ ├── Shape.swift │ │ │ ├── TextInput.swift │ │ │ ├── TextIntro.swift │ │ │ ├── Toast.swift │ │ │ ├── ValidationCheck.swift │ │ │ └── Wrapper.swift │ │ ├── Tx │ │ │ ├── Details │ │ │ │ ├── BlockExplorerSelectionView.swift │ │ │ │ ├── Model │ │ │ │ │ └── TxDetailModel.swift │ │ │ │ ├── TxDetailViewController.swift │ │ │ │ └── Views │ │ │ │ │ ├── BlockExplorerSelectionView.swift │ │ │ │ │ ├── TxDetailActionCell.xib │ │ │ │ │ ├── TxDetailCells.swift │ │ │ │ │ ├── TxDetailHeaderCell.xib │ │ │ │ │ ├── TxDetailInfoCell.xib │ │ │ │ │ └── TxDetailTaxCategoryCell.xib │ │ │ ├── Reclassify Transactions │ │ │ │ ├── TxReclassifyTransactionsInfoViewController.swift │ │ │ │ └── TxReclassifyTransactionsWhereToChangeViewController.swift │ │ │ └── Tx.storyboard │ │ ├── Uphold │ │ │ ├── LogoutTutorial │ │ │ │ ├── DWUpholdLogoutTutorialViewController.h │ │ │ │ ├── DWUpholdLogoutTutorialViewController.m │ │ │ │ ├── UpholdLogoutTutorialStoryboard.storyboard │ │ │ │ └── uphold-logout.jpg │ │ │ ├── Portal │ │ │ │ ├── IntegrationViewController+Uphold.swift │ │ │ │ └── UpholdPortalModel.swift │ │ │ ├── TopperViewModel.swift │ │ │ └── Transfer │ │ │ │ ├── Confirm │ │ │ │ ├── DWUpholdTransactionObject+DWView.h │ │ │ │ ├── DWUpholdTransactionObject+DWView.m │ │ │ │ ├── UpholdConfirmTransferModel.swift │ │ │ │ └── UpholdConfirmViewController.swift │ │ │ │ ├── Model │ │ │ │ └── UpholdAmountModel.swift │ │ │ │ ├── OTP │ │ │ │ ├── DWUpholdOTPProvider.h │ │ │ │ ├── DWUpholdOTPViewController.h │ │ │ │ ├── DWUpholdOTPViewController.m │ │ │ │ └── UpholdOTPStoryboard.storyboard │ │ │ │ └── UpholdTransferViewController.swift │ │ └── Views │ │ │ ├── BadgeView.swift │ │ │ ├── BalanceView │ │ │ └── BalanceView.swift │ │ │ ├── BaseController │ │ │ ├── ActionButtonViewController.swift │ │ │ ├── BaseViewController+NetworkReachability.swift │ │ │ ├── BaseViewController.swift │ │ │ ├── DWBaseActionButtonViewController.h │ │ │ ├── DWBaseActionButtonViewController.m │ │ │ ├── DWBaseViewController.h │ │ │ ├── DWBaseViewController.m │ │ │ └── DWDeviceAdaptableController.h │ │ │ ├── CALayer+DWShadow.h │ │ │ ├── CALayer+DWShadow.m │ │ │ ├── Containers │ │ │ ├── DWContainerViewController+DWProtected.h │ │ │ ├── DWContainerViewController.h │ │ │ ├── DWContainerViewController.m │ │ │ ├── DWExtendedContainerViewController+DWProtected.h │ │ │ ├── DWExtendedContainerViewController.h │ │ │ └── DWExtendedContainerViewController.m │ │ │ ├── ControllerCollection │ │ │ ├── DWControllerCollectionView.h │ │ │ └── DWControllerCollectionView.m │ │ │ ├── CustomHUDView.swift │ │ │ ├── DWAnimatedShapeLayer.h │ │ │ ├── DWAnimatedShapeLayer.m │ │ │ ├── DWSharedUIConstants.h │ │ │ ├── DWSharedUIConstants.m │ │ │ ├── DWUIKit.h │ │ │ ├── DashInputField.swift │ │ │ ├── DevicesCompatibility.h │ │ │ ├── EmptyUIView.swift │ │ │ ├── HairlineView.swift │ │ │ ├── ModalController │ │ │ ├── DWBaseModalViewController.h │ │ │ ├── DWBaseModalViewController.m │ │ │ └── Views │ │ │ │ ├── DWModalChevronView.h │ │ │ │ ├── DWModalChevronView.m │ │ │ │ ├── DWModalContentView.h │ │ │ │ └── DWModalContentView.m │ │ │ ├── Navigation │ │ │ ├── BaseNavigationController.swift │ │ │ ├── DWNavigationAppearance.h │ │ │ └── ModalNavigationController.swift │ │ │ ├── PageSheet │ │ │ └── BasePageSheetViewController.swift │ │ │ ├── ProgressView.swift │ │ │ ├── SFSafariViewController+DashWallet.h │ │ │ ├── SFSafariViewController+DashWallet.m │ │ │ ├── SharedViews │ │ │ ├── Buttons │ │ │ │ ├── DWButton.h │ │ │ │ └── DWButton.m │ │ │ ├── DWCenteredScrollView.h │ │ │ ├── DWCenteredScrollView.m │ │ │ ├── DWCenteredTableView.h │ │ │ ├── DWCenteredTableView.m │ │ │ ├── DWIntrinsicCollectionView.h │ │ │ ├── DWIntrinsicCollectionView.m │ │ │ ├── DWIntrinsicTableView.h │ │ │ ├── DWIntrinsicTableView.m │ │ │ ├── DWIntrinsicTextView.h │ │ │ ├── DWIntrinsicTextView.m │ │ │ ├── DWProgressView.h │ │ │ ├── DWProgressView.m │ │ │ ├── DWWindow.h │ │ │ ├── DWWindow.m │ │ │ ├── InfoTextCell │ │ │ │ ├── DWInfoTextCell.h │ │ │ │ ├── DWInfoTextCell.m │ │ │ │ └── DWInfoTextCell.xib │ │ │ ├── Keyboard │ │ │ │ ├── DWNumberKeyboardInputViewAudioFeedback.h │ │ │ │ ├── DWNumberKeyboardInputViewAudioFeedback.m │ │ │ │ ├── NumberKeyboard.swift │ │ │ │ └── NumberKeyboardButton.swift │ │ │ ├── SegmentedControl │ │ │ │ ├── DWOverlapControl.h │ │ │ │ ├── DWOverlapControl.m │ │ │ │ ├── DWProgressAnimator.h │ │ │ │ ├── DWProgressAnimator.mm │ │ │ │ ├── DWSegmentedControl.h │ │ │ │ ├── DWSegmentedControl.m │ │ │ │ └── DWUnitBezier.h │ │ │ ├── ShadowView.swift │ │ │ └── TitleDetailCell │ │ │ │ ├── DWTitleDetailCellModel.h │ │ │ │ ├── DWTitleDetailCellModel.m │ │ │ │ ├── DWTitleDetailCellView.h │ │ │ │ ├── DWTitleDetailCellView.m │ │ │ │ └── DWTitleDetailItem.h │ │ │ ├── SheetViewController.swift │ │ │ ├── TappableLabel.swift │ │ │ ├── TappableTextView.swift │ │ │ ├── Transitions │ │ │ ├── Animations │ │ │ │ ├── DWModalBaseAnimation.h │ │ │ │ ├── DWModalBaseAnimation.m │ │ │ │ ├── DWModalDismissalAnimation.h │ │ │ │ ├── DWModalDismissalAnimation.m │ │ │ │ ├── DWModalPresentationAnimation.h │ │ │ │ └── DWModalPresentationAnimation.m │ │ │ ├── DWModalInteractiveTransition.h │ │ │ ├── DWModalInteractiveTransition.m │ │ │ ├── DWModalInteractiveTransitionProgressHandler.h │ │ │ ├── Item │ │ │ │ ├── Model │ │ │ │ │ └── TransactionDataItem.swift │ │ │ │ └── TransactionItemView.swift │ │ │ ├── Modal │ │ │ │ ├── DWModalPresentationController.h │ │ │ │ ├── DWModalPresentationController.m │ │ │ │ ├── DWModalTransition.h │ │ │ │ └── DWModalTransition.m │ │ │ ├── Popup │ │ │ │ ├── DWModalPopupAppearanceStyle.h │ │ │ │ ├── DWModalPopupPresentationController.h │ │ │ │ ├── DWModalPopupPresentationController.m │ │ │ │ ├── DWModalPopupTransition.h │ │ │ │ └── DWModalPopupTransition.m │ │ │ ├── UIPanGestureRecognizer+DWProjected.h │ │ │ ├── UIPanGestureRecognizer+DWProjected.m │ │ │ ├── UISpringTimingParameters+DWInit.h │ │ │ └── UISpringTimingParameters+DWInit.m │ │ │ ├── UIButton+Dash.swift │ │ │ ├── UIColor+DWStyle.h │ │ │ ├── UIColor+DWStyle.m │ │ │ ├── UIControl+Dash.swift │ │ │ ├── UIFont+DWFont.h │ │ │ ├── UIFont+DWFont.m │ │ │ ├── UISearchBar+DWAdditions.h │ │ │ ├── UISearchBar+DWAdditions.m │ │ │ ├── UIView+DWAnimations.h │ │ │ ├── UIView+DWAnimations.m │ │ │ ├── UIView+DWHUD.h │ │ │ ├── UIView+DWHUD.m │ │ │ └── UIView+Dash.swift │ └── Utils │ │ ├── CSVBuilder.swift │ │ └── TimeUtils.swift ├── ar.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── bg.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── ca.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── cs.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── da.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── dashwallet-Bridging-Header.h ├── dashwallet.entitlements ├── dashwalletTodayExtension.entitlements ├── de.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── el.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── en.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── eo.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── es.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── et.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── explore.db ├── explore.db-shm ├── explore.db-wal ├── fa.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── fi.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── fil.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── fr.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── hr.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── hu.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── id.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── it.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── ja.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── ko.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── main.m ├── mk.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── ms.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── nb.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── nl.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── pl.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── pt.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── ro.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── ru.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── sk.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── sl.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── sl_SI.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── sq.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── sr.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── sv.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── th.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── tr.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── uk.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── vi.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── zh-Hans.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── zh-Hant-TW.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── zh.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict └── zh_TW.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── DashWalletScreenshotsUITests ├── DashWalletScreenshotsUITests-Briding-Header.h ├── DashWalletScreenshotsUITests.swift └── Info.plist ├── DashWalletTests ├── AmountObjectTests.swift ├── DWAmountInputValidatorTests.m ├── DashWalletTests-Bridging-Header.h ├── Info.plist ├── String+DashWalletTests.swift └── rates.json ├── Gemfile ├── Gemfile.lock ├── INSTALL ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── Shared ├── Resources │ └── SharedAssets.xcassets │ │ ├── Colors │ │ ├── BackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── BlueGradientStartColor.colorset │ │ │ └── Contents.json │ │ ├── ButtonRedColor.colorset │ │ │ └── Contents.json │ │ ├── ChevronColor.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── DarkBlueColor.colorset │ │ │ └── Contents.json │ │ ├── DashBlueColor.colorset │ │ │ └── Contents.json │ │ ├── DashNavigationBarBlueColor.colorset │ │ │ └── Contents.json │ │ ├── DeclineButtonColor.colorset │ │ │ └── Contents.json │ │ ├── DisabledButtonColor.colorset │ │ │ └── Contents.json │ │ ├── DisabledButtonTextColor.colorset │ │ │ └── Contents.json │ │ ├── Gray300.colorset │ │ │ └── Contents.json │ │ ├── Gray400.colorset │ │ │ └── Contents.json │ │ ├── Gray50.colorset │ │ │ └── Contents.json │ │ ├── Gray500.colorset │ │ │ └── Contents.json │ │ ├── GrayButtonColor.colorset │ │ │ └── Contents.json │ │ ├── GreenColor.colorset │ │ │ └── Contents.json │ │ ├── IconTintColor.colorset │ │ │ └── Contents.json │ │ ├── LightBlueButtonColor.colorset │ │ │ └── Contents.json │ │ ├── ModalDimmingColor.colorset │ │ │ └── Contents.json │ │ ├── NumberKeyboardHighlightedTextColor.colorset │ │ │ └── Contents.json │ │ ├── NumberKeyboardTextColor.colorset │ │ │ └── Contents.json │ │ ├── OrangeColor.colorset │ │ │ └── Contents.json │ │ ├── PinBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── PinInputDotColor.colorset │ │ │ └── Contents.json │ │ ├── ProgressBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── QuaternaryFillColor.colorset │ │ │ └── Contents.json │ │ ├── RedColor.colorset │ │ │ └── Contents.json │ │ ├── SecondaryBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── SegmentSliderColor.colorset │ │ │ └── Contents.json │ │ ├── SeparatorLineColor.colorset │ │ │ └── Contents.json │ │ ├── ShadowColor.colorset │ │ │ └── Contents.json │ │ ├── ShortcutSpecialBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── SystemRedColor.colorset │ │ │ └── Contents.json │ │ ├── SystemYellowColor.colorset │ │ │ └── Contents.json │ │ ├── TabbarBorderColor.colorset │ │ │ └── Contents.json │ │ ├── TabbarInactiveButtonColor.colorset │ │ │ └── Contents.json │ │ ├── TertiaryBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── TextColors │ │ │ ├── Contents.json │ │ │ ├── DarkTitleColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── Label.colorset │ │ │ │ └── Contents.json │ │ │ ├── LightTitleColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── QuaternaryTextColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── SecondaryTextColor.colorset │ │ │ │ └── Contents.json │ │ │ └── TertiaryTextColor.colorset │ │ │ │ └── Contents.json │ │ └── TintColor.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── dash_logo_qr.imageset │ │ ├── Contents.json │ │ ├── dash_logo_qr.png │ │ ├── dash_logo_qr@2x.png │ │ └── dash_logo_qr@3x.png │ │ └── dash_logo_template.imageset │ │ ├── Contents.json │ │ ├── dash_logo_template.png │ │ ├── dash_logo_template@2x.png │ │ └── dash_logo_template@3x.png └── Sources │ ├── UIImage+Utils.h │ └── UIImage+Utils.m ├── TodayExtension ├── BRBubbleView.h ├── BRBubbleView.m ├── DWTodayViewController.h ├── DWTodayViewController.m ├── Info.plist ├── TodayExtension.storyboard └── TodayExtensionAssets.xcassets │ ├── Contents.json │ ├── button-bg-white-pressed.imageset │ ├── Contents.json │ └── button-bg-white-pressed.png │ ├── button-bg-white.imageset │ ├── Contents.json │ └── button-bg-white.png │ └── icon_scan.imageset │ ├── Contents.json │ ├── shortcut_scanToPay.png │ ├── shortcut_scanToPay@2x.png │ └── shortcut_scanToPay@3x.png ├── WatchApp Extension ├── BRAWBalanceInterfaceController.swift ├── BRAWKeypad.swift ├── BRAWReceiveMoneyInterfaceController.swift ├── BRAWTransactionRowControl.swift ├── BRAWWeakTimerTarget.swift ├── DWMainInterfaceController.swift ├── DWSetupInfoInterfaceController.swift ├── DWTxInfoDisplayableInterfaceController.swift ├── DWWatchDataManager.swift ├── ExtensionDelegate.swift ├── Info.plist └── WatchApp Extension-Bridging-Header.h ├── WatchApp ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon.png │ │ ├── Icon108@2x.png │ │ ├── Icon48.png │ │ ├── Icon50@2x.png │ │ ├── Icon55.png │ │ ├── Icon86@2x.png │ │ ├── Icon88.png │ │ ├── Icon96@2x.png │ │ ├── icon_29pt@2x.png │ │ ├── icon_29pt@3x.png │ │ └── icon_40pt@2x-1.png │ ├── Contents.json │ ├── GalanceIcon.imageset │ │ ├── Contents.json │ │ ├── icon_40pt@2x.png │ │ └── icon_40pt@3x.png │ ├── InvalidTransactionIcon.imageset │ │ ├── Contents.json │ │ └── invalid.png │ ├── MoveMoneyIcon.imageset │ │ ├── Contents.json │ │ └── move.png │ ├── ReceiveMoneyIcon.imageset │ │ ├── Contents.json │ │ └── recv.png │ ├── SentMoneyIcon.imageset │ │ ├── Contents.json │ │ └── send.png │ └── transactionHeaderBackground.imageset │ │ ├── Contents.json │ │ └── transactionHeaderBackground.png ├── Base.lproj │ └── Interface.storyboard ├── Info.plist ├── LoadingIndicator.xcassets │ ├── Contents.json │ ├── LoadingIndicator1.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator1@2x.png │ ├── LoadingIndicator10.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator10@2x.png │ ├── LoadingIndicator11.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator11@2x.png │ ├── LoadingIndicator12.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator12@2x.png │ ├── LoadingIndicator13.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator13@2x.png │ ├── LoadingIndicator14.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator14@2x.png │ ├── LoadingIndicator15.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator15@2x.png │ ├── LoadingIndicator16.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator16@2x.png │ ├── LoadingIndicator17.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator17@2x.png │ ├── LoadingIndicator18.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator18@2x.png │ ├── LoadingIndicator19.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator19@2x.png │ ├── LoadingIndicator2.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator2@2x.png │ ├── LoadingIndicator20.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator20@2x.png │ ├── LoadingIndicator21.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator21@2x.png │ ├── LoadingIndicator22.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator22@2x.png │ ├── LoadingIndicator23.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator23@2x.png │ ├── LoadingIndicator24.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator24@2x.png │ ├── LoadingIndicator25.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator25@2x.png │ ├── LoadingIndicator26.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator26@2x.png │ ├── LoadingIndicator27.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator27@2x.png │ ├── LoadingIndicator28.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator28@2x.png │ ├── LoadingIndicator29.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator29@2x.png │ ├── LoadingIndicator3.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator3@2x.png │ ├── LoadingIndicator30.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator30@2x.png │ ├── LoadingIndicator4.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator4@2x.png │ ├── LoadingIndicator5.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator5@2x.png │ ├── LoadingIndicator6.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator6@2x.png │ ├── LoadingIndicator7.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator7@2x.png │ ├── LoadingIndicator8.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator8@2x.png │ └── LoadingIndicator9.imageset │ │ ├── Contents.json │ │ └── LoadingIndicator9@2x.png ├── ar.lproj │ └── Interface.strings ├── bg.lproj │ └── Interface.strings ├── ca.lproj │ └── Interface.strings ├── cs.lproj │ └── Interface.strings ├── da.lproj │ └── Interface.strings ├── de.lproj │ └── Interface.strings ├── el.lproj │ └── Interface.strings ├── en.lproj │ └── Interface.strings ├── eo.lproj │ └── Interface.strings ├── es.lproj │ └── Interface.strings ├── et.lproj │ └── Interface.strings ├── fa.lproj │ └── Interface.strings ├── fi.lproj │ └── Interface.strings ├── fil.lproj │ └── Interface.strings ├── fr.lproj │ └── Interface.strings ├── hr.lproj │ └── Interface.strings ├── hu.lproj │ └── Interface.strings ├── id.lproj │ └── Interface.strings ├── it.lproj │ └── Interface.strings ├── ja.lproj │ └── Interface.strings ├── ko.lproj │ └── Interface.strings ├── mk.lproj │ └── Interface.strings ├── ms.lproj │ └── Interface.strings ├── nb.lproj │ └── Interface.strings ├── nl.lproj │ └── Interface.strings ├── pl.lproj │ └── Interface.strings ├── pt.lproj │ └── Interface.strings ├── ro.lproj │ └── Interface.strings ├── ru.lproj │ └── Interface.strings ├── sk.lproj │ └── Interface.strings ├── sl.lproj │ └── Interface.strings ├── sl_SI.lproj │ └── Interface.strings ├── sq.lproj │ └── Interface.strings ├── sr.lproj │ └── Interface.strings ├── sv.lproj │ └── Interface.strings ├── th.lproj │ └── Interface.strings ├── tr.lproj │ └── Interface.strings ├── uk.lproj │ └── Interface.strings ├── vi.lproj │ └── Interface.strings ├── zh-Hans.lproj │ └── Interface.strings ├── zh-Hant-TW.lproj │ └── Interface.strings ├── zh.lproj │ └── Interface.strings └── zh_TW.lproj │ └── Interface.strings ├── fastlane ├── Appfile ├── Deliverfile.swift ├── Fastfile ├── README.md ├── Snapfile ├── SnapshotHelper.swift └── metadata │ ├── app_icon.jpg │ ├── ar │ ├── description.txt │ └── release_notes.txt │ ├── bg │ ├── description.txt │ └── release_notes.txt │ ├── ca │ ├── description.txt │ └── release_notes.txt │ ├── copyright.txt │ ├── cs │ ├── description.txt │ └── release_notes.txt │ ├── da │ ├── description.txt │ └── release_notes.txt │ ├── de-DE │ ├── apple_tv_privacy_policy.txt │ ├── description.txt │ ├── keywords.txt │ ├── marketing_url.txt │ ├── name.txt │ ├── privacy_url.txt │ ├── promotional_text.txt │ ├── release_notes.txt │ ├── subtitle.txt │ └── support_url.txt │ ├── de │ ├── description.txt │ └── release_notes.txt │ ├── el │ ├── description.txt │ └── release_notes.txt │ ├── en-US │ ├── apple_tv_privacy_policy.txt │ ├── description.txt │ ├── keywords.txt │ ├── marketing_url.txt │ ├── name.txt │ ├── privacy_url.txt │ ├── promotional_text.txt │ ├── release_notes.txt │ ├── subtitle.txt │ └── support_url.txt │ ├── eo │ ├── description.txt │ └── release_notes.txt │ ├── es-ES │ ├── apple_tv_privacy_policy.txt │ ├── description.txt │ ├── keywords.txt │ ├── marketing_url.txt │ ├── name.txt │ ├── privacy_url.txt │ ├── promotional_text.txt │ ├── release_notes.txt │ ├── subtitle.txt │ └── support_url.txt │ ├── es │ ├── description.txt │ └── release_notes.txt │ ├── et │ ├── description.txt │ └── release_notes.txt │ ├── fa │ ├── description.txt │ └── release_notes.txt │ ├── fi │ ├── description.txt │ └── release_notes.txt │ ├── fil │ ├── description.txt │ └── release_notes.txt │ ├── fr-FR │ ├── apple_tv_privacy_policy.txt │ ├── description.txt │ ├── keywords.txt │ ├── marketing_url.txt │ ├── name.txt │ ├── privacy_url.txt │ ├── promotional_text.txt │ ├── release_notes.txt │ ├── subtitle.txt │ └── support_url.txt │ ├── fr │ ├── description.txt │ └── release_notes.txt │ ├── hr │ ├── description.txt │ └── release_notes.txt │ ├── hu │ ├── description.txt │ └── release_notes.txt │ ├── id │ ├── description.txt │ └── release_notes.txt │ ├── it │ ├── description.txt │ └── release_notes.txt │ ├── ja │ ├── description.txt │ └── release_notes.txt │ ├── ko │ ├── apple_tv_privacy_policy.txt │ ├── description.txt │ ├── keywords.txt │ ├── marketing_url.txt │ ├── name.txt │ ├── privacy_url.txt │ ├── promotional_text.txt │ ├── release_notes.txt │ ├── subtitle.txt │ └── support_url.txt │ ├── mk │ ├── description.txt │ └── release_notes.txt │ ├── ms │ ├── description.txt │ └── release_notes.txt │ ├── nb │ ├── description.txt │ └── release_notes.txt │ ├── nl │ ├── description.txt │ └── release_notes.txt │ ├── pl │ ├── description.txt │ └── release_notes.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── pt │ ├── description.txt │ └── release_notes.txt │ ├── review_information │ ├── demo_password.txt │ ├── demo_user.txt │ ├── email_address.txt │ ├── first_name.txt │ ├── last_name.txt │ ├── notes.txt │ └── phone_number.txt │ ├── ro │ ├── description.txt │ └── release_notes.txt │ ├── ru │ ├── apple_tv_privacy_policy.txt │ ├── description.txt │ ├── keywords.txt │ ├── marketing_url.txt │ ├── name.txt │ ├── privacy_url.txt │ ├── promotional_text.txt │ ├── release_notes.txt │ ├── subtitle.txt │ └── support_url.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ ├── secondary_second_sub_category.txt │ ├── sk │ ├── description.txt │ └── release_notes.txt │ ├── sl │ ├── description.txt │ └── release_notes.txt │ ├── sl_SI │ ├── description.txt │ └── release_notes.txt │ ├── sq │ ├── description.txt │ └── release_notes.txt │ ├── sr │ ├── description.txt │ └── release_notes.txt │ ├── sv │ ├── description.txt │ └── release_notes.txt │ ├── th │ ├── description.txt │ └── release_notes.txt │ ├── tr │ ├── description.txt │ └── release_notes.txt │ ├── trade_representative_contact_information │ ├── address_line1.txt │ ├── address_line2.txt │ ├── address_line3.txt │ ├── city_name.txt │ ├── country.txt │ ├── email_address.txt │ ├── first_name.txt │ ├── is_displayed_on_app_store.txt │ ├── last_name.txt │ ├── phone_number.txt │ ├── postal_code.txt │ ├── state.txt │ └── trade_name.txt │ ├── uk │ ├── description.txt │ └── release_notes.txt │ ├── vi │ ├── description.txt │ └── release_notes.txt │ ├── watch_icon.jpg │ ├── zh │ ├── description.txt │ └── release_notes.txt │ └── zh_TW │ ├── description.txt │ └── release_notes.txt └── scripts ├── convert_strings_to_utf8.sh ├── dashsync_version.sh └── icon_versioning.sh /.bartycrouch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.bartycrouch.toml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.clang-format -------------------------------------------------------------------------------- /.claude/agents/AI-DEVELOPMENT-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.claude/agents/AI-DEVELOPMENT-GUIDE.md -------------------------------------------------------------------------------- /.claude/agents/EXTERNAL-INTEGRATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.claude/agents/EXTERNAL-INTEGRATIONS.md -------------------------------------------------------------------------------- /.claude/agents/MCP-CONFIGURATION-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.claude/agents/MCP-CONFIGURATION-GUIDE.md -------------------------------------------------------------------------------- /.claude/agents/PROJECT-FUNCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.claude/agents/PROJECT-FUNCTIONS.md -------------------------------------------------------------------------------- /.claude/agents/ios-development-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.claude/agents/ios-development-patterns.md -------------------------------------------------------------------------------- /.claude/agents/ios-rust-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.claude/agents/ios-rust-engineer.md -------------------------------------------------------------------------------- /.claude/agents/ios-swift-safety-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.claude/agents/ios-swift-safety-patterns.md -------------------------------------------------------------------------------- /.claude/agents/location-mapping-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.claude/agents/location-mapping-patterns.md -------------------------------------------------------------------------------- /.claude/verify-mcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.claude/verify-mcp.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.strings text diff 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/semantic-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.github/workflows/semantic-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/.tx/config -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/BUILD.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /DEVELOPER-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DEVELOPER-NOTES.md -------------------------------------------------------------------------------- /DWUpholdMainnetConstants__Empty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DWUpholdMainnetConstants__Empty.m -------------------------------------------------------------------------------- /DashPay/Assets/DPAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Assets/DPAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /DashPay/Presentation/Error/DWNetworkErrorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Error/DWNetworkErrorViewController.h -------------------------------------------------------------------------------- /DashPay/Presentation/Error/DWNetworkErrorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Error/DWNetworkErrorViewController.m -------------------------------------------------------------------------------- /DashPay/Presentation/Filter View/DWFilterHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Filter View/DWFilterHeaderView.xib -------------------------------------------------------------------------------- /DashPay/Presentation/Home/Cells/DWFilterHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Home/Cells/DWFilterHeaderView.h -------------------------------------------------------------------------------- /DashPay/Presentation/Home/Cells/DWFilterHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Home/Cells/DWFilterHeaderView.m -------------------------------------------------------------------------------- /DashPay/Presentation/Home/Cells/DWFilterHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Home/Cells/DWFilterHeaderView.xib -------------------------------------------------------------------------------- /DashPay/Presentation/Home/DWDashPayReadyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Home/DWDashPayReadyProtocol.h -------------------------------------------------------------------------------- /DashPay/Presentation/Home/Views/DashPayProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Home/Views/DashPayProfileView.swift -------------------------------------------------------------------------------- /DashPay/Presentation/InfoPopup/DWInfoPopupContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/InfoPopup/DWInfoPopupContentView.h -------------------------------------------------------------------------------- /DashPay/Presentation/InfoPopup/DWInfoPopupContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/InfoPopup/DWInfoPopupContentView.m -------------------------------------------------------------------------------- /DashPay/Presentation/InfoPopup/DWInfoPopupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/InfoPopup/DWInfoPopupViewController.h -------------------------------------------------------------------------------- /DashPay/Presentation/InfoPopup/DWInfoPopupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/InfoPopup/DWInfoPopupViewController.m -------------------------------------------------------------------------------- /DashPay/Presentation/Setup/CreateUsername/Views/DWTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Setup/CreateUsername/Views/DWTextField.h -------------------------------------------------------------------------------- /DashPay/Presentation/Setup/CreateUsername/Views/DWTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Setup/CreateUsername/Views/DWTextField.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Autolayout/NSArray+DWFlatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Autolayout/NSArray+DWFlatten.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Autolayout/NSArray+DWFlatten.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Autolayout/NSArray+DWFlatten.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Autolayout/UIView+DWAutolayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Autolayout/UIView+DWAutolayout.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Autolayout/UIView+DWAutolayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Autolayout/UIView+DWAutolayout.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWBaseActionButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWBaseActionButton.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWBaseActionButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWBaseActionButton.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWBasePressableControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWBasePressableControl.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWBasePressableControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWBasePressableControl.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWBorderedActionButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWBorderedActionButton.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWBorderedActionButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWBorderedActionButton.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWButton.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWButton.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWColoredButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWColoredButton.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWColoredButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWColoredButton.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWPressableButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWPressableButton.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/Buttons/DWPressableButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/Buttons/DWPressableButton.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/DPAlert/DPAlertChildContentsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/DPAlert/DPAlertChildContentsView.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/DPAlert/DPAlertChildContentsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/DPAlert/DPAlertChildContentsView.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/DPAlert/DPAlertViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/DPAlert/DPAlertViewController.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/DPAlert/DPAlertViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/DPAlert/DPAlertViewController.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/DWDPAvatarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/DWDPAvatarView.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/DWDPAvatarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/DWDPAvatarView.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/DWScrollingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/DWScrollingViewController.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/DWScrollingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/DWScrollingViewController.m -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/UIImageView+DWDPAvatar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/UIImageView+DWDPAvatar.h -------------------------------------------------------------------------------- /DashPay/Presentation/Shared/UIImageView+DWDPAvatar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/Presentation/Shared/UIImageView+DWDPAvatar.m -------------------------------------------------------------------------------- /DashPay/dashpay-info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashPay/dashpay-info.plist -------------------------------------------------------------------------------- /DashSyncCurrentCommit: -------------------------------------------------------------------------------- 1 | 753f9446cfd20ae5da996104a5870df839005d4c 2 | -------------------------------------------------------------------------------- /DashWallet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DashWallet.xcodeproj/xcshareddata/xcschemes/WatchApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet.xcodeproj/xcshareddata/xcschemes/WatchApp.xcscheme -------------------------------------------------------------------------------- /DashWallet.xcodeproj/xcshareddata/xcschemes/dashpay.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet.xcodeproj/xcshareddata/xcschemes/dashpay.xcscheme -------------------------------------------------------------------------------- /DashWallet.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DashWallet.xcworkspace/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet.xcworkspace/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /DashWallet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DashWallet/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/AppDelegate.h -------------------------------------------------------------------------------- /DashWallet/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/AppDelegate.m -------------------------------------------------------------------------------- /DashWallet/DashWallet-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/DashWallet-Prefix.pch -------------------------------------------------------------------------------- /DashWallet/DashWallet.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/DashWallet.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /DashWallet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Info.plist -------------------------------------------------------------------------------- /DashWallet/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DashWallet/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /DashWallet/Resources/AppAssets.xcassets/CoinJoin/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Resources/AppAssets.xcassets/CoinJoin/Contents.json -------------------------------------------------------------------------------- /DashWallet/Resources/AppAssets.xcassets/Coinbase/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Resources/AppAssets.xcassets/Coinbase/Contents.json -------------------------------------------------------------------------------- /DashWallet/Resources/AppAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Resources/AppAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /DashWallet/Resources/AppAssets.xcassets/Flags/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Resources/AppAssets.xcassets/Flags/Contents.json -------------------------------------------------------------------------------- /DashWallet/Resources/AppAssets.xcassets/Menu/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Resources/AppAssets.xcassets/Menu/Contents.json -------------------------------------------------------------------------------- /DashWallet/Resources/AppAssets.xcassets/TabBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Resources/AppAssets.xcassets/TabBar/Contents.json -------------------------------------------------------------------------------- /DashWallet/Resources/AppAssets.xcassets/Uphold/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Resources/AppAssets.xcassets/Uphold/Contents.json -------------------------------------------------------------------------------- /DashWallet/Resources/coinflip.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Resources/coinflip.aiff -------------------------------------------------------------------------------- /DashWallet/Resources/mixing_anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Resources/mixing_anim.json -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/BRAppleWatchData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/BRAppleWatchData.h -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/BRAppleWatchData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/BRAppleWatchData.m -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/BRAppleWatchSharedConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/BRAppleWatchSharedConstants.h -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/BRAppleWatchTransactionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/BRAppleWatchTransactionData.h -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/BRAppleWatchTransactionData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/BRAppleWatchTransactionData.m -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/DSWatchTransactionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/DSWatchTransactionData.h -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/DSWatchTransactionDataObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/DSWatchTransactionDataObject.h -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/DSWatchTransactionDataObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/DSWatchTransactionDataObject.m -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/DWPhoneWCSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/DWPhoneWCSessionManager.h -------------------------------------------------------------------------------- /DashWallet/Sources/AppleWatch/DWPhoneWCSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/AppleWatch/DWPhoneWCSessionManager.m -------------------------------------------------------------------------------- /DashWallet/Sources/Application/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Application/App.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Application/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Application/Constants.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Application/Tools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Application/Tools.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Application/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Application/Types.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/CALayer+MBAnimationPersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/CALayer+MBAnimationPersistence.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/CALayer+MBAnimationPersistence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/CALayer+MBAnimationPersistence.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/ColorizedText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/ColorizedText.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/DSChain+DashWallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/DSChain+DashWallet.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/DSChain+DashWallet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/DSChain+DashWallet.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/DSTransaction+DashWallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/DSTransaction+DashWallet.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/DSTransaction+DashWallet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/DSTransaction+DashWallet.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/DSTransaction+DashWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/DSTransaction+DashWallet.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/Embedding/UIView+DWEmbedding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/Embedding/UIView+DWEmbedding.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/Embedding/UIView+DWEmbedding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/Embedding/UIView+DWEmbedding.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/ErrorPresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/ErrorPresentable.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/FileManager+DashWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/FileManager+DashWallet.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/Foundation+Bitcoin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/Foundation+Bitcoin.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/NSAttributedString+Builder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/NSAttributedString+Builder.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/NSPredicate+DWFullTextSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/NSPredicate+DWFullTextSearch.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/NSPredicate+DWFullTextSearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/NSPredicate+DWFullTextSearch.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/NSString+DWTextSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/NSString+DWTextSize.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/NSString+DWTextSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/NSString+DWTextSize.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/NumberFormatter+DashWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/NumberFormatter+DashWallet.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/Numbers+Dash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/Numbers+Dash.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/String+DashWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/String+DashWallet.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIApplication+DashWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIApplication+DashWallet.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIDevice+Compatibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIDevice+Compatibility.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIDevice+DashWallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIDevice+DashWallet.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIDevice+DashWallet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIDevice+DashWallet.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIStackView+DashWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIStackView+DashWallet.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UITableView+DashWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UITableView+DashWallet.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIView+DWFindConstraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIView+DWFindConstraints.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIView+DWFindConstraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIView+DWFindConstraints.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIView+DWRecursiveSubview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIView+DWRecursiveSubview.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIView+DWRecursiveSubview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIView+DWRecursiveSubview.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIView+DWReuseHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIView+DWReuseHelper.h -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIView+DWReuseHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIView+DWReuseHelper.m -------------------------------------------------------------------------------- /DashWallet/Sources/Categories/UIView+Reuse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Categories/UIView+Reuse.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Foundation/DashTextAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Foundation/DashTextAttachment.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Infrastructure/Networking/HTTPClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Infrastructure/Networking/HTTPClient.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/CoinJoin/CoinJoinMixingTxSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/CoinJoin/CoinJoinMixingTxSet.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/CoinJoin/CoinJoinProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/CoinJoin/CoinJoinProgress.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/CoinJoin/CoinJoinService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/CoinJoin/CoinJoinService.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/CoinJoin/CoinJoinTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/CoinJoin/CoinJoinTransaction.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Coinbase/Auth/CBAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Coinbase/Auth/CBAuth.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Coinbase/Auth/CBAuthInterop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Coinbase/Auth/CBAuthInterop.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Coinbase/Auth/User/CBUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Coinbase/Auth/User/CBUser.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Coinbase/Coinbase+Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Coinbase/Coinbase+Constants.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Coinbase/Coinbase+Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Coinbase/Coinbase+Error.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Coinbase/Coinbase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Coinbase/Coinbase.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/CrowdNode/API/DTOs/FeeInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/CrowdNode/API/DTOs/FeeInfo.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/CrowdNode/CrowdNode+Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/CrowdNode/CrowdNode+Constants.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/CrowdNode/CrowdNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/CrowdNode/CrowdNode.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/CrowdNode/Model/ApiCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/CrowdNode/Model/ApiCode.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/CrowdNode/Model/CrowdNodeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/CrowdNode/Model/CrowdNodeError.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWAppGroupConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWAppGroupConstants.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWAppGroupOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWAppGroupOptions.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWAppGroupOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWAppGroupOptions.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWDateFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWDateFormatter.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWEnvironment.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWEnvironment.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWGlobalOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWGlobalOptions.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWGlobalOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWGlobalOptions.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWPaymentCurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWPaymentCurrency.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWVersionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWVersionManager.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/DWVersionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/DWVersionManager.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Explore Dash/ExploreDash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Explore Dash/ExploreDash.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Taxes/Address/AddressUserInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Taxes/Address/AddressUserInfo.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Taxes/Taxes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Taxes/Taxes.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Taxes/ZenLedger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Taxes/ZenLedger.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Transactions/BalanceNotifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Transactions/BalanceNotifier.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Transactions/Model/Transaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Transactions/Model/Transaction.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Transactions/SendCoinsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Transactions/SendCoinsService.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Tx Metadata/DAO/IconBitmapDAO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Tx Metadata/DAO/IconBitmapDAO.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Tx Metadata/IconBitmap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Tx Metadata/IconBitmap.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Tx Metadata/ServiceName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Tx Metadata/ServiceName.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Tx/GroupedTransactions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Tx/GroupedTransactions.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Tx/Transactions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Tx/Transactions.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/URL Handling/DWURLActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/URL Handling/DWURLActions.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/URL Handling/DWURLActions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/URL Handling/DWURLActions.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/URL Handling/DWURLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/URL Handling/DWURLParser.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/URL Handling/DWURLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/URL Handling/DWURLParser.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/URL Handling/DWURLRequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/URL Handling/DWURLRequestHandler.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/URL Handling/DWURLRequestHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/URL Handling/DWURLRequestHandler.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdAPIProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdAPIProvider.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdAPIProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdAPIProvider.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdAccountObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdAccountObject.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdAccountObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdAccountObject.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdCardObject+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdCardObject+Internal.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdCardObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdCardObject.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdCardObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdCardObject.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdClient.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdClient.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdConstants.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdConstants.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdMainnetConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdMainnetConstants.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdMainnetConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdMainnetConstants.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdTransactionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdTransactionObject.h -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/DWUpholdTransactionObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/DWUpholdTransactionObject.m -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/Model/UpholdCapability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/Model/UpholdCapability.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/Model/UpholdError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/Model/UpholdError.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/SupportedTopperAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/SupportedTopperAssets.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/Topper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/Topper.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Uphold/UpholdClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Uphold/UpholdClient.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/UsernamePrefs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/UsernamePrefs.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Usernames/UsernamePrefs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Usernames/UsernamePrefs.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Voting/DAO/UsernameRequestsDAO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Voting/DAO/UsernameRequestsDAO.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Voting/MasternodeKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Voting/MasternodeKey.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Voting/UsernameRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Voting/UsernameRequest.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Voting/VotingConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Voting/VotingConstants.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Voting/VotingFiltersModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Voting/VotingFiltersModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Models/Voting/VotingPrefs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Models/Voting/VotingPrefs.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Assembly/UIAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Assembly/UIAssembly.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Basic Info/BasicInfoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Basic Info/BasicInfoController.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Buy Sell/BuySellPortal.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Buy Sell/BuySellPortal.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Buy Sell/IntegrationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Buy Sell/IntegrationViewController.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Buy Sell/Model/BuySellPortalModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Buy Sell/Model/BuySellPortalModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Buy Sell/Model/ServiceDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Buy Sell/Model/ServiceDataProvider.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Buy Sell/Model/ServiceDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Buy Sell/Model/ServiceDataSource.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Buy Sell/Model/VO/ServiceItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Buy Sell/Model/VO/ServiceItem.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Coinbase/Base.lproj/Coinbase.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Coinbase/Base.lproj/Coinbase.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Coinbase/Base/ViewModel+Coinbase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Coinbase/Base/ViewModel+Coinbase.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Coinbase/SwiftUIViewFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Coinbase/SwiftUIViewFactory.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/CrowdNode/CrowdNode.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/CrowdNode/CrowdNode.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/CrowdNode/CrowdNodeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/CrowdNode/CrowdNodeModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/CrowdNode/Portal/Views/FromLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/CrowdNode/Portal/Views/FromLabel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/CrowdNode/Views/CrowdNodeAPYView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/CrowdNode/Views/CrowdNodeAPYView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/DWDashPayConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/DWDashPayConstants.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/DWDashPayConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/DWDashPayConstants.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Global/UIImageView+DWDPAvatar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Global/UIImageView+DWDPAvatar.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Global/UIImageView+DWDPAvatar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Global/UIImageView+DWDPAvatar.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Objects/DWDPTxObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Objects/DWDPTxObject.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Objects/DWDPTxObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Objects/DWDPTxObject.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Objects/DWDPUserObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Objects/DWDPUserObject.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Objects/DWDPUserObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Objects/DWDPUserObject.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Protocols/DWDPBasicItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Protocols/DWDPBasicItem.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Protocols/DWDPTxItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Protocols/DWDPTxItem.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Views/DWDPBasicCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Views/DWDPBasicCell.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Views/DWDPBasicCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Views/DWDPBasicCell.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Views/DWDPTextStatusCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Views/DWDPTextStatusCell.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Views/DWDPTextStatusCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Views/DWDPTextStatusCell.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Views/DWDPTxListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Views/DWDPTxListCell.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Views/DWDPTxListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Views/DWDPTxListCell.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Views/UIFont+DWDPItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Views/UIFont+DWDPItem.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Items/Views/UIFont+DWDPItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Items/Views/UIFont+DWDPItem.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/DWDPAvatarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/DWDPAvatarView.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/DWDPAvatarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/DWDPAvatarView.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/DWDPSmallContactView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/DWDPSmallContactView.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/DWDPSmallContactView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/DWDPSmallContactView.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/DWDashPayAnimationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/DWDashPayAnimationView.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/DWDashPayAnimationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/DWDashPayAnimationView.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/DWNetworkUnavailableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/DWNetworkUnavailableView.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/DWNetworkUnavailableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/DWNetworkUnavailableView.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/UIColor+DWDashPay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/UIColor+DWDashPay.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Views/UIColor+DWDashPay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Views/UIColor+DWDashPay.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Voting/Cells/VoteButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Voting/Cells/VoteButton.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Voting/UsernameVoting.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Voting/UsernameVoting.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.xib -------------------------------------------------------------------------------- /DashWallet/Sources/UI/DashPay/Voting/VotingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/DashPay/Voting/VotingViewModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Explore Dash/ExploreViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Explore Dash/ExploreViewController.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/HomeViewController.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Models/DWDPRegistrationStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Models/DWDPRegistrationStatus.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Models/DWDPRegistrationStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Models/DWDPRegistrationStatus.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Models/DWDashPayModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Models/DWDashPayModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Models/DWDashPayModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Models/DWDashPayModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Models/DWHomeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Models/DWHomeModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Models/DWHomeModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Models/DWHomeModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Protocols/DWDashPayProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Protocols/DWDashPayProtocol.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Protocols/DWHomeProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Protocols/DWHomeProtocol.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Views/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Views/HomeView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Views/HomeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Views/HomeViewModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Views/MetadataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Views/MetadataProvider.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Home/Views/Shortcuts/ShortcutsView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Home/Views/Shortcuts/ShortcutsView.xib -------------------------------------------------------------------------------- /DashWallet/Sources/UI/LockScreen/DWLockScreenModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/LockScreen/DWLockScreenModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/LockScreen/DWLockScreenModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/LockScreen/DWLockScreenModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/LockScreen/LockScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/LockScreen/LockScreen.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/LockScreen/Views/DWLockActionButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/LockScreen/Views/DWLockActionButton.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/LockScreen/Views/DWLockActionButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/LockScreen/Views/DWLockActionButton.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/LockScreen/Views/DWLockPinInputView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/LockScreen/Views/DWLockPinInputView.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/LockScreen/Views/DWLockPinInputView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/LockScreen/Views/DWLockPinInputView.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Main/MainTabbarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Main/MainTabbarController.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Main/Views/PaymentButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Main/Views/PaymentButton.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Forms/DWBaseFormCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Forms/DWBaseFormCellModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Forms/DWBaseFormCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Forms/DWBaseFormCellModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Forms/DWBaseFormTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Forms/DWBaseFormTableViewCell.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Forms/DWBaseFormTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Forms/DWBaseFormTableViewCell.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Forms/DWFormSectionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Forms/DWFormSectionModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Forms/DWFormSectionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Forms/DWFormSectionModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Forms/DWFormTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Forms/DWFormTableViewController.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Forms/DWFormTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Forms/DWFormTableViewController.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Forms/DWSelectorFormItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Forms/DWSelectorFormItem.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Main/MainMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Main/MainMenuViewController.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Main/MainMenuViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Main/MainMenuViewModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/MenuItemModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/MenuItemModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Security/SecurityMenuScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Security/SecurityMenuScreen.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Settings/About/About.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Settings/About/About.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Settings/About/DWAboutModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Settings/About/DWAboutModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Settings/About/DWAboutModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Settings/About/DWAboutModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Settings/SettingsScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Settings/SettingsScreen.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Tools/ToolsMenuScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Tools/ToolsMenuScreen.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Menu/Tools/ToolsMenuViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Menu/Tools/ToolsMenuViewModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/DWDemoDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/DWDemoDelegate.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Models/DWOnboardingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Models/DWOnboardingModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Models/DWOnboardingModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Models/DWOnboardingModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Onboarding.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Onboarding.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWHomeModelStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWHomeModelStub.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWHomeModelStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWHomeModelStub.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWPayModelStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWPayModelStub.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWPayModelStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWPayModelStub.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWReceiveModelStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWReceiveModelStub.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWReceiveModelStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWReceiveModelStub.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWRootModelStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWRootModelStub.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWRootModelStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWRootModelStub.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWTransactionStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWTransactionStub.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Onboarding/Stubs/DWTransactionStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Onboarding/Stubs/DWTransactionStub.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Amount/Views/AmountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Amount/Views/AmountView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Pay/DWBasePayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Pay/DWBasePayViewController.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Pay/DWBasePayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Pay/DWBasePayViewController.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Pay/Models/DWPayModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Pay/Models/DWPayModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Pay/Models/DWPayModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Pay/Models/DWPayModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Pay/Models/DWPayOptionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Pay/Models/DWPayOptionModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Pay/Models/DWPayOptionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Pay/Models/DWPayOptionModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Pay/Pay.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Pay/Pay.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Pay/PayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Pay/PayViewController.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/Payments.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/Payments.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/PaymentsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/PaymentsViewController.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/ScanQR/DWQRScanModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/ScanQR/DWQRScanModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/ScanQR/DWQRScanModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/ScanQR/DWQRScanModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/ScanQR/DWQRScanStatusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/ScanQR/DWQRScanStatusView.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/ScanQR/DWQRScanStatusView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/ScanQR/DWQRScanStatusView.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/ScanQR/DWQRScanView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/ScanQR/DWQRScanView.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Payments/ScanQR/DWQRScanView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Payments/ScanQR/DWQRScanView.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/RootNavigation/DWRootModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/RootNavigation/DWRootModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/RootNavigation/DWRootModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/RootNavigation/DWRootModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/RootNavigation/DWRootProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/RootNavigation/DWRootProtocol.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/RootNavigation/DWWipeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/RootNavigation/DWWipeDelegate.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/DWSetupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/DWSetupViewController.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/DWSetupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/DWSetupViewController.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/RecoverWallet/DWRecoverAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/RecoverWallet/DWRecoverAction.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/RecoverWallet/DWRecoverModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/RecoverWallet/DWRecoverModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/RecoverWallet/DWRecoverModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/RecoverWallet/DWRecoverModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/SetPin/DWSetPinModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/SetPin/DWSetPinModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/SetPin/DWSetPinModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/SetPin/DWSetPinModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/SetPin/DWSetPinViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/SetPin/DWSetPinViewController.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/SetPin/DWSetPinViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/SetPin/DWSetPinViewController.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/SetPin/SetPin.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/SetPin/SetPin.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/SetPin/Views/DWPinField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/SetPin/Views/DWPinField.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/SetPin/Views/DWPinField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/SetPin/Views/DWPinField.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/SetPin/Views/DWPinView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/SetPin/Views/DWPinView.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/SetPin/Views/DWPinView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/SetPin/Views/DWPinView.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Setup/Setup.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Setup/Setup.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Start/DWBaseLegacyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Start/DWBaseLegacyViewController.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Start/DWBaseLegacyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Start/DWBaseLegacyViewController.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Start/DWStartModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Start/DWStartModel.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Start/DWStartModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Start/DWStartModel.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Start/DWStartViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Start/DWStartViewController.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Start/DWStartViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Start/DWStartViewController.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Start/StartStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Start/StartStoryboard.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Style/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Style/Style.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/BottomSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/BottomSheet.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/Button.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/ButtonsGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/ButtonsGroup.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/Color+DWStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/Color+DWStyle.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/DashAmount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/DashAmount.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/Extensions.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/Font+DWStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/Font+DWStyle.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/Icon.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/MenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/MenuItem.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/SendIntro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/SendIntro.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/Shape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/Shape.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/TextInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/TextInput.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/TextIntro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/TextIntro.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/Toast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/Toast.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/SwiftUI Components/Wrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/SwiftUI Components/Wrapper.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Tx/Details/Model/TxDetailModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Tx/Details/Model/TxDetailModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Tx/Details/Views/TxDetailCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Tx/Details/Views/TxDetailCells.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Tx/Details/Views/TxDetailInfoCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Tx/Details/Views/TxDetailInfoCell.xib -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Tx/Tx.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Tx/Tx.storyboard -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Uphold/Portal/UpholdPortalModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Uphold/Portal/UpholdPortalModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Uphold/TopperViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Uphold/TopperViewModel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/BadgeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/BadgeView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/BalanceView/BalanceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/BalanceView/BalanceView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/CALayer+DWShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/CALayer+DWShadow.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/CALayer+DWShadow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/CALayer+DWShadow.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/CustomHUDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/CustomHUDView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/DWAnimatedShapeLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/DWAnimatedShapeLayer.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/DWAnimatedShapeLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/DWAnimatedShapeLayer.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/DWSharedUIConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/DWSharedUIConstants.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/DWSharedUIConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/DWSharedUIConstants.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/DWUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/DWUIKit.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/DashInputField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/DashInputField.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/DevicesCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/DevicesCompatibility.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/EmptyUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/EmptyUIView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/HairlineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/HairlineView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/ProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/ProgressView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/SharedViews/Buttons/DWButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/SharedViews/Buttons/DWButton.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/SharedViews/Buttons/DWButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/SharedViews/Buttons/DWButton.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/SharedViews/DWProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/SharedViews/DWProgressView.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/SharedViews/DWProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/SharedViews/DWProgressView.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/SharedViews/DWWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/SharedViews/DWWindow.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/SharedViews/DWWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/SharedViews/DWWindow.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/SharedViews/ShadowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/SharedViews/ShadowView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/SheetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/SheetViewController.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/TappableLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/TappableLabel.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/TappableTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/TappableTextView.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIButton+Dash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIButton+Dash.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIColor+DWStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIColor+DWStyle.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIColor+DWStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIColor+DWStyle.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIControl+Dash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIControl+Dash.swift -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIFont+DWFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIFont+DWFont.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIFont+DWFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIFont+DWFont.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UISearchBar+DWAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UISearchBar+DWAdditions.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UISearchBar+DWAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UISearchBar+DWAdditions.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIView+DWAnimations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIView+DWAnimations.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIView+DWAnimations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIView+DWAnimations.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIView+DWHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIView+DWHUD.h -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIView+DWHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIView+DWHUD.m -------------------------------------------------------------------------------- /DashWallet/Sources/UI/Views/UIView+Dash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/UI/Views/UIView+Dash.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Utils/CSVBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Utils/CSVBuilder.swift -------------------------------------------------------------------------------- /DashWallet/Sources/Utils/TimeUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/Sources/Utils/TimeUtils.swift -------------------------------------------------------------------------------- /DashWallet/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/ar.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ar.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/bg.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/bg.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/ca.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ca.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/cs.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/cs.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/da.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/da.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/dashwallet-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/dashwallet-Bridging-Header.h -------------------------------------------------------------------------------- /DashWallet/dashwallet.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/dashwallet.entitlements -------------------------------------------------------------------------------- /DashWallet/dashwalletTodayExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/dashwalletTodayExtension.entitlements -------------------------------------------------------------------------------- /DashWallet/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/de.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/de.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/el.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/el.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/eo.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/eo.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/eo.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/eo.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/es.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/es.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/et.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/et.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/et.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/et.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/explore.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/explore.db -------------------------------------------------------------------------------- /DashWallet/explore.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/explore.db-shm -------------------------------------------------------------------------------- /DashWallet/explore.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DashWallet/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/fa.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/fa.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/fi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/fi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/fil.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/fil.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/fil.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/fil.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/fr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/fr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/hr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/hr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/hu.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/hu.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/id.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/id.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/it.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/it.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/ja.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ja.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/ko.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ko.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/main.m -------------------------------------------------------------------------------- /DashWallet/mk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/mk.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/mk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/mk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/ms.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ms.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/nb.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/nb.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/nl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/nl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/pl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/pl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/pt.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/pt.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/ro.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ro.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/ru.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/ru.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/sk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/sl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/sl_SI.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sl_SI.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/sl_SI.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sl_SI.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/sq.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sq.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/sq.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sq.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/sr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sr.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/sr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/sv.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/sv.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/th.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/th.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/tr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/tr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/uk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/uk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/vi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/vi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/zh-Hans.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/zh-Hans.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/zh-Hant-TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/zh-Hant-TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/zh-Hant-TW.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/zh-Hant-TW.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/zh.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/zh.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/zh.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/zh.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWallet/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /DashWallet/zh_TW.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWallet/zh_TW.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /DashWalletScreenshotsUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWalletScreenshotsUITests/Info.plist -------------------------------------------------------------------------------- /DashWalletTests/AmountObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWalletTests/AmountObjectTests.swift -------------------------------------------------------------------------------- /DashWalletTests/DWAmountInputValidatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWalletTests/DWAmountInputValidatorTests.m -------------------------------------------------------------------------------- /DashWalletTests/DashWalletTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWalletTests/DashWalletTests-Bridging-Header.h -------------------------------------------------------------------------------- /DashWalletTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWalletTests/Info.plist -------------------------------------------------------------------------------- /DashWalletTests/String+DashWalletTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWalletTests/String+DashWalletTests.swift -------------------------------------------------------------------------------- /DashWalletTests/rates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/DashWalletTests/rates.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Resources/SharedAssets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/Shared/Resources/SharedAssets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /Shared/Resources/SharedAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/Shared/Resources/SharedAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /Shared/Sources/UIImage+Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/Shared/Sources/UIImage+Utils.h -------------------------------------------------------------------------------- /Shared/Sources/UIImage+Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/Shared/Sources/UIImage+Utils.m -------------------------------------------------------------------------------- /TodayExtension/BRBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/TodayExtension/BRBubbleView.h -------------------------------------------------------------------------------- /TodayExtension/BRBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/TodayExtension/BRBubbleView.m -------------------------------------------------------------------------------- /TodayExtension/DWTodayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/TodayExtension/DWTodayViewController.h -------------------------------------------------------------------------------- /TodayExtension/DWTodayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/TodayExtension/DWTodayViewController.m -------------------------------------------------------------------------------- /TodayExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/TodayExtension/Info.plist -------------------------------------------------------------------------------- /TodayExtension/TodayExtension.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/TodayExtension/TodayExtension.storyboard -------------------------------------------------------------------------------- /TodayExtension/TodayExtensionAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/TodayExtension/TodayExtensionAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /WatchApp Extension/BRAWBalanceInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/BRAWBalanceInterfaceController.swift -------------------------------------------------------------------------------- /WatchApp Extension/BRAWKeypad.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/BRAWKeypad.swift -------------------------------------------------------------------------------- /WatchApp Extension/BRAWReceiveMoneyInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/BRAWReceiveMoneyInterfaceController.swift -------------------------------------------------------------------------------- /WatchApp Extension/BRAWTransactionRowControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/BRAWTransactionRowControl.swift -------------------------------------------------------------------------------- /WatchApp Extension/BRAWWeakTimerTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/BRAWWeakTimerTarget.swift -------------------------------------------------------------------------------- /WatchApp Extension/DWMainInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/DWMainInterfaceController.swift -------------------------------------------------------------------------------- /WatchApp Extension/DWSetupInfoInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/DWSetupInfoInterfaceController.swift -------------------------------------------------------------------------------- /WatchApp Extension/DWWatchDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/DWWatchDataManager.swift -------------------------------------------------------------------------------- /WatchApp Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /WatchApp Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/Info.plist -------------------------------------------------------------------------------- /WatchApp Extension/WatchApp Extension-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp Extension/WatchApp Extension-Bridging-Header.h -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/Icon108@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/Icon108@2x.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/Icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/Icon48.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/Icon50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/Icon50@2x.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/Icon55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/Icon55.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/Icon86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/Icon86@2x.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/Icon88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/Icon88.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/Icon96@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/Icon96@2x.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/GalanceIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/GalanceIcon.imageset/Contents.json -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/MoveMoneyIcon.imageset/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/MoveMoneyIcon.imageset/move.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/ReceiveMoneyIcon.imageset/recv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/ReceiveMoneyIcon.imageset/recv.png -------------------------------------------------------------------------------- /WatchApp/Assets.xcassets/SentMoneyIcon.imageset/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Assets.xcassets/SentMoneyIcon.imageset/send.png -------------------------------------------------------------------------------- /WatchApp/Base.lproj/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Base.lproj/Interface.storyboard -------------------------------------------------------------------------------- /WatchApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/Info.plist -------------------------------------------------------------------------------- /WatchApp/LoadingIndicator.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/LoadingIndicator.xcassets/Contents.json -------------------------------------------------------------------------------- /WatchApp/ar.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/ar.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/bg.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/bg.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/ca.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/ca.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/cs.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/cs.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/da.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/da.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/de.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/de.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/el.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/el.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/en.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/en.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/eo.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/eo.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/es.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/es.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/et.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/et.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/fa.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/fa.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/fi.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/fi.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/fil.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/fil.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/fr.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/fr.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/hr.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/hr.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/hu.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/hu.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/id.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/id.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/it.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/it.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/ja.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/ja.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/ko.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/ko.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/mk.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/mk.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/ms.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/ms.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/nb.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/nb.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/nl.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/nl.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/pl.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/pl.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/pt.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/pt.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/ro.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/ro.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/ru.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/ru.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/sk.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/sk.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/sl.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/sl.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/sl_SI.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/sl_SI.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/sq.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/sq.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/sr.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/sr.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/sv.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/sv.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/th.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/th.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/tr.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/tr.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/uk.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/uk.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/vi.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/vi.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/zh-Hans.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/zh-Hans.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/zh-Hant-TW.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/zh-Hant-TW.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/zh.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/zh.lproj/Interface.strings -------------------------------------------------------------------------------- /WatchApp/zh_TW.lproj/Interface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/WatchApp/zh_TW.lproj/Interface.strings -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Deliverfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/Deliverfile.swift -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/SnapshotHelper.swift -------------------------------------------------------------------------------- /fastlane/metadata/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/app_icon.jpg -------------------------------------------------------------------------------- /fastlane/metadata/ar/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ar/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ar/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ar/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/bg/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/bg/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/bg/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/bg/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/ca/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ca/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ca/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ca/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | 2019 The Dash Foundation 2 | -------------------------------------------------------------------------------- /fastlane/metadata/cs/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/cs/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/cs/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/cs/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/da/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/da/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/da/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/da/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/de-DE/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/de-DE/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/name.txt: -------------------------------------------------------------------------------- 1 | Dash Wallet 2 | -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/privacy_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/de-DE/privacy_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/de-DE/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/subtitle.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/de-DE/support_url.txt: -------------------------------------------------------------------------------- 1 | https://support.dash.org 2 | -------------------------------------------------------------------------------- /fastlane/metadata/de/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/de/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/de/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/de/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/el/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/el/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/el/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/el/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/name.txt: -------------------------------------------------------------------------------- 1 | Dash Wallet 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/en-US/privacy_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/en-US/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | https://support.dash.org 2 | -------------------------------------------------------------------------------- /fastlane/metadata/eo/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/eo/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/eo/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/eo/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/es-ES/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/es-ES/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/name.txt: -------------------------------------------------------------------------------- 1 | Dash Wallet 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/privacy_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/es-ES/privacy_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/es-ES/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/subtitle.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/support_url.txt: -------------------------------------------------------------------------------- 1 | https://support.dash.org 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/es/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/es/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/es/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/et/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/et/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/et/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/et/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/fa/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fa/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/fa/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fa/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/fi/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fi/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/fi/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fi/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/fil/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fil/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/fil/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fil/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fr-FR/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fr-FR/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/name.txt: -------------------------------------------------------------------------------- 1 | Dash Wallet 2 | -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/privacy_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fr-FR/privacy_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fr-FR/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/subtitle.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/fr-FR/support_url.txt: -------------------------------------------------------------------------------- 1 | https://support.dash.org 2 | -------------------------------------------------------------------------------- /fastlane/metadata/fr/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fr/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/fr/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/fr/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/hr/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/hr/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/hr/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/hr/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/hu/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/hu/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/hu/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/hu/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/id/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/id/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/id/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/id/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/it/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/it/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/it/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/it/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/ja/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ja/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ja/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ja/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/ko/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ko/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ko/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ko/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/ko/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/name.txt: -------------------------------------------------------------------------------- 1 | Dash Wallet 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/privacy_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ko/privacy_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/ko/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ko/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/ko/subtitle.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/support_url.txt: -------------------------------------------------------------------------------- 1 | https://support.dash.org 2 | -------------------------------------------------------------------------------- /fastlane/metadata/mk/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/mk/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/mk/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/mk/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/ms/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ms/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ms/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ms/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/nb/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/nb/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/nb/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/nb/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/nl/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/nl/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/nl/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/nl/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/pl/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/pl/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/pl/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/pl/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | MZGenre.Finance 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/pt/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/pt/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/pt/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/pt/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/review_information/demo_password.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/demo_user.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/email_address.txt: -------------------------------------------------------------------------------- 1 | sam@dash.org 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/first_name.txt: -------------------------------------------------------------------------------- 1 | Samuel 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/last_name.txt: -------------------------------------------------------------------------------- 1 | Westrich 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/review_information/notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/review_information/phone_number.txt: -------------------------------------------------------------------------------- 1 | +66654930710 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ro/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ro/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ro/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ro/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/ru/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ru/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ru/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ru/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/ru/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/name.txt: -------------------------------------------------------------------------------- 1 | Dash Wallet 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/privacy_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ru/privacy_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/ru/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/ru/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/ru/subtitle.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/support_url.txt: -------------------------------------------------------------------------------- 1 | https://support.dash.org 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | MZGenre.Reference 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/sk/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sk/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/sk/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sk/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/sl/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sl/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/sl/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sl/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/sl_SI/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sl_SI/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/sl_SI/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sl_SI/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/sq/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sq/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/sq/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sq/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/sr/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sr/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/sr/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sr/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/sv/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sv/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/sv/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/sv/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/th/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/th/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/th/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/th/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/tr/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/tr/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tr/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/tr/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/address_line1.txt: -------------------------------------------------------------------------------- 1 | 1846 E Innovation Park Dr Ste 100 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/address_line2.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/address_line3.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/city_name.txt: -------------------------------------------------------------------------------- 1 | Oro Valley 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/country.txt: -------------------------------------------------------------------------------- 1 | United States 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/email_address.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/first_name.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/is_displayed_on_app_store.txt: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/last_name.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/phone_number.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/postal_code.txt: -------------------------------------------------------------------------------- 1 | 85755 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/state.txt: -------------------------------------------------------------------------------- 1 | Arizona 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/trade_name.txt: -------------------------------------------------------------------------------- 1 | The Dash Foundation, Inc. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/uk/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/uk/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/uk/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/uk/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/vi/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/vi/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/vi/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/vi/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/watch_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/watch_icon.jpg -------------------------------------------------------------------------------- /fastlane/metadata/zh/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/zh/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/zh/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/zh/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/zh_TW/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/zh_TW/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/zh_TW/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/fastlane/metadata/zh_TW/release_notes.txt -------------------------------------------------------------------------------- /scripts/convert_strings_to_utf8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/scripts/convert_strings_to_utf8.sh -------------------------------------------------------------------------------- /scripts/dashsync_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/scripts/dashsync_version.sh -------------------------------------------------------------------------------- /scripts/icon_versioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/dashwallet-ios/HEAD/scripts/icon_versioning.sh --------------------------------------------------------------------------------