├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── ux-report.md └── pull_request_template.md ├── .gitignore ├── .swiftlint.yml ├── .swiftlint_tests.yml ├── BACKGROUND_SYNCING.md ├── CHANGELOG.md ├── CODE_REVIEW_GUIDELINES.md ├── CODE_STRUCTURE.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SWIFTLINT.md ├── docs ├── Architecture.md ├── CODING_GUIDELINES.md ├── README.md └── testing │ ├── local_coverage.md │ └── manual_testing │ └── README.md ├── images ├── coverage_percent.png ├── indentation.png ├── locating_coverage.png ├── project_settings.png ├── swiftlint-warning.png ├── trailing-whitespace.png └── xcode-jump-bar.png ├── modules ├── .gitignore ├── .swiftpm │ └── xcode │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── AddressDetails.xcscheme │ │ ├── AppVersion.xcscheme │ │ ├── AudioServices.xcscheme │ │ ├── BalanceBreakdown.xcscheme │ │ ├── DeeplinkWarning.xcscheme │ │ ├── Home.xcscheme │ │ ├── ImportWallet 1.xcscheme │ │ ├── ImportWallet.xcscheme │ │ ├── OnboardingFlow.xcscheme │ │ ├── Profile.xcscheme │ │ ├── RecoveryPhraseDisplay.xcscheme │ │ ├── Root.xcscheme │ │ ├── Scan.xcscheme │ │ ├── SecurityWarning.xcscheme │ │ ├── SendFlow.xcscheme │ │ ├── Settings.xcscheme │ │ ├── SwapAndPayForm 1.xcscheme │ │ ├── SwapAndPayForm.xcscheme │ │ ├── Tabs.xcscheme │ │ ├── TransactionList.xcscheme │ │ ├── UIComponents 1.xcscheme │ │ ├── UIComponents.xcscheme │ │ ├── UserPreferencesStorage.xcscheme │ │ └── Welcome.xcscheme ├── Package.resolved ├── Package.swift ├── Sources │ ├── Dependencies │ │ ├── AddressBookClient │ │ │ ├── AddressBookContacts.swift │ │ │ ├── AddressBookEncryption.swift │ │ │ ├── AddressBookInterface.swift │ │ │ ├── AddressBookLiveKey.swift │ │ │ ├── Contact.swift │ │ │ └── Migration │ │ │ │ └── ABv1.swift │ │ ├── AppVersion │ │ │ ├── AppVersionInterface.swift │ │ │ ├── AppVersionLiveKey.swift │ │ │ └── AppVersionMocks.swift │ │ ├── AudioServices │ │ │ ├── AudioServicesInterface.swift │ │ │ ├── AudioServicesLiveKey.swift │ │ │ └── AudioServicesTestKey.swift │ │ ├── AutolockHandler │ │ │ ├── AutolockHandlerInterface.swift │ │ │ ├── AutolockHandlerLiveKey.swift │ │ │ └── AutolockHandlerTestKey.swift │ │ ├── BalanceFormatter │ │ │ ├── BalanceFormatterInterface.swift │ │ │ ├── BalanceFormatterLiveKey.swift │ │ │ ├── BalanceFormatterTestKey.swift │ │ │ └── ZatoshiStringRepresentation.swift │ │ ├── CaptureDevice │ │ │ ├── CaptureDeviceInterface.swift │ │ │ ├── CaptureDeviceLiveKey.swift │ │ │ └── CaptureDeviceTestKey.swift │ │ ├── DatabaseFiles │ │ │ ├── DatabaseFiles.swift │ │ │ ├── DatabaseFilesInterface.swift │ │ │ ├── DatabaseFilesLiveKey.swift │ │ │ └── DatabaseFilesTestKey.swift │ │ ├── Date │ │ │ ├── DateInterface.swift │ │ │ ├── DateLiveKey.swift │ │ │ └── DateTestKey.swift │ │ ├── Deeplink │ │ │ ├── Deeplink.swift │ │ │ ├── DeeplinkInterface.swift │ │ │ ├── DeeplinkLiveKey.swift │ │ │ └── DeeplinkTestKey.swift │ │ ├── DerivationTool │ │ │ ├── DerivationToolInterface.swift │ │ │ ├── DerivationToolLiveKey.swift │ │ │ └── DerivationToolTestKey.swift │ │ ├── DiskSpaceChecker │ │ │ ├── DiskSpaceChecker.swift │ │ │ ├── DiskSpaceCheckerInterface.swift │ │ │ ├── DiskSpaceCheckerLiveKey.swift │ │ │ ├── DiskSpaceCheckerMocks.swift │ │ │ └── DiskSpaceCheckerTestKey.swift │ │ ├── ExchangeRate │ │ │ ├── ExchangeRateInterface.swift │ │ │ ├── ExchangeRateLiveKey.swift │ │ │ └── ExchangeRateTestKey.swift │ │ ├── FeedbackGenerator │ │ │ ├── FeedbackGeneratorInterface.swift │ │ │ ├── FeedbackGeneratorLiveKey.swift │ │ │ └── FeedbackGeneratorTestKey.swift │ │ ├── FileManager │ │ │ ├── FileManagerInterface.swift │ │ │ ├── FileManagerLiveKey.swift │ │ │ └── FileManagerTestKey.swift │ │ ├── FlexaHandler │ │ │ ├── FlexaHandlerInterface.swift │ │ │ ├── FlexaHandlerLiveKey.swift │ │ │ └── FlexaHandlerTestKey.swift │ │ ├── KeystoneHandler │ │ │ ├── KeystoneHandlerInterface.swift │ │ │ ├── KeystoneHandlerLiveKey.swift │ │ │ └── KeystoneHandlerTestKey.swift │ │ ├── LocalAuthenticationHandler │ │ │ ├── LocalAuthenticationInterface.swift │ │ │ ├── LocalAuthenticationLiveKey.swift │ │ │ ├── LocalAuthenticationMocks.swift │ │ │ └── LocalAuthenticationTestKey.swift │ │ ├── LogsHandler │ │ │ ├── LogsHandlerInterface.swift │ │ │ ├── LogsHandlerLive.swift │ │ │ └── LogsHandlerTest.swift │ │ ├── MnemonicClient │ │ │ ├── MnemonicInterface.swift │ │ │ ├── MnemonicLiveKey.swift │ │ │ ├── MnemonicMocks.swift │ │ │ └── MnemonicTestKey.swift │ │ ├── NetworkMonitor │ │ │ ├── NetworkMonitorInterface.swift │ │ │ └── NetworkMonitorLiveKey.swift │ │ ├── NumberFormatter │ │ │ ├── NumberFormatterInterface.swift │ │ │ ├── NumberFormatterLiveKey.swift │ │ │ └── NumberFormatterTestKey.swift │ │ ├── PartnerKeys │ │ │ └── PartnerKeys.swift │ │ ├── Pasteboard │ │ │ ├── PasteboardInterface.swift │ │ │ ├── PasteboardLiveKey.swift │ │ │ └── PasteboardTestKey.swift │ │ ├── QRImageDetector │ │ │ ├── QRImageDetectorInterface.swift │ │ │ ├── QRImageDetectorLiveKey.swift │ │ │ └── QRImageDetectorTestKey.swift │ │ ├── ReadTransactionsStorage │ │ │ ├── ReadTransactionsStorageInterface.swift │ │ │ ├── ReadTransactionsStorageLiveKey.swift │ │ │ └── ReadTransactionsStorageTestKey.swift │ │ ├── RemoteStorage │ │ │ ├── RemoteStorageInterface.swift │ │ │ └── RemoteStorageLiveKey.swift │ │ ├── ReviewRequest │ │ │ ├── ReviewRequestInterface.swift │ │ │ ├── ReviewRequestLiveKey.swift │ │ │ └── ReviewRequestTestKey.swift │ │ ├── SDKSynchronizer │ │ │ ├── SDKSynchronizerInterface.swift │ │ │ ├── SDKSynchronizerLive.swift │ │ │ └── SDKSynchronizerTest.swift │ │ ├── SecItem │ │ │ ├── SecItemInterface.swift │ │ │ └── SecItemLive.swift │ │ ├── ShieldingProcessor │ │ │ ├── ShieldingProcessorInterface.swift │ │ │ └── ShieldingProcessorLiveKey.swift │ │ ├── SupportDataGenerator │ │ │ ├── SupportDataGenerator.swift │ │ │ ├── SupportDataGeneratorInterface.swift │ │ │ ├── SupportDataGeneratorLiveKey.swift │ │ │ └── SupportDataGeneratorTestKey.swift │ │ ├── SwapAndPay │ │ │ ├── SwapAndPayInterface.swift │ │ │ ├── SwapAndPayLiveKey.swift │ │ │ ├── models │ │ │ │ ├── SwapAsset.swift │ │ │ │ ├── SwapDetails.swift │ │ │ │ ├── SwapQuote.swift │ │ │ │ ├── SwapQuoteRequest.swift │ │ │ │ └── SwapSubmitHash.swift │ │ │ └── sources │ │ │ │ └── Near1Click.swift │ │ ├── TaxExporter │ │ │ ├── TaxExporterInterface.swift │ │ │ └── TaxExporterLiveKey.swift │ │ ├── URIParser │ │ │ ├── RequestPaymentParser.swift │ │ │ ├── URIParser.swift │ │ │ ├── URIParserInterface.swift │ │ │ ├── URIParserLive.swift │ │ │ └── URIParserTest.swift │ │ ├── UserDefaults │ │ │ ├── UserDefaultsInterface.swift │ │ │ ├── UserDefaultsLiveKey.swift │ │ │ └── UserDefaultsTestKey.swift │ │ ├── UserMetadataProvider │ │ │ ├── Migration │ │ │ │ ├── UMv1.swift │ │ │ │ └── UMv2.swift │ │ │ ├── UMSerialization.swift │ │ │ ├── UserMetadataProviderInterface.swift │ │ │ ├── UserMetadataProviderLiveKey.swift │ │ │ └── UserMetadataStorage.swift │ │ ├── UserPreferencesStorage │ │ │ ├── UserPreferencesStorage.swift │ │ │ ├── UserPreferencesStorageInterface.swift │ │ │ ├── UserPreferencesStorageLive.swift │ │ │ └── UserPreferencesStorageMocks.swift │ │ ├── WalletConfigProvider │ │ │ ├── UserDefaultsWalletConfigStorage.swift │ │ │ ├── WalletConfigProvider.swift │ │ │ ├── WalletConfigProviderInterface.swift │ │ │ ├── WalletConfigProviderLiveKey.swift │ │ │ └── WalletConfigProviderTestKey.swift │ │ ├── WalletStorage │ │ │ ├── WalletStorage.swift │ │ │ ├── WalletStorageInterface.swift │ │ │ ├── WalletStorageLiveKey.swift │ │ │ └── WalletStorageTestKey.swift │ │ ├── WhatsNewProvider │ │ │ ├── WhatsNewProviderInterface.swift │ │ │ ├── WhatsNewProviderLiveKey.swift │ │ │ └── WhatsNewProviderTestKey.swift │ │ └── ZcashSDKEnvironment │ │ │ ├── ZcashSDKEnvironmentInterface.swift │ │ │ ├── ZcashSDKEnvironmentLiveKey.swift │ │ │ └── ZcashSDKEnvironmentTestKey.swift │ ├── Features │ │ ├── About │ │ │ ├── AboutStore.swift │ │ │ └── AboutView.swift │ │ ├── AddKeystoneHWWallet │ │ │ ├── AccountsSelectionView.swift │ │ │ ├── AddHWWalletStore.swift │ │ │ └── AddHWWalletView.swift │ │ ├── AddressBook │ │ │ ├── AddressBookContactView.swift │ │ │ ├── AddressBookSheets.swift │ │ │ ├── AddressBookStore.swift │ │ │ └── AddressBookView.swift │ │ ├── AddressDetails │ │ │ ├── AddressDetailsStore.swift │ │ │ └── AddressDetailsView.swift │ │ ├── BalanceBreakdown │ │ │ ├── BalancesStore.swift │ │ │ └── BalancesView.swift │ │ ├── CoordFlows │ │ │ ├── AddKeystoneHWWalletCoordFlowCoordinator.swift │ │ │ ├── AddKeystoneHWWalletCoordFlowStore.swift │ │ │ ├── AddKeystoneHWWalletCoordFlowView.swift │ │ │ ├── RequestZecCoordFlowCoordinator.swift │ │ │ ├── RequestZecCoordFlowStore.swift │ │ │ ├── RequestZecCoordFlowView.swift │ │ │ ├── RestoreWalletCoordFlowCoordinator.swift │ │ │ ├── RestoreWalletCoordFlowStore.swift │ │ │ ├── RestoreWalletCoordFlowView.swift │ │ │ ├── ScanCoordFlowCoordinator.swift │ │ │ ├── ScanCoordFlowStore.swift │ │ │ ├── ScanCoordFlowView.swift │ │ │ ├── SendCoordFlowCoordinator.swift │ │ │ ├── SendCoordFlowStore.swift │ │ │ ├── SendCoordFlowView.swift │ │ │ ├── SignWithKeystoneCoordFlowCoordinator.swift │ │ │ ├── SignWithKeystoneCoordFlowStore.swift │ │ │ ├── SignWithKeystoneCoordFlowView.swift │ │ │ ├── SwapAndPayCoordFlowCoordinator.swift │ │ │ ├── SwapAndPayCoordFlowStore.swift │ │ │ ├── SwapAndPayCoordFlowView.swift │ │ │ ├── TransactionsCoordFlowCoordinator.swift │ │ │ ├── TransactionsCoordFlowStore.swift │ │ │ ├── TransactionsCoordFlowView.swift │ │ │ ├── WalletBackupCoordFlowCoordinator.swift │ │ │ ├── WalletBackupCoordFlowStore.swift │ │ │ └── WalletBackupCoordFlowView.swift │ │ ├── CurrencyConversionSetup │ │ │ ├── CurrencyConversionSetupStore.swift │ │ │ └── CurrencyConversionSetupView.swift │ │ ├── DeeplinkWarning │ │ │ ├── DeeplinkWarningStore.swift │ │ │ └── DeeplinkWarningView.swift │ │ ├── DeleteWallet │ │ │ ├── DeleteWalletStore.swift │ │ │ └── DeleteWalletView.swift │ │ ├── ExportLogs │ │ │ ├── ExportLogs.swift │ │ │ └── ExportLogsStore.swift │ │ ├── ExportTransactionHistory │ │ │ ├── ExportTransactionHistoryStore.swift │ │ │ └── ExportTransactionHistoryView.swift │ │ ├── Home │ │ │ ├── GlobalNavBar.swift │ │ │ ├── HomeStore.swift │ │ │ ├── HomeView.swift │ │ │ ├── MoreSheet.swift │ │ │ ├── SendSelectSheet.swift │ │ │ └── WalletAccountsSheet.swift │ │ ├── NotEnoughFreeSpace │ │ │ ├── NotEnoughFreeSpaceStore.swift │ │ │ └── NotEnoughFreeSpaceView.swift │ │ ├── OSStatusError │ │ │ ├── OSStatusErrorStore.swift │ │ │ └── OSStatusErrorView.swift │ │ ├── OnboardingFlow │ │ │ ├── OnboardingFlowStore.swift │ │ │ └── PlainOnboardingView.swift │ │ ├── PartialProposalError │ │ │ ├── PartialProposalErrorStore.swift │ │ │ └── PartialProposalErrorView.swift │ │ ├── PrivateDataConsent │ │ │ ├── PrivateDataConsentStore.swift │ │ │ └── PrivateDataConsentView.swift │ │ ├── Receive │ │ │ ├── ReceiveCoordinator.swift │ │ │ ├── ReceiveStore.swift │ │ │ └── ReceiveView.swift │ │ ├── RecoveryPhraseDisplay │ │ │ ├── RecoveryPhraseDisplayStore.swift │ │ │ ├── RecoveryPhraseDisplayView.swift │ │ │ └── RecoveryPhraseSecurityView.swift │ │ ├── RequestZec │ │ │ ├── RequestZecStore.swift │ │ │ ├── RequestZecSummaryView.swift │ │ │ └── RequestZecView.swift │ │ ├── RestoreInfo │ │ │ ├── RestoreInfoStore.swift │ │ │ └── RestoreInfoView.swift │ │ ├── Root │ │ │ ├── RootAddressBook.swift │ │ │ ├── RootCheckFunds.swift │ │ │ ├── RootCoordinator.swift │ │ │ ├── RootDebug.swift │ │ │ ├── RootDestination.swift │ │ │ ├── RootInitialization.swift │ │ │ ├── RootShieldingProcessor.swift │ │ │ ├── RootStore.swift │ │ │ ├── RootSwaps.swift │ │ │ ├── RootTorInitCheck.swift │ │ │ ├── RootTransactions.swift │ │ │ ├── RootUserMetadata.swift │ │ │ └── RootView.swift │ │ ├── Scan │ │ │ ├── ScanChecker.swift │ │ │ ├── ScanStore.swift │ │ │ ├── ScanView.swift │ │ │ └── UIKitBridge │ │ │ │ ├── QRCodeScanView.swift │ │ │ │ ├── ScanUIView.swift │ │ │ │ └── ZashiImagePicker.swift │ │ ├── SendConfirmation │ │ │ ├── FailureView.swift │ │ │ ├── PreSendingFailureView.swift │ │ │ ├── RequestPaymentConfirmationView.swift │ │ │ ├── ResubmissionView.swift │ │ │ ├── SendConfirmationStore.swift │ │ │ ├── SendConfirmationView.swift │ │ │ ├── SendRejectSheet.swift │ │ │ ├── SendingView.swift │ │ │ ├── SignWithKeystoneView.swift │ │ │ └── SuccessView.swift │ │ ├── SendFeedback │ │ │ ├── SendFeedbackStore.swift │ │ │ └── SendFeedbackView.swift │ │ ├── SendForm │ │ │ ├── SendFormSheets.swift │ │ │ ├── SendFormStore.swift │ │ │ └── SendFormView.swift │ │ ├── ServerSetup │ │ │ ├── ServerSetupStore.swift │ │ │ └── ServerSetupView.swift │ │ ├── Settings │ │ │ ├── AdvancedSettingsStore.swift │ │ │ ├── AdvancedSettingsView.swift │ │ │ ├── SettingsCoordinator.swift │ │ │ ├── SettingsStore.swift │ │ │ └── SettingsView.swift │ │ ├── SmartBanner │ │ │ ├── SmartBannerContent.swift │ │ │ ├── SmartBannerHelpSheet.swift │ │ │ ├── SmartBannerStore.swift │ │ │ └── SmartBannerView.swift │ │ ├── SwapAndPayForm │ │ │ ├── CrossPayConfirmationView.swift │ │ │ ├── CrossPayForm.swift │ │ │ ├── SwapAndPayForm.swift │ │ │ ├── SwapAndPayOptInForcedView.swift │ │ │ ├── SwapAndPayOptInView.swift │ │ │ ├── SwapAndPaySheets.swift │ │ │ ├── SwapAndPayStore.swift │ │ │ ├── SwapComponents.swift │ │ │ ├── SwapForm.swift │ │ │ └── SwapToZecSummaryView.swift │ │ ├── TorSetup │ │ │ ├── TorSetupStore.swift │ │ │ └── TorSetupView.swift │ │ ├── TransactionDetails │ │ │ ├── AnnotationSheet.swift │ │ │ ├── SwapComponents.swift │ │ │ ├── TransactionDetailsStore.swift │ │ │ └── TransactionDetailsView.swift │ │ ├── TransactionList │ │ │ ├── TransactionListStore.swift │ │ │ └── TransactionListView.swift │ │ ├── TransactionsManager │ │ │ ├── FiltersSheet.swift │ │ │ ├── TransactionsManagerStore.swift │ │ │ └── TransactionsManagerView.swift │ │ ├── WalletBalances │ │ │ ├── WalletBalancesStore.swift │ │ │ └── WalletBalancesView.swift │ │ ├── WalletBirthday │ │ │ ├── WalletBirthdayEstimateDateView.swift │ │ │ ├── WalletBirthdayEstimatedHeightView.swift │ │ │ ├── WalletBirthdayStore.swift │ │ │ └── WalletBirthdayView.swift │ │ ├── Welcome │ │ │ ├── WelcomeStore.swift │ │ │ └── WelcomeView.swift │ │ ├── WhatsNew │ │ │ ├── WhatsNewStore.swift │ │ │ └── WhatsNewView.swift │ │ └── ZecKeyboard │ │ │ ├── ZecKeyboardStore.swift │ │ │ └── ZecKeyboardView.swift │ ├── Generated │ │ ├── DesignSystem.swift │ │ ├── Fonts+Generated.swift │ │ ├── L10n.swift │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── Brandmarks │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── brandmarkKeystone.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── brandmarkKeystone.png │ │ │ │ │ ├── brandmarkLow.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── brandmarkLowDark.png │ │ │ │ │ │ └── brandmarkLowLight.png │ │ │ │ │ ├── brandmarkMax.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── brandmarkMaxDark.png │ │ │ │ │ │ └── brandmarkMaxLight.png │ │ │ │ │ ├── brandmarkMaxBranded.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── brandmarkMaxBranded.png │ │ │ │ │ └── brandmarkQR.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── brandmarkQRDark.png │ │ │ │ │ │ └── brandmarkQRLight.png │ │ │ │ ├── Contents.json │ │ │ │ ├── Fly.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── fly.png │ │ │ │ ├── FlyReceived.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── flyReceived.png │ │ │ │ ├── Illustrations │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── cone.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── cone.png │ │ │ │ │ ├── connect.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── connect.png │ │ │ │ │ │ └── connectDark.png │ │ │ │ │ ├── emptyState.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Empty State2 1 (1).png │ │ │ │ │ │ └── Empty State2 1.png │ │ │ │ │ ├── failure1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── failure1.png │ │ │ │ │ │ └── failure1D.png │ │ │ │ │ ├── failure2.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── failure2.png │ │ │ │ │ │ └── failure2D.png │ │ │ │ │ ├── failure3.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── failure3.png │ │ │ │ │ │ └── failure3D.png │ │ │ │ │ ├── lightning.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── lightning.png │ │ │ │ │ │ └── lightningDark.png │ │ │ │ │ ├── resubmission1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── resubmission1.png │ │ │ │ │ │ └── resubmission1D.png │ │ │ │ │ ├── resubmission2.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── resubmission2.png │ │ │ │ │ │ └── resubmission2D.png │ │ │ │ │ ├── success1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── success1.png │ │ │ │ │ │ └── success1D.png │ │ │ │ │ └── success2.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── success2.png │ │ │ │ │ │ └── success2D.png │ │ │ │ ├── Partners │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── NearLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── NearLogo.png │ │ │ │ │ │ └── NearLogo2.png │ │ │ │ │ ├── coinbase.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── coinbase.png │ │ │ │ │ ├── coinbaseDisabled.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── coinbaseDisabled.png │ │ │ │ │ ├── coinbaseSeeklogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── coinbaseSeeklogo.png │ │ │ │ │ ├── coinbaseSeeklogoDisabled.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── coinbaseSeeklogoDisabled.png │ │ │ │ │ ├── flexa.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flexa.png │ │ │ │ │ ├── flexaDisabled.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flexaDisabled.png │ │ │ │ │ ├── flexaSeekLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flexaSeekLogo.png │ │ │ │ │ ├── flexaSeeklogoDisabled.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flexaSeeklogoDisabled.png │ │ │ │ │ ├── keystone.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── keystoneDark.png │ │ │ │ │ │ └── keystoneLight.png │ │ │ │ │ ├── keystoneLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── keystoneLogo 1.png │ │ │ │ │ │ └── keystoneLogo.png │ │ │ │ │ ├── keystonePromo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── keystonePromo4.png │ │ │ │ │ ├── keystoneSeekLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── keystoneSeekDark.png │ │ │ │ │ │ └── keystoneSeekLight.png │ │ │ │ │ ├── keystoneTitleLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── keystoneTitleLogo.png │ │ │ │ │ │ └── ksDark.png │ │ │ │ │ ├── payWithNear.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── payWithNear.png │ │ │ │ │ ├── payWithNearDisabled.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── payWithNearDisabled.png │ │ │ │ │ ├── swapAndPay.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── swapAndPay.png │ │ │ │ │ └── torLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── torLogo.png │ │ │ │ ├── SplashHi.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Text.png │ │ │ │ │ └── splashHi.png │ │ │ │ ├── Tickers │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── near.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── near.png │ │ │ │ │ ├── nearChain.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── near2.png │ │ │ │ │ │ └── near2black 1.png │ │ │ │ │ └── none.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── tickerPlaceholder.png │ │ │ │ ├── WelcomeScreenLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── zashiDark.png │ │ │ │ │ └── zashiLight.png │ │ │ │ ├── ZashiLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── zashiLogo.png │ │ │ │ ├── alertIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── alertIcon.png │ │ │ │ ├── arrowLeftLong.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrowLeft.png │ │ │ │ ├── buttonCloseX.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── x-close.png │ │ │ │ ├── check.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── checkIcon.png │ │ │ │ ├── chevronDown.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chevronDown.png │ │ │ │ ├── chevronRight.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chevronRight.png │ │ │ │ ├── chevronUp.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chevronDown.png │ │ │ │ ├── convertIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── convertIcon.png │ │ │ │ ├── copy.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── copy-01.png │ │ │ │ ├── eyeOff.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── eye-off.png │ │ │ │ ├── eyeOn.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── eye.png │ │ │ │ ├── flyReceivedFilled.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── flyReceivedFilled.png │ │ │ │ ├── icons │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── alertCircle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── alertCircle.png │ │ │ │ │ ├── alertOutline.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── alertOutline.png │ │ │ │ │ ├── alertTriangle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── alertTriangle.png │ │ │ │ │ ├── archive.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── archive.png │ │ │ │ │ ├── arrowDown.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── arrowDown.png │ │ │ │ │ ├── arrowNarrowLeft.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── arrowNarrowLeft.png │ │ │ │ │ ├── arrowRight.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── arrowRight.png │ │ │ │ │ ├── arrowUp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── arrowUp.png │ │ │ │ │ ├── authKey.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── key.png │ │ │ │ │ ├── bookmark.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── bookmark.png │ │ │ │ │ ├── bookmarkCheck.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── bookmarkCheck.png │ │ │ │ │ ├── calendar.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── calendar.png │ │ │ │ │ ├── coinsHand.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── coinsHand.png │ │ │ │ │ ├── coinsSwap.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── coinsSwap.png │ │ │ │ │ ├── connectWallet.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── connectWallet.png │ │ │ │ │ ├── cryptocurrency.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── cryptocurrency.png │ │ │ │ │ ├── currencyDollar.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── currencyDollar.png │ │ │ │ │ ├── currencyZec.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── currencyZec.png │ │ │ │ │ ├── delete.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── delete.png │ │ │ │ │ ├── dotsMenu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── dotsMenu.png │ │ │ │ │ ├── downloadCloud.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── downloadCloud.png │ │ │ │ │ ├── emptyShield.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── emptyShield.png │ │ │ │ │ ├── expand.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── expand.png │ │ │ │ │ ├── file.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── file.png │ │ │ │ │ ├── filter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── filter.png │ │ │ │ │ ├── flashOff.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flashOff.png │ │ │ │ │ ├── flashOn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flashOn.png │ │ │ │ │ ├── help.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── help.png │ │ │ │ │ ├── imageLibrary.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── imageLibrary.png │ │ │ │ │ ├── integrations.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── integrations.png │ │ │ │ │ ├── key.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── key.png │ │ │ │ │ ├── loading.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── loading.png │ │ │ │ │ ├── lockLocked.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── lockLocked.png │ │ │ │ │ ├── lockUnlocked.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── lockUnlocked.png │ │ │ │ │ ├── logOut.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logOut.png │ │ │ │ │ ├── magicWand.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── magicWand.png │ │ │ │ │ ├── menu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── menu.png │ │ │ │ │ ├── messageSmile.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── messageSmile.png │ │ │ │ │ ├── noMessage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── noMessage.png │ │ │ │ │ ├── noTransactions.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── noTransactions.png │ │ │ │ │ ├── partial.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── partial.png │ │ │ │ │ │ └── partialD.png │ │ │ │ │ ├── pay.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── pay.png │ │ │ │ │ ├── pencil.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── pencil.png │ │ │ │ │ ├── plus.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── plus.png │ │ │ │ │ ├── qr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── qr.png │ │ │ │ │ ├── received.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── arrow-circle-broken-down (1).png │ │ │ │ │ ├── refreshSingleCCW.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── refreshSingleCCW.png │ │ │ │ │ ├── save.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── save.png │ │ │ │ │ ├── scan.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── scan.png │ │ │ │ │ ├── search.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── search.png │ │ │ │ │ ├── sent.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── arrow-circle-broken-down (2).png │ │ │ │ │ ├── server.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── server.png │ │ │ │ │ ├── settings.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── settings.png │ │ │ │ │ ├── settings2.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── settings2.png │ │ │ │ │ ├── share.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── share.png │ │ │ │ │ ├── shieldBcg.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shieldBcg.png │ │ │ │ │ ├── shieldOff.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shieldOff.png │ │ │ │ │ ├── shieldOffSolid.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── shield-off.png │ │ │ │ │ │ └── shieldOffSolid.png │ │ │ │ │ ├── shieldTickFilled.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shieldTickFilled.png │ │ │ │ │ ├── shieldZap.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shieldZap.png │ │ │ │ │ ├── shoppingBag.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shoppingBag.png │ │ │ │ │ ├── slippage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── slippage.png │ │ │ │ │ ├── swap.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── swap.png │ │ │ │ │ ├── swapArrows.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── swapArrows.png │ │ │ │ │ ├── swapTransaction.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── swapTransaction.png │ │ │ │ │ ├── switchHorizontal.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── switchHorizontal.png │ │ │ │ │ ├── terms.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── terms.png │ │ │ │ │ ├── textInput.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── textInput.png │ │ │ │ │ ├── trIn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── trIn.png │ │ │ │ │ ├── trOut.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── trUp.png │ │ │ │ │ ├── trPaid.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── trPaid.png │ │ │ │ │ ├── user.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── user.png │ │ │ │ │ ├── userPlus.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── userPlus.png │ │ │ │ │ ├── wifiOff.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── wifiOff.png │ │ │ │ │ ├── xClose.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── xClose.png │ │ │ │ │ ├── zashiLogoSq.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── zashiBoldStroke3.png │ │ │ │ │ │ └── zashiBoldStroke3Dark.png │ │ │ │ │ └── zashiLogoSqBold.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── zashiBoldStroke2.png │ │ │ │ ├── infoCircle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── infoCircle.png │ │ │ │ ├── infoOutline.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── infoOutline.png │ │ │ │ ├── qrcodeScannerErr.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── qrcodeScannerErr.png │ │ │ │ │ └── qrcodeScannerErrDark.png │ │ │ │ ├── rateIcons.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── rateIcons.png │ │ │ │ │ └── rateIconsDark.png │ │ │ │ ├── refreshCCW.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── refreshCCW.png │ │ │ │ ├── refreshCCW2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── refreshCCW2.png │ │ │ │ ├── restoreInfo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── restoreInfo.png │ │ │ │ ├── scanMark.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── scanMark.png │ │ │ │ ├── send.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── send.png │ │ │ │ ├── shield.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shieldEmpty.png │ │ │ │ ├── shieldTick.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shieldTick.png │ │ │ │ ├── shieldedFunds.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shieldedFunds.png │ │ │ │ ├── surroundedShield.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shield.png │ │ │ │ ├── tooltip.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tooltip.png │ │ │ │ └── zashiTitle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── zashiTitle.png │ │ │ ├── Colors.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── ZDesign │ │ │ │ │ ├── Base │ │ │ │ │ │ ├── Black.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Bone.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Brand.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Concrete.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Espresso.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Midnight.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Obsidian.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Brand950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ErrorRed100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ErrorRed950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Espresso950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── HyperBlue950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Indigo950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Purple950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shark950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades00dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades01dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades02dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades03dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades04dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades06dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades08dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades12dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades16dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SharkShades24dp.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SuccessGreen950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow100.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow200.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow25.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow300.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow400.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow50.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow500.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow600.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow700.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow800.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── WarningYellow900.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── WarningYellow950.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── background.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── btnDarkShade.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── btnLabelShade.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── btnLightShade.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── btnPrimary.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── btnSecondary.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── messageBcgBorder.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── messageBcgDisabled.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── messageBcgReceived.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── pickerBcg.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── pickerSelection.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── pickerTitleSelected.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── pickerTitleUnselected.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── primary.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── restoreUI.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── secondary.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── shade30.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── shade47.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── shade55.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── shade72.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── shade85.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── shade92.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── shade97.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── splash.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── syncProgresBcg.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── Fonts │ │ │ │ ├── Inter │ │ │ │ │ ├── Inter-Black.otf │ │ │ │ │ ├── Inter-BlackItalic.otf │ │ │ │ │ ├── Inter-Bold.otf │ │ │ │ │ ├── Inter-BoldItalic.otf │ │ │ │ │ ├── Inter-ExtraBold.otf │ │ │ │ │ ├── Inter-ExtraBoldItalic.otf │ │ │ │ │ ├── Inter-ExtraLight.otf │ │ │ │ │ ├── Inter-ExtraLightItalic.otf │ │ │ │ │ ├── Inter-Italic.otf │ │ │ │ │ ├── Inter-Light.otf │ │ │ │ │ ├── Inter-LightItalic.otf │ │ │ │ │ ├── Inter-Medium.otf │ │ │ │ │ ├── Inter-MediumItalic.otf │ │ │ │ │ ├── Inter-Regular.otf │ │ │ │ │ ├── Inter-SemiBold.otf │ │ │ │ │ ├── Inter-SemiBoldItalic.otf │ │ │ │ │ ├── Inter-Thin.otf │ │ │ │ │ └── Inter-ThinItalic.otf │ │ │ │ ├── RobotoMono │ │ │ │ │ ├── RobotoMono-Bold.ttf │ │ │ │ │ ├── RobotoMono-Medium.ttf │ │ │ │ │ ├── RobotoMono-Regular.ttf │ │ │ │ │ └── RobotoMono-SemiBold.ttf │ │ │ │ └── Zboto.otf │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ └── es.lproj │ │ │ │ └── Localizable.strings │ │ ├── SharedStateKeys.swift │ │ └── XCAssets+Generated.swift │ ├── Models │ │ ├── AddressBookEncryptionKeys.swift │ │ ├── AppDelegateAction.swift │ │ ├── ChainToken.swift │ │ ├── Currency.swift │ │ ├── FeatureFlags.swift │ │ ├── InitializationState.swift │ │ ├── RecoveryPhrase.swift │ │ ├── ReminedMeTimestamp.swift │ │ ├── Spendability.swift │ │ ├── StoredWallet.swift │ │ ├── Swaps.swift │ │ ├── SyncStatusSnapshot.swift │ │ ├── TransactionState.swift │ │ ├── UserMetadataEncryptionKeys.swift │ │ ├── ValidationWord.swift │ │ ├── WalletAccount.swift │ │ └── WalletConfig.swift │ ├── UIComponents │ │ ├── Backgrounds │ │ │ ├── ListBackground.swift │ │ │ ├── NoChainPlaceholder.swift │ │ │ ├── NoTransactionPlaceholder.swift │ │ │ ├── ScreenBackground.swift │ │ │ └── VisualEffectBlur.swift │ │ ├── Badges │ │ │ ├── FloatingArrow.swift │ │ │ ├── PrivacyBadge.swift │ │ │ └── SwapBadge.swift │ │ ├── Balance │ │ │ ├── AvailableBalanceView.swift │ │ │ ├── BalanceWithIconView.swift │ │ │ ├── Picker │ │ │ │ └── ZashiPicker.swift │ │ │ └── ZatoshiRepresentationView.swift │ │ ├── Buttons │ │ │ ├── ActionRow.swift │ │ │ ├── CheckboxToggleStyle.swift │ │ │ └── ZashiButton.swift │ │ ├── Contact │ │ │ └── ContactView.swift │ │ ├── DebugMenu.swift │ │ ├── Extensions │ │ │ ├── ConditionalModifier.swift │ │ │ └── View+InnerShadow.swift │ │ ├── FontStyles │ │ │ └── SecantTextStyles.swift │ │ ├── HiddenIfSet │ │ │ └── HiddenIfSet.swift │ │ ├── Hintbox │ │ │ └── HintBoxShape.swift │ │ ├── Images │ │ │ └── ZashiImage.swift │ │ ├── Info │ │ │ └── InfoRow.swift │ │ ├── Overlays │ │ │ └── SplashView.swift │ │ ├── PreferenceKeys │ │ │ ├── BirthdayPreferenceKey.swift │ │ │ ├── ExchangeRateFeaturePreferenceKey.swift │ │ │ ├── ExchangeRateStaleTooltipPreferenceKey.swift │ │ │ ├── SizePreferenceKey.swift │ │ │ └── UnknownAddressPreferenceKey.swift │ │ ├── Progress │ │ │ ├── CircularProgressView.swift │ │ │ └── ZashiSyncingProgressStyle.swift │ │ ├── Screen │ │ │ └── ScreenHorizontalPadding.swift │ │ ├── Shapes │ │ │ ├── MessageShape.swift │ │ │ ├── Wedge.swift │ │ │ └── ZcashSymbol.swift │ │ ├── Sheets │ │ │ └── ZashiSheet.swift │ │ ├── StateWrapper │ │ │ └── StateWrapper.swift │ │ ├── Text │ │ │ ├── ConditionalFont.swift │ │ │ ├── ConditionalStrikethrough.swift │ │ │ ├── WalletStatusPanel.swift │ │ │ ├── ZashiFont.swift │ │ │ └── ZashiText.swift │ │ ├── TextFields │ │ │ ├── MessageEditor │ │ │ │ ├── MessageEditor.swift │ │ │ │ └── MessageEditorStore.swift │ │ │ └── ZashiTextField.swift │ │ ├── Toast │ │ │ └── Toast.swift │ │ ├── Toggle │ │ │ ├── DescriptiveToggle.swift │ │ │ └── ZashiToggle.swift │ │ ├── Toolbar │ │ │ ├── ToolbarAction.swift │ │ │ ├── ZashiBack.swift │ │ │ ├── ZashiBackV2.swift │ │ │ └── ZashiTitle.swift │ │ ├── Tooltip │ │ │ └── Tooltip.swift │ │ ├── Transactions │ │ │ └── TransactionRowView.swift │ │ ├── UIKitBridge │ │ │ ├── InAppBrowser.swift │ │ │ ├── UIMailDialog.swift │ │ │ └── UIShareDialog.swift │ │ ├── ZashiLogo │ │ │ └── ZashiLogo.swift │ │ └── ZcashBadge │ │ │ └── ZcashBadge.swift │ ├── Utils │ │ ├── Array+Chunked.swift │ │ ├── BalanceFormatter.swift │ │ ├── Bindings.swift │ │ ├── Clamped.swift │ │ ├── Data+Serialization.swift │ │ ├── Date+Readable.swift │ │ ├── Decimals.swift │ │ ├── LogStore.swift │ │ ├── Logging │ │ │ ├── TCALoggerReducer.swift │ │ │ └── TCALogging.swift │ │ ├── NavigationLinks.swift │ │ ├── Network.swift │ │ ├── NumberFormatter+zcash.swift │ │ ├── Previews.swift │ │ ├── QRCodeGenerator.swift │ │ ├── ScrollableWhenScaled.swift │ │ ├── SensitiveData.swift │ │ ├── Strings.swift │ │ ├── URL+empty.swift │ │ ├── WalletLogger.swift │ │ └── ZcashError+DetailedMessage.swift │ └── Vendors │ │ └── Keystone │ │ └── AnimatedQRCode.swift ├── Templates │ ├── fonts │ │ └── fonts_swift5_swiftui.stencil │ └── xcassets │ │ └── assets_swift5_swiftui.stencil └── swiftgen.yml ├── responsible_disclosure.md ├── secant-distrib-Info.plist ├── secant-distrib.entitlements ├── secant-mainnet.entitlements ├── secant.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── secant-AppStore.xcscheme │ ├── secant-mainnet.xcscheme │ ├── secant-testnet.xcscheme │ ├── zashi-internal.xcscheme │ └── zashi-testnet.xcscheme ├── secant ├── AppDelegate.swift ├── LaunchScreen.storyboard ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon-internal.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ ├── AppIcon-testnet.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ ├── Assets │ │ │ ├── $wif.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wif.png │ │ │ ├── Contents.json │ │ │ ├── aave.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aave.png │ │ │ ├── abg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── abg.png │ │ │ ├── ada.imageset │ │ │ │ ├── ADA (1).png │ │ │ │ └── Contents.json │ │ │ ├── apt.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aptos.png │ │ │ ├── arb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arb.png │ │ │ ├── aurora.imageset │ │ │ │ ├── Aurora v2.png │ │ │ │ └── Contents.json │ │ │ ├── avax.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── avax.png │ │ │ ├── bera.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 6.png │ │ │ ├── blackdragon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── blackdragon.png │ │ │ ├── bnb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bsc.png │ │ │ ├── bome.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bome.png │ │ │ ├── brett.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── brett.png │ │ │ ├── brrr.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── brrr.png │ │ │ ├── btc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── btc.png │ │ │ ├── cbbtc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cbbtc.png │ │ │ ├── cow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cow.png │ │ │ ├── dai.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dai.png │ │ │ ├── doge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── doge.png │ │ │ ├── eth.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eth.png │ │ │ ├── fms.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fms.png │ │ │ ├── frax.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frax.png │ │ │ ├── gmx.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gmx.png │ │ │ ├── gnear.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gnear.png │ │ │ ├── gno.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gnosis.png │ │ │ ├── hapi.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hapi.png │ │ │ ├── jambo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jambo.png │ │ │ ├── kaito.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kaito.png │ │ │ ├── knc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── knc.png │ │ │ ├── link.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── link.png │ │ │ ├── loud.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loud.png │ │ │ ├── melania.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── melania.png │ │ │ ├── mog.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mog.png │ │ │ ├── mpdao.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mpdao.png │ │ │ ├── near.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wnear.png │ │ │ ├── nearkat.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nearkat.png │ │ │ ├── noear.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── noear.png │ │ │ ├── op.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── op.png │ │ │ ├── pepe.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pepe.png │ │ │ ├── pol.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pol.png │ │ │ ├── public.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── public.png │ │ │ ├── purge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── purge.png │ │ │ ├── ref.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ref.png │ │ │ ├── rhea.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── rhea.png │ │ │ ├── safe.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── safe.png │ │ │ ├── shib.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shib.png │ │ │ ├── shitzu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shitzu.png │ │ │ ├── sol.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sol.png │ │ │ ├── sui.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sui.png │ │ │ ├── sweat.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sweat.png │ │ │ ├── ton.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ton.png │ │ │ ├── trump.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── trump.png │ │ │ ├── trx.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── trx.png │ │ │ ├── turbo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── turbo.png │ │ │ ├── uni.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── uni.png │ │ │ ├── usd1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── usd1.png │ │ │ ├── usdc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── usdc.png │ │ │ ├── usdf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── usdf.png │ │ │ ├── usdt.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── usdt.png │ │ │ ├── wbtc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wbtc.png │ │ │ ├── weth.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── weth.png │ │ │ ├── wnear.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wnear.png │ │ │ ├── xbtc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── xbtc.png │ │ │ ├── xdai.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── xdai.png │ │ │ ├── xlm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── xlm.png │ │ │ ├── xrp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── xrp.png │ │ │ └── zec.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── zec.png │ │ ├── Chains │ │ │ ├── Contents.json │ │ │ ├── chain_aptos.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chain-aptos.png │ │ │ ├── chain_arb.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arb.png │ │ │ ├── chain_avax.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── avax.png │ │ │ ├── chain_base.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── base.png │ │ │ ├── chain_bera.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 7.png │ │ │ ├── chain_bsc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bsc.png │ │ │ ├── chain_btc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── btc.png │ │ │ ├── chain_cardano.imageset │ │ │ │ ├── ADA (1).png │ │ │ │ └── Contents.json │ │ │ ├── chain_doge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── doge.png │ │ │ ├── chain_eth.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eth.png │ │ │ ├── chain_gnosis.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gnosis.png │ │ │ ├── chain_near.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── near2.png │ │ │ ├── chain_op.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── op.png │ │ │ ├── chain_pol.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Polygon.png │ │ │ ├── chain_sol.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sol.png │ │ │ ├── chain_stellar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chain-xlm.png │ │ │ ├── chain_sui.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sui.png │ │ │ ├── chain_ton.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ton.png │ │ │ ├── chain_tron.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── trx.png │ │ │ ├── chain_xrp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── xrp.png │ │ │ └── chain_zec.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── zec.png │ │ ├── Contents.json │ │ ├── KS_QRDynamicOverlay.imageset │ │ │ ├── Contents.json │ │ │ ├── brandmarkKeystone.png │ │ │ └── brandmarkKeystoneLight.png │ │ ├── KS_QROverlay.imageset │ │ │ ├── Contents.json │ │ │ └── brandmarkKeystoneLight.png │ │ ├── QRDynamicOverlayLow.imageset │ │ │ ├── Contents.json │ │ │ ├── brandmarkQRLowPrivacy.png │ │ │ └── brandmarkQRLowPrivacyLight.png │ │ ├── QRDynamicOverlayMax.imageset │ │ │ ├── Contents.json │ │ │ ├── brandmarkQRMaxPrivacy 1.png │ │ │ └── brandmarkQRMaxPrivacyLight.png │ │ ├── QROverlayLow.imageset │ │ │ ├── Contents.json │ │ │ └── brandmarkQRLowPrivacyLight.png │ │ ├── QROverlayMax.imageset │ │ │ ├── Contents.json │ │ │ └── brandmarkQRMaxPrivacyLight.png │ │ ├── WelcomeScreenLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── zashiDark.png │ │ │ └── zashiLight.png │ │ ├── ZashiLogo.imageset │ │ │ ├── 180 1.png │ │ │ ├── 180.png │ │ │ └── Contents.json │ │ └── zcashZecLogo.imageset │ │ │ ├── Contents.json │ │ │ └── zcash-zec-logo.png │ ├── Colors.xcassets │ │ ├── Contents.json │ │ └── launchScreenBcg.colorset │ │ │ └── Contents.json │ ├── Fonts │ │ └── Roboto │ │ │ └── LICENSE.txt │ ├── Lotties │ │ ├── sending-dark.json │ │ └── sending.json │ ├── PrivacyInfo.xcprivacy │ ├── ReadTransactionsStorageModel.xcdatamodeld │ │ └── TransactionReadUnreadM.xcdatamodel │ │ │ └── contents │ ├── WhatsNew │ │ ├── whatsNew.json │ │ └── whatsNew_es.json │ ├── en.lproj │ │ └── Localizable.strings │ └── es.lproj │ │ └── Localizable.strings ├── SecantApp.swift ├── secant-mainnet-Info.plist ├── secant-testnet-Info.plist └── zashi-testnet-Info.plist ├── secantTests ├── BackupFlowTests │ └── RecoveryPhraseBackupTests.swift ├── BalanceBreakdownTests │ └── BalanceBreakdownTests.swift ├── DeeplinkTests │ └── DeeplinkTests.swift ├── HomeTests │ ├── HomeFeatureFlagTests.swift │ └── HomeTests.swift ├── ImportWalletTests │ └── ImportWalletTests.swift ├── Info.plist ├── MultiLineTextFieldTests │ └── MultiLineTextFieldTests.swift ├── PrivateDataConsentTests │ └── PrivateDataConsentTests.swift ├── ReceiveTests │ └── ReceiveTests.swift ├── ReviewRequestTests │ └── ReviewRequestTests.swift ├── RootTests │ ├── AppInitializationTests.swift │ ├── DebugTests.swift │ ├── RestoreWalletTests.swift │ ├── RootTests.swift │ └── WalletNukeTests.swift ├── ScanTests │ └── ScanTests.swift ├── SendTests │ └── SendTests.swift ├── SensitiveDataTests │ └── SensitiveDataTests.swift ├── SettingsTests │ └── SettingsTests.swift ├── SnapshotTests │ ├── BalanceBreakdownSnapshotTests │ │ └── BalanceBreakdownSnapshotTests.swift │ ├── HomeSnapshotTests │ │ ├── HomeSnapshotTests.swift │ │ └── NotEnoughFeeSpaceSnapshots.swift │ ├── ImportWalletSnapshotTests │ │ └── ImportWalletSnapshotTests.swift │ ├── PrivateDataConsentSnapshotTests │ │ └── PrivateDataConsentSnapshotTests.swift │ ├── ReceiveSnapshotTests │ │ └── ReceiveSnapshotTests.swift │ ├── RecoveryPhraseDisplaySnapshotTests │ │ └── RecoveryPhraseDisplaySnapshotTests.swift │ ├── SecurityWarningSnapshotTests │ │ └── SecurityWarningSnapshotTests.swift │ ├── SendSnapshotTests │ │ └── TransactionSendingSnapshotTests.swift │ ├── SettingsSnapshotTests │ │ └── SettingsSnapshotTests.swift │ ├── TransactionListSnapshotTests │ │ └── TransactionListSnapshotTests.swift │ ├── View+UIImage.swift │ └── WelcomeSnapshotTests │ │ └── WelcomeSnapshotTests.swift ├── SyncProgressTests │ └── SyncProgressTests.swift ├── TabsTests │ └── TabsTests.swift ├── TransactionListTests │ ├── TransactionListTests.swift │ └── TransactionStateTests.swift ├── UtilTests │ ├── DatabaseFilesTests.swift │ ├── LoggerTests.swift │ ├── SecItemClientTests.swift │ ├── UserPreferencesStorageTests.swift │ ├── WalletStorageTests.swift │ └── ZatoshiTests.swift ├── WalletConfigProviderTests │ └── WalletConfigProviderTests.swift └── ZatoshiStringRepresentation │ ├── ZatoshiStringRepresentationCommaTests.swift │ └── ZatoshiStringRepresentationTests.swift ├── secantUITests ├── Info.plist └── secantUITests.swift ├── symlink-templates.sh ├── xctemplates └── TCA.xctemplate │ ├── EmptyCombined │ └── ___FILEBASENAME___Store.swift │ ├── EmptyCombinedgenerateViewFile │ └── ___FILEBASENAME___ │ │ ├── ___FILEBASENAME___Store.swift │ │ └── ___FILEBASENAME___View.swift │ ├── EmptyStandalone │ └── ___FILEBASENAME___Store.swift │ ├── EmptyStandalonegenerateViewFile │ └── ___FILEBASENAME___ │ │ ├── ___FILEBASENAME___Store.swift │ │ └── ___FILEBASENAME___View.swift │ ├── NavigationCombined │ └── ___FILEBASENAME___Store.swift │ ├── NavigationCombinedgenerateViewFile │ └── ___FILEBASENAME___ │ │ ├── ___FILEBASENAME___Store.swift │ │ └── ___FILEBASENAME___View.swift │ ├── NavigationStandalone │ └── ___FILEBASENAME___Store.swift │ ├── NavigationStandalonegenerateViewFile │ └── ___FILEBASENAME___ │ │ ├── ___FILEBASENAME___Store.swift │ │ └── ___FILEBASENAME___View.swift │ └── TemplateInfo.plist ├── zashi-internal-Info.plist └── zashi-internal.entitlements /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ux-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/.github/ISSUE_TEMPLATE/ux-report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftlint_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/.swiftlint_tests.yml -------------------------------------------------------------------------------- /BACKGROUND_SYNCING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/BACKGROUND_SYNCING.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_REVIEW_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/CODE_REVIEW_GUIDELINES.md -------------------------------------------------------------------------------- /CODE_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/CODE_STRUCTURE.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/README.md -------------------------------------------------------------------------------- /SWIFTLINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/SWIFTLINT.md -------------------------------------------------------------------------------- /docs/Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/docs/Architecture.md -------------------------------------------------------------------------------- /docs/CODING_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/docs/CODING_GUIDELINES.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/testing/local_coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/docs/testing/local_coverage.md -------------------------------------------------------------------------------- /docs/testing/manual_testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/docs/testing/manual_testing/README.md -------------------------------------------------------------------------------- /images/coverage_percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/images/coverage_percent.png -------------------------------------------------------------------------------- /images/indentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/images/indentation.png -------------------------------------------------------------------------------- /images/locating_coverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/images/locating_coverage.png -------------------------------------------------------------------------------- /images/project_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/images/project_settings.png -------------------------------------------------------------------------------- /images/swiftlint-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/images/swiftlint-warning.png -------------------------------------------------------------------------------- /images/trailing-whitespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/images/trailing-whitespace.png -------------------------------------------------------------------------------- /images/xcode-jump-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/images/xcode-jump-bar.png -------------------------------------------------------------------------------- /modules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.gitignore -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/AddressDetails.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/AddressDetails.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/AppVersion.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/AppVersion.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/AudioServices.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/AudioServices.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/BalanceBreakdown.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/BalanceBreakdown.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/DeeplinkWarning.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/DeeplinkWarning.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/Home.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/Home.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/ImportWallet 1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/ImportWallet 1.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/ImportWallet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/ImportWallet.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/OnboardingFlow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/OnboardingFlow.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/Profile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/Profile.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/Root.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/Root.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/Scan.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/Scan.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/SecurityWarning.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/SecurityWarning.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/SendFlow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/SendFlow.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/Settings.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/Settings.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/SwapAndPayForm 1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/SwapAndPayForm 1.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/SwapAndPayForm.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/SwapAndPayForm.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/Tabs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/Tabs.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/TransactionList.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/TransactionList.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/UIComponents 1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/UIComponents 1.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/UIComponents.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/UIComponents.xcscheme -------------------------------------------------------------------------------- /modules/.swiftpm/xcode/xcshareddata/xcschemes/Welcome.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/.swiftpm/xcode/xcshareddata/xcschemes/Welcome.xcscheme -------------------------------------------------------------------------------- /modules/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Package.resolved -------------------------------------------------------------------------------- /modules/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Package.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AddressBookClient/AddressBookContacts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AddressBookClient/AddressBookContacts.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AddressBookClient/AddressBookInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AddressBookClient/AddressBookInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AddressBookClient/AddressBookLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AddressBookClient/AddressBookLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AddressBookClient/Contact.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AddressBookClient/Contact.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AddressBookClient/Migration/ABv1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AddressBookClient/Migration/ABv1.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AppVersion/AppVersionInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AppVersion/AppVersionInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AppVersion/AppVersionLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AppVersion/AppVersionLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AppVersion/AppVersionMocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AppVersion/AppVersionMocks.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AudioServices/AudioServicesInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AudioServices/AudioServicesInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AudioServices/AudioServicesLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AudioServices/AudioServicesLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AudioServices/AudioServicesTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AudioServices/AudioServicesTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AutolockHandler/AutolockHandlerLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AutolockHandler/AutolockHandlerLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/AutolockHandler/AutolockHandlerTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/AutolockHandler/AutolockHandlerTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/CaptureDevice/CaptureDeviceInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/CaptureDevice/CaptureDeviceInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/CaptureDevice/CaptureDeviceLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/CaptureDevice/CaptureDeviceLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/CaptureDevice/CaptureDeviceTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/CaptureDevice/CaptureDeviceTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/DatabaseFiles/DatabaseFiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/DatabaseFiles/DatabaseFiles.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/DatabaseFiles/DatabaseFilesInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/DatabaseFiles/DatabaseFilesInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/DatabaseFiles/DatabaseFilesLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/DatabaseFiles/DatabaseFilesLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/DatabaseFiles/DatabaseFilesTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/DatabaseFiles/DatabaseFilesTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Date/DateInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Date/DateInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Date/DateLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Date/DateLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Date/DateTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Date/DateTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Deeplink/Deeplink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Deeplink/Deeplink.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Deeplink/DeeplinkInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Deeplink/DeeplinkInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Deeplink/DeeplinkLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Deeplink/DeeplinkLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Deeplink/DeeplinkTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Deeplink/DeeplinkTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/DerivationTool/DerivationToolInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/DerivationTool/DerivationToolInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/DerivationTool/DerivationToolLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/DerivationTool/DerivationToolLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/DerivationTool/DerivationToolTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/DerivationTool/DerivationToolTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/DiskSpaceChecker/DiskSpaceChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/DiskSpaceChecker/DiskSpaceChecker.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/DiskSpaceChecker/DiskSpaceCheckerMocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/DiskSpaceChecker/DiskSpaceCheckerMocks.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/ExchangeRate/ExchangeRateInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/ExchangeRate/ExchangeRateInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/ExchangeRate/ExchangeRateLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/ExchangeRate/ExchangeRateLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/ExchangeRate/ExchangeRateTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/ExchangeRate/ExchangeRateTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/FileManager/FileManagerInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/FileManager/FileManagerInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/FileManager/FileManagerLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/FileManager/FileManagerLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/FileManager/FileManagerTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/FileManager/FileManagerTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/FlexaHandler/FlexaHandlerInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/FlexaHandler/FlexaHandlerInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/FlexaHandler/FlexaHandlerLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/FlexaHandler/FlexaHandlerLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/FlexaHandler/FlexaHandlerTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/FlexaHandler/FlexaHandlerTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/KeystoneHandler/KeystoneHandlerLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/KeystoneHandler/KeystoneHandlerLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/KeystoneHandler/KeystoneHandlerTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/KeystoneHandler/KeystoneHandlerTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/LogsHandler/LogsHandlerInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/LogsHandler/LogsHandlerInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/LogsHandler/LogsHandlerLive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/LogsHandler/LogsHandlerLive.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/LogsHandler/LogsHandlerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/LogsHandler/LogsHandlerTest.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/MnemonicClient/MnemonicInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/MnemonicClient/MnemonicInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/MnemonicClient/MnemonicLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/MnemonicClient/MnemonicLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/MnemonicClient/MnemonicMocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/MnemonicClient/MnemonicMocks.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/MnemonicClient/MnemonicTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/MnemonicClient/MnemonicTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/NetworkMonitor/NetworkMonitorInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/NetworkMonitor/NetworkMonitorInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/NetworkMonitor/NetworkMonitorLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/NetworkMonitor/NetworkMonitorLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/NumberFormatter/NumberFormatterLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/NumberFormatter/NumberFormatterLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/NumberFormatter/NumberFormatterTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/NumberFormatter/NumberFormatterTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/PartnerKeys/PartnerKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/PartnerKeys/PartnerKeys.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Pasteboard/PasteboardInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Pasteboard/PasteboardInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Pasteboard/PasteboardLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Pasteboard/PasteboardLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/Pasteboard/PasteboardTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/Pasteboard/PasteboardTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/QRImageDetector/QRImageDetectorLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/QRImageDetector/QRImageDetectorLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/QRImageDetector/QRImageDetectorTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/QRImageDetector/QRImageDetectorTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/RemoteStorage/RemoteStorageInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/RemoteStorage/RemoteStorageInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/RemoteStorage/RemoteStorageLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/RemoteStorage/RemoteStorageLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/ReviewRequest/ReviewRequestInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/ReviewRequest/ReviewRequestInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/ReviewRequest/ReviewRequestLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/ReviewRequest/ReviewRequestLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/ReviewRequest/ReviewRequestTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/ReviewRequest/ReviewRequestTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SDKSynchronizer/SDKSynchronizerLive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SDKSynchronizer/SDKSynchronizerLive.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SDKSynchronizer/SDKSynchronizerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SDKSynchronizer/SDKSynchronizerTest.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SecItem/SecItemInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SecItem/SecItemInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SecItem/SecItemLive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SecItem/SecItemLive.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SwapAndPay/SwapAndPayInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SwapAndPay/SwapAndPayInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SwapAndPay/SwapAndPayLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SwapAndPay/SwapAndPayLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SwapAndPay/models/SwapAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SwapAndPay/models/SwapAsset.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SwapAndPay/models/SwapDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SwapAndPay/models/SwapDetails.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SwapAndPay/models/SwapQuote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SwapAndPay/models/SwapQuote.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SwapAndPay/models/SwapQuoteRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SwapAndPay/models/SwapQuoteRequest.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SwapAndPay/models/SwapSubmitHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SwapAndPay/models/SwapSubmitHash.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/SwapAndPay/sources/Near1Click.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/SwapAndPay/sources/Near1Click.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/TaxExporter/TaxExporterInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/TaxExporter/TaxExporterInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/TaxExporter/TaxExporterLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/TaxExporter/TaxExporterLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/URIParser/RequestPaymentParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/URIParser/RequestPaymentParser.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/URIParser/URIParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/URIParser/URIParser.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/URIParser/URIParserInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/URIParser/URIParserInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/URIParser/URIParserLive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/URIParser/URIParserLive.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/URIParser/URIParserTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/URIParser/URIParserTest.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/UserDefaults/UserDefaultsInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/UserDefaults/UserDefaultsInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/UserDefaults/UserDefaultsLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/UserDefaults/UserDefaultsLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/UserDefaults/UserDefaultsTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/UserDefaults/UserDefaultsTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/UserMetadataProvider/Migration/UMv1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/UserMetadataProvider/Migration/UMv1.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/UserMetadataProvider/Migration/UMv2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/UserMetadataProvider/Migration/UMv2.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/UserMetadataProvider/UMSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/UserMetadataProvider/UMSerialization.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/WalletStorage/WalletStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/WalletStorage/WalletStorage.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/WalletStorage/WalletStorageInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/WalletStorage/WalletStorageInterface.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/WalletStorage/WalletStorageLiveKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/WalletStorage/WalletStorageLiveKey.swift -------------------------------------------------------------------------------- /modules/Sources/Dependencies/WalletStorage/WalletStorageTestKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Dependencies/WalletStorage/WalletStorageTestKey.swift -------------------------------------------------------------------------------- /modules/Sources/Features/About/AboutStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/About/AboutStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/About/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/About/AboutView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/AddKeystoneHWWallet/AccountsSelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/AddKeystoneHWWallet/AccountsSelectionView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/AddKeystoneHWWallet/AddHWWalletStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/AddKeystoneHWWallet/AddHWWalletStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/AddKeystoneHWWallet/AddHWWalletView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/AddKeystoneHWWallet/AddHWWalletView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/AddressBook/AddressBookContactView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/AddressBook/AddressBookContactView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/AddressBook/AddressBookSheets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/AddressBook/AddressBookSheets.swift -------------------------------------------------------------------------------- /modules/Sources/Features/AddressBook/AddressBookStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/AddressBook/AddressBookStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/AddressBook/AddressBookView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/AddressBook/AddressBookView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/AddressDetails/AddressDetailsStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/AddressDetails/AddressDetailsStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/AddressDetails/AddressDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/AddressDetails/AddressDetailsView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/BalanceBreakdown/BalancesStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/BalanceBreakdown/BalancesStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/BalanceBreakdown/BalancesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/BalanceBreakdown/BalancesView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/RequestZecCoordFlowCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/RequestZecCoordFlowCoordinator.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/RequestZecCoordFlowStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/RequestZecCoordFlowStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/RequestZecCoordFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/RequestZecCoordFlowView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/RestoreWalletCoordFlowStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/RestoreWalletCoordFlowStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/RestoreWalletCoordFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/RestoreWalletCoordFlowView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/ScanCoordFlowCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/ScanCoordFlowCoordinator.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/ScanCoordFlowStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/ScanCoordFlowStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/ScanCoordFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/ScanCoordFlowView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/SendCoordFlowCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/SendCoordFlowCoordinator.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/SendCoordFlowStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/SendCoordFlowStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/SendCoordFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/SendCoordFlowView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/SignWithKeystoneCoordFlowStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/SignWithKeystoneCoordFlowStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/SignWithKeystoneCoordFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/SignWithKeystoneCoordFlowView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/SwapAndPayCoordFlowCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/SwapAndPayCoordFlowCoordinator.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/SwapAndPayCoordFlowStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/SwapAndPayCoordFlowStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/SwapAndPayCoordFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/SwapAndPayCoordFlowView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/TransactionsCoordFlowStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/TransactionsCoordFlowStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/TransactionsCoordFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/TransactionsCoordFlowView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/WalletBackupCoordFlowStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/WalletBackupCoordFlowStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/CoordFlows/WalletBackupCoordFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/CoordFlows/WalletBackupCoordFlowView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/DeeplinkWarning/DeeplinkWarningStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/DeeplinkWarning/DeeplinkWarningStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/DeeplinkWarning/DeeplinkWarningView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/DeeplinkWarning/DeeplinkWarningView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/DeleteWallet/DeleteWalletStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/DeleteWallet/DeleteWalletStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/DeleteWallet/DeleteWalletView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/DeleteWallet/DeleteWalletView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/ExportLogs/ExportLogs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/ExportLogs/ExportLogs.swift -------------------------------------------------------------------------------- /modules/Sources/Features/ExportLogs/ExportLogsStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/ExportLogs/ExportLogsStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Home/GlobalNavBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Home/GlobalNavBar.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Home/HomeStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Home/HomeStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Home/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Home/HomeView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Home/MoreSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Home/MoreSheet.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Home/SendSelectSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Home/SendSelectSheet.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Home/WalletAccountsSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Home/WalletAccountsSheet.swift -------------------------------------------------------------------------------- /modules/Sources/Features/NotEnoughFreeSpace/NotEnoughFreeSpaceStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/NotEnoughFreeSpace/NotEnoughFreeSpaceStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/NotEnoughFreeSpace/NotEnoughFreeSpaceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/NotEnoughFreeSpace/NotEnoughFreeSpaceView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/OSStatusError/OSStatusErrorStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/OSStatusError/OSStatusErrorStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/OSStatusError/OSStatusErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/OSStatusError/OSStatusErrorView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/OnboardingFlow/OnboardingFlowStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/OnboardingFlow/OnboardingFlowStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/OnboardingFlow/PlainOnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/OnboardingFlow/PlainOnboardingView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/PrivateDataConsent/PrivateDataConsentStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/PrivateDataConsent/PrivateDataConsentStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/PrivateDataConsent/PrivateDataConsentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/PrivateDataConsent/PrivateDataConsentView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Receive/ReceiveCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Receive/ReceiveCoordinator.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Receive/ReceiveStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Receive/ReceiveStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Receive/ReceiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Receive/ReceiveView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/RequestZec/RequestZecStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/RequestZec/RequestZecStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/RequestZec/RequestZecSummaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/RequestZec/RequestZecSummaryView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/RequestZec/RequestZecView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/RequestZec/RequestZecView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/RestoreInfo/RestoreInfoStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/RestoreInfo/RestoreInfoStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/RestoreInfo/RestoreInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/RestoreInfo/RestoreInfoView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootAddressBook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootAddressBook.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootCheckFunds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootCheckFunds.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootCoordinator.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootDebug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootDebug.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootDestination.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootInitialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootInitialization.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootShieldingProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootShieldingProcessor.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootSwaps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootSwaps.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootTorInitCheck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootTorInitCheck.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootTransactions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootTransactions.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootUserMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootUserMetadata.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Root/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Root/RootView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Scan/ScanChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Scan/ScanChecker.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Scan/ScanStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Scan/ScanStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Scan/ScanView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Scan/ScanView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Scan/UIKitBridge/QRCodeScanView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Scan/UIKitBridge/QRCodeScanView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Scan/UIKitBridge/ScanUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Scan/UIKitBridge/ScanUIView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Scan/UIKitBridge/ZashiImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Scan/UIKitBridge/ZashiImagePicker.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendConfirmation/FailureView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendConfirmation/FailureView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendConfirmation/PreSendingFailureView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendConfirmation/PreSendingFailureView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendConfirmation/ResubmissionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendConfirmation/ResubmissionView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendConfirmation/SendConfirmationStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendConfirmation/SendConfirmationStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendConfirmation/SendConfirmationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendConfirmation/SendConfirmationView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendConfirmation/SendRejectSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendConfirmation/SendRejectSheet.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendConfirmation/SendingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendConfirmation/SendingView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendConfirmation/SignWithKeystoneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendConfirmation/SignWithKeystoneView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendConfirmation/SuccessView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendConfirmation/SuccessView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendFeedback/SendFeedbackStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendFeedback/SendFeedbackStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendFeedback/SendFeedbackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendFeedback/SendFeedbackView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendForm/SendFormSheets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendForm/SendFormSheets.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendForm/SendFormStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendForm/SendFormStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SendForm/SendFormView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SendForm/SendFormView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/ServerSetup/ServerSetupStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/ServerSetup/ServerSetupStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/ServerSetup/ServerSetupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/ServerSetup/ServerSetupView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Settings/AdvancedSettingsStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Settings/AdvancedSettingsStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Settings/AdvancedSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Settings/AdvancedSettingsView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Settings/SettingsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Settings/SettingsCoordinator.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Settings/SettingsStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Settings/SettingsStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Settings/SettingsView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SmartBanner/SmartBannerContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SmartBanner/SmartBannerContent.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SmartBanner/SmartBannerHelpSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SmartBanner/SmartBannerHelpSheet.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SmartBanner/SmartBannerStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SmartBanner/SmartBannerStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SmartBanner/SmartBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SmartBanner/SmartBannerView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/CrossPayConfirmationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/CrossPayConfirmationView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/CrossPayForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/CrossPayForm.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/SwapAndPayForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/SwapAndPayForm.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/SwapAndPayOptInForcedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/SwapAndPayOptInForcedView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/SwapAndPayOptInView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/SwapAndPayOptInView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/SwapAndPaySheets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/SwapAndPaySheets.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/SwapAndPayStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/SwapAndPayStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/SwapComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/SwapComponents.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/SwapForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/SwapForm.swift -------------------------------------------------------------------------------- /modules/Sources/Features/SwapAndPayForm/SwapToZecSummaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/SwapAndPayForm/SwapToZecSummaryView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/TorSetup/TorSetupStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/TorSetup/TorSetupStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/TorSetup/TorSetupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/TorSetup/TorSetupView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/TransactionDetails/AnnotationSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/TransactionDetails/AnnotationSheet.swift -------------------------------------------------------------------------------- /modules/Sources/Features/TransactionDetails/SwapComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/TransactionDetails/SwapComponents.swift -------------------------------------------------------------------------------- /modules/Sources/Features/TransactionDetails/TransactionDetailsStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/TransactionDetails/TransactionDetailsStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/TransactionDetails/TransactionDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/TransactionDetails/TransactionDetailsView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/TransactionList/TransactionListStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/TransactionList/TransactionListStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/TransactionList/TransactionListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/TransactionList/TransactionListView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/TransactionsManager/FiltersSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/TransactionsManager/FiltersSheet.swift -------------------------------------------------------------------------------- /modules/Sources/Features/WalletBalances/WalletBalancesStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/WalletBalances/WalletBalancesStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/WalletBalances/WalletBalancesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/WalletBalances/WalletBalancesView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/WalletBirthday/WalletBirthdayStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/WalletBirthday/WalletBirthdayStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/WalletBirthday/WalletBirthdayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/WalletBirthday/WalletBirthdayView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Welcome/WelcomeStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Welcome/WelcomeStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/Welcome/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/Welcome/WelcomeView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/WhatsNew/WhatsNewStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/WhatsNew/WhatsNewStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/WhatsNew/WhatsNewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/WhatsNew/WhatsNewView.swift -------------------------------------------------------------------------------- /modules/Sources/Features/ZecKeyboard/ZecKeyboardStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/ZecKeyboard/ZecKeyboardStore.swift -------------------------------------------------------------------------------- /modules/Sources/Features/ZecKeyboard/ZecKeyboardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Features/ZecKeyboard/ZecKeyboardView.swift -------------------------------------------------------------------------------- /modules/Sources/Generated/DesignSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/DesignSystem.swift -------------------------------------------------------------------------------- /modules/Sources/Generated/Fonts+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Fonts+Generated.swift -------------------------------------------------------------------------------- /modules/Sources/Generated/L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/L10n.swift -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Assets.xcassets/Fly.imageset/fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Assets.xcassets/Fly.imageset/fly.png -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Assets.xcassets/Tickers/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Assets.xcassets/Tickers/Contents.json -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Assets.xcassets/icons/Contents.json -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Colors.xcassets/ZDesign/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Colors.xcassets/ZDesign/Contents.json -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-Black.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-BlackItalic.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-Bold.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-BoldItalic.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-ExtraBold.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-ExtraBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-ExtraBoldItalic.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-ExtraLight.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-Italic.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-Light.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-LightItalic.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-Medium.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-MediumItalic.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-Regular.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-SemiBold.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-SemiBoldItalic.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-Thin.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Inter/Inter-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Inter/Inter-ThinItalic.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/RobotoMono/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/RobotoMono/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/Fonts/Zboto.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/Fonts/Zboto.otf -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /modules/Sources/Generated/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /modules/Sources/Generated/SharedStateKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/SharedStateKeys.swift -------------------------------------------------------------------------------- /modules/Sources/Generated/XCAssets+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Generated/XCAssets+Generated.swift -------------------------------------------------------------------------------- /modules/Sources/Models/AddressBookEncryptionKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/AddressBookEncryptionKeys.swift -------------------------------------------------------------------------------- /modules/Sources/Models/AppDelegateAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/AppDelegateAction.swift -------------------------------------------------------------------------------- /modules/Sources/Models/ChainToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/ChainToken.swift -------------------------------------------------------------------------------- /modules/Sources/Models/Currency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/Currency.swift -------------------------------------------------------------------------------- /modules/Sources/Models/FeatureFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/FeatureFlags.swift -------------------------------------------------------------------------------- /modules/Sources/Models/InitializationState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/InitializationState.swift -------------------------------------------------------------------------------- /modules/Sources/Models/RecoveryPhrase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/RecoveryPhrase.swift -------------------------------------------------------------------------------- /modules/Sources/Models/ReminedMeTimestamp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/ReminedMeTimestamp.swift -------------------------------------------------------------------------------- /modules/Sources/Models/Spendability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/Spendability.swift -------------------------------------------------------------------------------- /modules/Sources/Models/StoredWallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/StoredWallet.swift -------------------------------------------------------------------------------- /modules/Sources/Models/Swaps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/Swaps.swift -------------------------------------------------------------------------------- /modules/Sources/Models/SyncStatusSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/SyncStatusSnapshot.swift -------------------------------------------------------------------------------- /modules/Sources/Models/TransactionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/TransactionState.swift -------------------------------------------------------------------------------- /modules/Sources/Models/UserMetadataEncryptionKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/UserMetadataEncryptionKeys.swift -------------------------------------------------------------------------------- /modules/Sources/Models/ValidationWord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/ValidationWord.swift -------------------------------------------------------------------------------- /modules/Sources/Models/WalletAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/WalletAccount.swift -------------------------------------------------------------------------------- /modules/Sources/Models/WalletConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Models/WalletConfig.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Backgrounds/ListBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Backgrounds/ListBackground.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Backgrounds/NoChainPlaceholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Backgrounds/NoChainPlaceholder.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Backgrounds/NoTransactionPlaceholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Backgrounds/NoTransactionPlaceholder.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Backgrounds/ScreenBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Backgrounds/ScreenBackground.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Backgrounds/VisualEffectBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Backgrounds/VisualEffectBlur.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Badges/FloatingArrow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Badges/FloatingArrow.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Badges/PrivacyBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Badges/PrivacyBadge.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Badges/SwapBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Badges/SwapBadge.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Balance/AvailableBalanceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Balance/AvailableBalanceView.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Balance/BalanceWithIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Balance/BalanceWithIconView.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Balance/Picker/ZashiPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Balance/Picker/ZashiPicker.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Balance/ZatoshiRepresentationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Balance/ZatoshiRepresentationView.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Buttons/ActionRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Buttons/ActionRow.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Buttons/CheckboxToggleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Buttons/CheckboxToggleStyle.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Buttons/ZashiButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Buttons/ZashiButton.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Contact/ContactView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Contact/ContactView.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/DebugMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/DebugMenu.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Extensions/ConditionalModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Extensions/ConditionalModifier.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Extensions/View+InnerShadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Extensions/View+InnerShadow.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/FontStyles/SecantTextStyles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/FontStyles/SecantTextStyles.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/HiddenIfSet/HiddenIfSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/HiddenIfSet/HiddenIfSet.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Hintbox/HintBoxShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Hintbox/HintBoxShape.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Images/ZashiImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Images/ZashiImage.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Info/InfoRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Info/InfoRow.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Overlays/SplashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Overlays/SplashView.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/PreferenceKeys/BirthdayPreferenceKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/PreferenceKeys/BirthdayPreferenceKey.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/PreferenceKeys/SizePreferenceKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/PreferenceKeys/SizePreferenceKey.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Progress/CircularProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Progress/CircularProgressView.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Progress/ZashiSyncingProgressStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Progress/ZashiSyncingProgressStyle.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Screen/ScreenHorizontalPadding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Screen/ScreenHorizontalPadding.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Shapes/MessageShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Shapes/MessageShape.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Shapes/Wedge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Shapes/Wedge.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Shapes/ZcashSymbol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Shapes/ZcashSymbol.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Sheets/ZashiSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Sheets/ZashiSheet.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/StateWrapper/StateWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/StateWrapper/StateWrapper.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Text/ConditionalFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Text/ConditionalFont.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Text/ConditionalStrikethrough.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Text/ConditionalStrikethrough.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Text/WalletStatusPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Text/WalletStatusPanel.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Text/ZashiFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Text/ZashiFont.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Text/ZashiText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Text/ZashiText.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/TextFields/MessageEditor/MessageEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/TextFields/MessageEditor/MessageEditor.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/TextFields/ZashiTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/TextFields/ZashiTextField.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Toast/Toast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Toast/Toast.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Toggle/DescriptiveToggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Toggle/DescriptiveToggle.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Toggle/ZashiToggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Toggle/ZashiToggle.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Toolbar/ToolbarAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Toolbar/ToolbarAction.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Toolbar/ZashiBack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Toolbar/ZashiBack.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Toolbar/ZashiBackV2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Toolbar/ZashiBackV2.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Toolbar/ZashiTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Toolbar/ZashiTitle.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Tooltip/Tooltip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Tooltip/Tooltip.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/Transactions/TransactionRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/Transactions/TransactionRowView.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/UIKitBridge/InAppBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/UIKitBridge/InAppBrowser.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/UIKitBridge/UIMailDialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/UIKitBridge/UIMailDialog.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/UIKitBridge/UIShareDialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/UIKitBridge/UIShareDialog.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/ZashiLogo/ZashiLogo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/ZashiLogo/ZashiLogo.swift -------------------------------------------------------------------------------- /modules/Sources/UIComponents/ZcashBadge/ZcashBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/UIComponents/ZcashBadge/ZcashBadge.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Array+Chunked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Array+Chunked.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/BalanceFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/BalanceFormatter.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Bindings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Bindings.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Clamped.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Clamped.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Data+Serialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Data+Serialization.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Date+Readable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Date+Readable.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Decimals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Decimals.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/LogStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/LogStore.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Logging/TCALoggerReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Logging/TCALoggerReducer.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Logging/TCALogging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Logging/TCALogging.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/NavigationLinks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/NavigationLinks.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Network.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Network.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/NumberFormatter+zcash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/NumberFormatter+zcash.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Previews.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/QRCodeGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/QRCodeGenerator.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/ScrollableWhenScaled.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/ScrollableWhenScaled.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/SensitiveData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/SensitiveData.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/Strings.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/URL+empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/URL+empty.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/WalletLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/WalletLogger.swift -------------------------------------------------------------------------------- /modules/Sources/Utils/ZcashError+DetailedMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Utils/ZcashError+DetailedMessage.swift -------------------------------------------------------------------------------- /modules/Sources/Vendors/Keystone/AnimatedQRCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Sources/Vendors/Keystone/AnimatedQRCode.swift -------------------------------------------------------------------------------- /modules/Templates/fonts/fonts_swift5_swiftui.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Templates/fonts/fonts_swift5_swiftui.stencil -------------------------------------------------------------------------------- /modules/Templates/xcassets/assets_swift5_swiftui.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/Templates/xcassets/assets_swift5_swiftui.stencil -------------------------------------------------------------------------------- /modules/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/modules/swiftgen.yml -------------------------------------------------------------------------------- /responsible_disclosure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/responsible_disclosure.md -------------------------------------------------------------------------------- /secant-distrib-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant-distrib-Info.plist -------------------------------------------------------------------------------- /secant-distrib.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant-distrib.entitlements -------------------------------------------------------------------------------- /secant-mainnet.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant-mainnet.entitlements -------------------------------------------------------------------------------- /secant.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /secant.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /secant.xcodeproj/xcshareddata/xcschemes/secant-AppStore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant.xcodeproj/xcshareddata/xcschemes/secant-AppStore.xcscheme -------------------------------------------------------------------------------- /secant.xcodeproj/xcshareddata/xcschemes/secant-mainnet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant.xcodeproj/xcshareddata/xcschemes/secant-mainnet.xcscheme -------------------------------------------------------------------------------- /secant.xcodeproj/xcshareddata/xcschemes/secant-testnet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant.xcodeproj/xcshareddata/xcschemes/secant-testnet.xcscheme -------------------------------------------------------------------------------- /secant.xcodeproj/xcshareddata/xcschemes/zashi-internal.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant.xcodeproj/xcshareddata/xcschemes/zashi-internal.xcscheme -------------------------------------------------------------------------------- /secant.xcodeproj/xcshareddata/xcschemes/zashi-testnet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant.xcodeproj/xcshareddata/xcschemes/zashi-testnet.xcscheme -------------------------------------------------------------------------------- /secant/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/AppDelegate.swift -------------------------------------------------------------------------------- /secant/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/LaunchScreen.storyboard -------------------------------------------------------------------------------- /secant/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/100.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/1024.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/114.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/120.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/144.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/152.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/167.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/180.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/20.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/29.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/40.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/50.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/57.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/58.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/60.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/72.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/76.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/80.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-internal.appiconset/87.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/100.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/1024.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/114.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/120.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/144.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/152.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/167.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/180.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/20.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/29.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/40.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/50.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/57.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/58.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/60.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/72.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/76.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/80.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/87.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon-testnet.appiconset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/$wif.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/$wif.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/$wif.imageset/wif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/$wif.imageset/wif.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/aave.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/aave.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/aave.imageset/aave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/aave.imageset/aave.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/abg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/abg.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/abg.imageset/abg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/abg.imageset/abg.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/ada.imageset/ADA (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/ada.imageset/ADA (1).png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/ada.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/ada.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/apt.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/apt.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/apt.imageset/aptos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/apt.imageset/aptos.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/arb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/arb.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/arb.imageset/arb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/arb.imageset/arb.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/aurora.imageset/Aurora v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/aurora.imageset/Aurora v2.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/aurora.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/aurora.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/avax.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/avax.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/avax.imageset/avax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/avax.imageset/avax.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/bera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/bera.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/bera.imageset/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/bera.imageset/image 6.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/bnb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/bnb.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/bnb.imageset/bsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/bnb.imageset/bsc.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/bome.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/bome.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/bome.imageset/bome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/bome.imageset/bome.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/brett.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/brett.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/brett.imageset/brett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/brett.imageset/brett.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/brrr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/brrr.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/brrr.imageset/brrr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/brrr.imageset/brrr.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/btc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/btc.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/btc.imageset/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/btc.imageset/btc.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/cbbtc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/cbbtc.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/cbbtc.imageset/cbbtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/cbbtc.imageset/cbbtc.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/cow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/cow.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/cow.imageset/cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/cow.imageset/cow.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/dai.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/dai.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/dai.imageset/dai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/dai.imageset/dai.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/doge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/doge.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/doge.imageset/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/doge.imageset/doge.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/eth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/eth.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/eth.imageset/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/eth.imageset/eth.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/fms.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/fms.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/fms.imageset/fms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/fms.imageset/fms.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/frax.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/frax.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/frax.imageset/frax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/frax.imageset/frax.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/gmx.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/gmx.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/gmx.imageset/gmx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/gmx.imageset/gmx.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/gnear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/gnear.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/gnear.imageset/gnear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/gnear.imageset/gnear.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/gno.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/gno.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/gno.imageset/gnosis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/gno.imageset/gnosis.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/hapi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/hapi.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/hapi.imageset/hapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/hapi.imageset/hapi.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/jambo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/jambo.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/jambo.imageset/jambo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/jambo.imageset/jambo.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/kaito.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/kaito.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/kaito.imageset/kaito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/kaito.imageset/kaito.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/knc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/knc.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/knc.imageset/knc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/knc.imageset/knc.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/link.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/link.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/link.imageset/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/link.imageset/link.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/loud.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/loud.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/loud.imageset/loud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/loud.imageset/loud.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/melania.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/melania.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/melania.imageset/melania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/melania.imageset/melania.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/mog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/mog.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/mog.imageset/mog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/mog.imageset/mog.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/mpdao.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/mpdao.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/mpdao.imageset/mpdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/mpdao.imageset/mpdao.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/near.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/near.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/near.imageset/wnear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/near.imageset/wnear.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/nearkat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/nearkat.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/nearkat.imageset/nearkat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/nearkat.imageset/nearkat.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/noear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/noear.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/noear.imageset/noear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/noear.imageset/noear.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/op.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/op.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/op.imageset/op.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/op.imageset/op.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/pepe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/pepe.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/pepe.imageset/pepe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/pepe.imageset/pepe.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/pol.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/pol.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/pol.imageset/pol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/pol.imageset/pol.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/public.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/public.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/public.imageset/public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/public.imageset/public.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/purge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/purge.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/purge.imageset/purge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/purge.imageset/purge.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/ref.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/ref.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/ref.imageset/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/ref.imageset/ref.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/rhea.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/rhea.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/rhea.imageset/rhea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/rhea.imageset/rhea.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/safe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/safe.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/safe.imageset/safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/safe.imageset/safe.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/shib.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/shib.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/shib.imageset/shib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/shib.imageset/shib.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/shitzu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/shitzu.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/shitzu.imageset/shitzu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/shitzu.imageset/shitzu.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/sol.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/sol.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/sol.imageset/sol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/sol.imageset/sol.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/sui.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/sui.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/sui.imageset/sui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/sui.imageset/sui.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/sweat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/sweat.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/sweat.imageset/sweat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/sweat.imageset/sweat.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/ton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/ton.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/ton.imageset/ton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/ton.imageset/ton.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/trump.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/trump.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/trump.imageset/trump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/trump.imageset/trump.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/trx.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/trx.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/trx.imageset/trx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/trx.imageset/trx.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/turbo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/turbo.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/turbo.imageset/turbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/turbo.imageset/turbo.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/uni.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/uni.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/uni.imageset/uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/uni.imageset/uni.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/usd1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/usd1.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/usd1.imageset/usd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/usd1.imageset/usd1.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/usdc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/usdc.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/usdc.imageset/usdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/usdc.imageset/usdc.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/usdf.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/usdf.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/usdf.imageset/usdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/usdf.imageset/usdf.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/usdt.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/usdt.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/usdt.imageset/usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/usdt.imageset/usdt.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/wbtc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/wbtc.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/wbtc.imageset/wbtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/wbtc.imageset/wbtc.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/weth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/weth.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/weth.imageset/weth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/weth.imageset/weth.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/wnear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/wnear.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/wnear.imageset/wnear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/wnear.imageset/wnear.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/xbtc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/xbtc.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/xbtc.imageset/xbtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/xbtc.imageset/xbtc.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/xdai.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/xdai.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/xdai.imageset/xdai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/xdai.imageset/xdai.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/xlm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/xlm.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/xlm.imageset/xlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/xlm.imageset/xlm.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/xrp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/xrp.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/xrp.imageset/xrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/xrp.imageset/xrp.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/zec.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/zec.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Assets/zec.imageset/zec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Assets/zec.imageset/zec.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_arb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_arb.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_arb.imageset/arb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_arb.imageset/arb.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_avax.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_avax.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_avax.imageset/avax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_avax.imageset/avax.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_base.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_base.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_base.imageset/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_base.imageset/base.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_bsc.imageset/bsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_bsc.imageset/bsc.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_btc.imageset/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_btc.imageset/btc.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_doge.imageset/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_doge.imageset/doge.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_eth.imageset/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_eth.imageset/eth.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_near.imageset/near2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_near.imageset/near2.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_op.imageset/op.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_op.imageset/op.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_pol.imageset/Polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_pol.imageset/Polygon.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_sol.imageset/sol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_sol.imageset/sol.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_sui.imageset/sui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_sui.imageset/sui.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_ton.imageset/ton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_ton.imageset/ton.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_tron.imageset/trx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_tron.imageset/trx.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_xrp.imageset/xrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_xrp.imageset/xrp.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Chains/chain_zec.imageset/zec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Chains/chain_zec.imageset/zec.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/KS_QROverlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/KS_QROverlay.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/QROverlayLow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/QROverlayLow.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/QROverlayMax.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/QROverlayMax.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/ZashiLogo.imageset/180 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/ZashiLogo.imageset/180 1.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/ZashiLogo.imageset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/ZashiLogo.imageset/180.png -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/ZashiLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/ZashiLogo.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Assets.xcassets/zcashZecLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Assets.xcassets/zcashZecLogo.imageset/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /secant/Resources/Fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /secant/Resources/Lotties/sending-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Lotties/sending-dark.json -------------------------------------------------------------------------------- /secant/Resources/Lotties/sending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/Lotties/sending.json -------------------------------------------------------------------------------- /secant/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /secant/Resources/WhatsNew/whatsNew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/WhatsNew/whatsNew.json -------------------------------------------------------------------------------- /secant/Resources/WhatsNew/whatsNew_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/WhatsNew/whatsNew_es.json -------------------------------------------------------------------------------- /secant/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /secant/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /secant/SecantApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/SecantApp.swift -------------------------------------------------------------------------------- /secant/secant-mainnet-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/secant-mainnet-Info.plist -------------------------------------------------------------------------------- /secant/secant-testnet-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/secant-testnet-Info.plist -------------------------------------------------------------------------------- /secant/zashi-testnet-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secant/zashi-testnet-Info.plist -------------------------------------------------------------------------------- /secantTests/BackupFlowTests/RecoveryPhraseBackupTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/BackupFlowTests/RecoveryPhraseBackupTests.swift -------------------------------------------------------------------------------- /secantTests/BalanceBreakdownTests/BalanceBreakdownTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/BalanceBreakdownTests/BalanceBreakdownTests.swift -------------------------------------------------------------------------------- /secantTests/DeeplinkTests/DeeplinkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/DeeplinkTests/DeeplinkTests.swift -------------------------------------------------------------------------------- /secantTests/HomeTests/HomeFeatureFlagTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/HomeTests/HomeFeatureFlagTests.swift -------------------------------------------------------------------------------- /secantTests/HomeTests/HomeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/HomeTests/HomeTests.swift -------------------------------------------------------------------------------- /secantTests/ImportWalletTests/ImportWalletTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/ImportWalletTests/ImportWalletTests.swift -------------------------------------------------------------------------------- /secantTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/Info.plist -------------------------------------------------------------------------------- /secantTests/MultiLineTextFieldTests/MultiLineTextFieldTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/MultiLineTextFieldTests/MultiLineTextFieldTests.swift -------------------------------------------------------------------------------- /secantTests/PrivateDataConsentTests/PrivateDataConsentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/PrivateDataConsentTests/PrivateDataConsentTests.swift -------------------------------------------------------------------------------- /secantTests/ReceiveTests/ReceiveTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/ReceiveTests/ReceiveTests.swift -------------------------------------------------------------------------------- /secantTests/ReviewRequestTests/ReviewRequestTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/ReviewRequestTests/ReviewRequestTests.swift -------------------------------------------------------------------------------- /secantTests/RootTests/AppInitializationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/RootTests/AppInitializationTests.swift -------------------------------------------------------------------------------- /secantTests/RootTests/DebugTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/RootTests/DebugTests.swift -------------------------------------------------------------------------------- /secantTests/RootTests/RestoreWalletTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/RootTests/RestoreWalletTests.swift -------------------------------------------------------------------------------- /secantTests/RootTests/RootTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/RootTests/RootTests.swift -------------------------------------------------------------------------------- /secantTests/RootTests/WalletNukeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/RootTests/WalletNukeTests.swift -------------------------------------------------------------------------------- /secantTests/ScanTests/ScanTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/ScanTests/ScanTests.swift -------------------------------------------------------------------------------- /secantTests/SendTests/SendTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/SendTests/SendTests.swift -------------------------------------------------------------------------------- /secantTests/SensitiveDataTests/SensitiveDataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/SensitiveDataTests/SensitiveDataTests.swift -------------------------------------------------------------------------------- /secantTests/SettingsTests/SettingsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/SettingsTests/SettingsTests.swift -------------------------------------------------------------------------------- /secantTests/SnapshotTests/HomeSnapshotTests/HomeSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/SnapshotTests/HomeSnapshotTests/HomeSnapshotTests.swift -------------------------------------------------------------------------------- /secantTests/SnapshotTests/View+UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/SnapshotTests/View+UIImage.swift -------------------------------------------------------------------------------- /secantTests/SyncProgressTests/SyncProgressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/SyncProgressTests/SyncProgressTests.swift -------------------------------------------------------------------------------- /secantTests/TabsTests/TabsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/TabsTests/TabsTests.swift -------------------------------------------------------------------------------- /secantTests/TransactionListTests/TransactionListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/TransactionListTests/TransactionListTests.swift -------------------------------------------------------------------------------- /secantTests/TransactionListTests/TransactionStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/TransactionListTests/TransactionStateTests.swift -------------------------------------------------------------------------------- /secantTests/UtilTests/DatabaseFilesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/UtilTests/DatabaseFilesTests.swift -------------------------------------------------------------------------------- /secantTests/UtilTests/LoggerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/UtilTests/LoggerTests.swift -------------------------------------------------------------------------------- /secantTests/UtilTests/SecItemClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/UtilTests/SecItemClientTests.swift -------------------------------------------------------------------------------- /secantTests/UtilTests/UserPreferencesStorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/UtilTests/UserPreferencesStorageTests.swift -------------------------------------------------------------------------------- /secantTests/UtilTests/WalletStorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/UtilTests/WalletStorageTests.swift -------------------------------------------------------------------------------- /secantTests/UtilTests/ZatoshiTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/UtilTests/ZatoshiTests.swift -------------------------------------------------------------------------------- /secantTests/WalletConfigProviderTests/WalletConfigProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantTests/WalletConfigProviderTests/WalletConfigProviderTests.swift -------------------------------------------------------------------------------- /secantUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantUITests/Info.plist -------------------------------------------------------------------------------- /secantUITests/secantUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/secantUITests/secantUITests.swift -------------------------------------------------------------------------------- /symlink-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/symlink-templates.sh -------------------------------------------------------------------------------- /xctemplates/TCA.xctemplate/EmptyCombined/___FILEBASENAME___Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/xctemplates/TCA.xctemplate/EmptyCombined/___FILEBASENAME___Store.swift -------------------------------------------------------------------------------- /xctemplates/TCA.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/xctemplates/TCA.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /zashi-internal-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/zashi-internal-Info.plist -------------------------------------------------------------------------------- /zashi-internal.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electric-Coin-Company/zashi-ios/HEAD/zashi-internal.entitlements --------------------------------------------------------------------------------