├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── default.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cartfile ├── Cartfile.resolved ├── Gemfile ├── LICENSE ├── Localization ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── hr.lproj │ └── Localizable.strings ├── it.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── nl.lproj │ └── Localizable.strings ├── pt-BR.lproj │ └── Localizable.strings ├── pt-PT.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings ├── sl.lproj │ └── Localizable.strings ├── sv-SE.lproj │ └── Localizable.strings ├── tr.lproj │ └── Localizable.strings ├── vi.lproj │ └── Localizable.strings └── zh-Hans.lproj │ └── Localizable.strings ├── PULL_REQUEST_TEMPLATE.md ├── Podfile ├── Podfile.lock ├── Pods ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── Pods-VergeSiri │ ├── Pods-VergeSiri-Info.plist │ ├── Pods-VergeSiri-acknowledgements.markdown │ ├── Pods-VergeSiri-acknowledgements.plist │ ├── Pods-VergeSiri-dummy.m │ ├── Pods-VergeSiri-umbrella.h │ ├── Pods-VergeSiri.debug.xcconfig │ ├── Pods-VergeSiri.modulemap │ └── Pods-VergeSiri.release.xcconfig │ ├── Pods-VergeSiriUI │ ├── Pods-VergeSiriUI-Info.plist │ ├── Pods-VergeSiriUI-acknowledgements.markdown │ ├── Pods-VergeSiriUI-acknowledgements.plist │ ├── Pods-VergeSiriUI-dummy.m │ ├── Pods-VergeSiriUI-umbrella.h │ ├── Pods-VergeSiriUI.debug.xcconfig │ ├── Pods-VergeSiriUI.modulemap │ └── Pods-VergeSiriUI.release.xcconfig │ ├── Pods-VergeWatch Extension │ ├── Pods-VergeWatch Extension-Info.plist │ ├── Pods-VergeWatch Extension-acknowledgements.markdown │ ├── Pods-VergeWatch Extension-acknowledgements.plist │ ├── Pods-VergeWatch Extension-dummy.m │ ├── Pods-VergeWatch Extension-umbrella.h │ ├── Pods-VergeWatch Extension.debug.xcconfig │ ├── Pods-VergeWatch Extension.modulemap │ └── Pods-VergeWatch Extension.release.xcconfig │ ├── Pods-VergeiOS-VergeiOSUITests │ ├── Pods-VergeiOS-VergeiOSUITests-Info.plist │ ├── Pods-VergeiOS-VergeiOSUITests-acknowledgements.markdown │ ├── Pods-VergeiOS-VergeiOSUITests-acknowledgements.plist │ ├── Pods-VergeiOS-VergeiOSUITests-dummy.m │ ├── Pods-VergeiOS-VergeiOSUITests-frameworks-Debug-input-files.xcfilelist │ ├── Pods-VergeiOS-VergeiOSUITests-frameworks-Debug-output-files.xcfilelist │ ├── Pods-VergeiOS-VergeiOSUITests-frameworks-Release-input-files.xcfilelist │ ├── Pods-VergeiOS-VergeiOSUITests-frameworks-Release-output-files.xcfilelist │ ├── Pods-VergeiOS-VergeiOSUITests-frameworks.sh │ ├── Pods-VergeiOS-VergeiOSUITests-umbrella.h │ ├── Pods-VergeiOS-VergeiOSUITests.debug.xcconfig │ ├── Pods-VergeiOS-VergeiOSUITests.modulemap │ └── Pods-VergeiOS-VergeiOSUITests.release.xcconfig │ ├── Pods-VergeiOS │ ├── Pods-VergeiOS-Info.plist │ ├── Pods-VergeiOS-acknowledgements.markdown │ ├── Pods-VergeiOS-acknowledgements.plist │ ├── Pods-VergeiOS-dummy.m │ ├── Pods-VergeiOS-frameworks-Debug-input-files.xcfilelist │ ├── Pods-VergeiOS-frameworks-Debug-output-files.xcfilelist │ ├── Pods-VergeiOS-frameworks-Release-input-files.xcfilelist │ ├── Pods-VergeiOS-frameworks-Release-output-files.xcfilelist │ ├── Pods-VergeiOS-frameworks.sh │ ├── Pods-VergeiOS-umbrella.h │ ├── Pods-VergeiOS.debug.xcconfig │ ├── Pods-VergeiOS.modulemap │ └── Pods-VergeiOS.release.xcconfig │ └── Pods-VergeiOSTests │ ├── Pods-VergeiOSTests-Info.plist │ ├── Pods-VergeiOSTests-acknowledgements.markdown │ ├── Pods-VergeiOSTests-acknowledgements.plist │ ├── Pods-VergeiOSTests-dummy.m │ ├── Pods-VergeiOSTests-umbrella.h │ ├── Pods-VergeiOSTests.debug.xcconfig │ ├── Pods-VergeiOSTests.modulemap │ └── Pods-VergeiOSTests.release.xcconfig ├── README.md ├── Resources ├── geoip └── geoip6 ├── Sources ├── Application.swift ├── Blockchain │ ├── BitcoreNodeClient.swift │ └── TransactionFactory.swift ├── Components │ ├── Buttons │ │ ├── CloseButton.swift │ │ ├── RoundedButton.swift │ │ ├── SecondaryButton.swift │ │ └── SelectorButton.swift │ ├── EFCountingLabel.swift │ ├── ErrorViews │ │ ├── ErrorView.swift │ │ └── ErrorView.xib │ ├── Extensions │ │ ├── UIColor+Default.swift │ │ ├── UIFont+Default.swift │ │ └── UIView+Shake.swift │ ├── ImageViews │ │ ├── NoBalancePlaceholderImageView.swift │ │ ├── NoContactsPlaceholderImageView.swift │ │ ├── ThemedImageView.swift │ │ ├── TransactionsPlaceholderImageView.swift │ │ └── UnlockBackgroundImageView.swift │ ├── Inputs │ │ ├── CurrencyInput.swift │ │ └── PinTextField.swift │ ├── Keyboards │ │ ├── AbstractKey.swift │ │ ├── BackKey.swift │ │ ├── EmptyKey.swift │ │ ├── ImageKey.swift │ │ ├── Keyboard.swift │ │ ├── KeyboardButton.swift │ │ ├── KeyboardKey.swift │ │ ├── LocalAuthKey.swift │ │ ├── NumberKey.swift │ │ ├── PinKeyboard.swift │ │ └── StringKey.swift │ ├── Labels │ │ ├── MutedLabel.swift │ │ ├── PrimaryLabel.swift │ │ ├── SecureLabel.swift │ │ ├── SubtitleLabel.swift │ │ ├── TextLabel.swift │ │ └── TitleLabel.swift │ ├── NavigationBars │ │ └── TransparantNavigationBar.swift │ ├── Notification │ │ ├── NotificationBar.swift │ │ ├── NotificationViewController.swift │ │ ├── NotificationViewController.xib │ │ ├── WalletNotificationView.swift │ │ └── WalletNotificationView.xib │ ├── QRCode │ │ ├── CIColorExtension.swift │ │ ├── CIImageExtension.swift │ │ ├── QRCode.swift │ │ └── UIImageViewExtension.swift │ ├── ScrollViewEdger.swift │ ├── SegmentedControlls │ │ └── LocalizableSegmentedControl.swift │ ├── Shortcuts │ │ └── ShortcutsManager.swift │ ├── Siri │ │ ├── Intents.intentdefinition │ │ └── IntentsManager.swift │ ├── SubtitleImageView.swift │ ├── TableCellViews │ │ ├── AddressCell.swift │ │ ├── TransactionTableViewCell.swift │ │ └── TransactionTableViewCell.xib │ ├── TableViews │ │ ├── EdgedFormViewController.swift │ │ ├── EdgedTableViewController.swift │ │ ├── LocalizableTableViewController.swift │ │ ├── PlaceholderTableView.swift │ │ └── TableSection.swift │ ├── Themes │ │ ├── ThemeFactory.swift │ │ ├── ThemeManager.swift │ │ ├── ThemeableViewController.swift │ │ └── UIView+Themeable.swift │ ├── Tor │ │ ├── TorFixViewController.swift │ │ ├── TorFixViewController.xib │ │ ├── TorFixer.swift │ │ ├── TorStatusIndicator.swift │ │ ├── TorStatusIndicatorViewController.swift │ │ └── TorStatusIndicatorViewController.xib │ ├── Views │ │ ├── BackgroundView.swift │ │ ├── BorderPanelView.swift │ │ ├── CardImageView.swift │ │ ├── LightBackgroundView.swift │ │ ├── MakeTransparentHoleOnOverlayView.swift │ │ ├── PanelView.swift │ │ ├── ReceiveCardImageView.swift │ │ ├── SendCardImageView.swift │ │ ├── TableHeaderView.swift │ │ └── WalletContainerView.swift │ ├── WalletChart │ │ ├── AbstractChartView.swift │ │ ├── ChartFilterToolbar.swift │ │ ├── ChartFilterToolbarDelegate.swift │ │ ├── PriceChartView.swift │ │ └── VolumeChartView.swift │ └── Watch │ │ └── WatchSyncManager.swift ├── Delegates │ ├── AmountDelegate.swift │ ├── CurrencyDelegate.swift │ ├── KeyboardDelegate.swift │ ├── RecipientDelegate.swift │ └── SendTransactionDelegate.swift ├── Extensions │ ├── Array+Extensions.swift │ ├── Collection+Extensions.swift │ ├── Data+Extensions.swift │ ├── Date+Extensions.swift │ ├── DispatchTime+Extensions.swift │ ├── Error+Init.swift │ ├── LAContext+Type.swift │ ├── NSNumber+Currency.swift │ ├── Notification+Names.swift │ ├── String+Localization.swift │ ├── String+Subs.swift │ ├── UIAlertController+Alerts.swift │ ├── UIBarButtonItem+Completion.swift │ ├── UIScrollView+Pagination.swift │ ├── UIStoryboard+Statics.swift │ ├── UIView+Actions.swift │ ├── UIView+Layout.swift │ ├── UIView+Localization.swift │ ├── UIWindow+Levels.swift │ └── UIWindow+VisibleViewController.swift ├── HDWalletKit │ ├── Extensions.swift │ ├── HDAccountWallet.swift │ ├── HDExtendedKey.swift │ ├── HDExtendedKeyVersion.swift │ ├── HDKey.swift │ ├── HDKeychain.swift │ ├── HDPrivateKey.swift │ ├── HDPublicKey.swift │ ├── HDWallet.swift │ ├── HDWatchAccountWallet.swift │ ├── Mnemonic.swift │ ├── Purpose.swift │ ├── ReadOnlyHDWallet.swift │ └── WordList.swift ├── Http │ ├── HiddenHttpSession.swift │ ├── HiddenHttpSessionRequest.swift │ └── HttpResponse.swift ├── Models │ ├── Bn │ │ ├── Balance.swift │ │ ├── Block.swift │ │ ├── Bn.swift │ │ ├── SendResponse.swift │ │ └── Transaction.swift │ ├── ChartInfo.swift │ ├── Contact.swift │ ├── FiatRate.swift │ ├── IpAddress.swift │ ├── KeyBalance.swift │ ├── Vws │ │ ├── AddressBalance.swift │ │ ├── AddressInfo.swift │ │ ├── CreateAddressError.swift │ │ ├── InputOutput.swift │ │ ├── SendMaxInfo.swift │ │ ├── TxChangeAddress.swift │ │ ├── TxHistory.swift │ │ ├── TxOutput.swift │ │ ├── TxProposal.swift │ │ ├── TxProposalErrorResponse.swift │ │ ├── TxProposalResponse.swift │ │ ├── UnspentOutput.swift │ │ ├── Vws.swift │ │ ├── WalletAddressesOptions.swift │ │ ├── WalletBalanceInfo.swift │ │ ├── WalletID.swift │ │ ├── WalletInfo.swift │ │ ├── WalletJoin.swift │ │ ├── WalletOptions.swift │ │ └── WalletStatus.swift │ └── WatchInfo.swift ├── Protocols │ ├── BitcoreNodeClientProtocol.swift │ ├── HiddenClientProtocol.swift │ ├── HttpSessionProtocol.swift │ ├── SubscriberProtocol.swift │ ├── SweeperHelperProtocol.swift │ ├── TickerProtocol.swift │ ├── TorClientProtocol.swift │ ├── TransactionFactoryProtocol.swift │ ├── TxTransponderProtocol.swift │ ├── WalletClientProtocol.swift │ ├── WalletManagerProtocol.swift │ └── WalletSweepingScannerViewDelegate.swift ├── Providers │ ├── ApplicationServiceProvider.swift │ ├── BlockchainServiceProvider.swift │ ├── CoreStoreServiceProvider.swift │ ├── EventServiceProvider.swift │ ├── HttpServiceProvider.swift │ ├── ReceiveViewServiceProvider.swift │ ├── SendViewServiceProvider.swift │ ├── ServiceProvider.swift │ ├── SettingsViewServiceProvider.swift │ ├── SetupViewServiceProvider.swift │ ├── TransactionServiceProvider.swift │ ├── UITestingServiceProvider.swift │ ├── WalletServiceProvider.swift │ └── WalletViewServiceProvider.swift ├── RIPEMD160.swift ├── Rates │ └── RatesClient.swift ├── Repositories │ ├── AddressBookRepository.swift │ ├── ApplicationRepository.swift │ └── TransactionRepository.swift ├── Subscribers │ ├── ConfigurationSubscriber.swift │ ├── CurrencySubscriber.swift │ ├── Subscriber.swift │ ├── ThemeSubscriber.swift │ ├── TorConnectionSubscriber.swift │ ├── WalletNotificationsSubscriber.swift │ ├── WalletStatusSubscriber.swift │ ├── WalletSubscriber.swift │ └── WatchSubscriber.swift ├── Utils │ ├── Constants.swift │ ├── Platform.swift │ └── Timeout.swift └── Wallet │ ├── AddressValidator.swift │ ├── BIP32ManualDerivator.swift │ ├── Credentials.swift │ ├── FiatRateTicker.swift │ ├── NFCWalletTransactionFactory.swift │ ├── SJCL.swift │ ├── SweeperHelper.swift │ ├── TransactionManager.swift │ ├── TxAction.swift │ ├── TxTransponder.swift │ ├── WalletClient.swift │ ├── WalletManager.swift │ ├── WalletTicker.swift │ └── WalletTransactionFactory.swift ├── TestPlans └── UITests.xctestplan ├── VergeSiri ├── Info.plist ├── IntentHandler.swift └── VergeSiri.entitlements ├── VergeSiriUI ├── Assets │ ├── MainInterface.storyboard │ └── VergeSiriUI.entitlements ├── Info.plist ├── Model │ └── WalletInfo.swift └── SiriReceiveViewController.swift ├── VergeWatch Extension ├── Assets.xcassets │ ├── Complication.complicationset │ │ ├── Circular.imageset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Extra Large.imageset │ │ │ └── Contents.json │ │ ├── Graphic Bezel.imageset │ │ │ └── Contents.json │ │ ├── Graphic Circular.imageset │ │ │ └── Contents.json │ │ ├── Graphic Corner.imageset │ │ │ └── Contents.json │ │ ├── Graphic Large Rectangular.imageset │ │ │ └── Contents.json │ │ ├── Modular.imageset │ │ │ └── Contents.json │ │ └── Utilitarian.imageset │ │ │ └── Contents.json │ └── Contents.json ├── Delegates │ └── ExtensionDelegate.swift ├── Info.plist ├── Managers │ ├── ConnectivityManager.swift │ ├── StatsProvider.swift │ └── WatchWalletClient.swift ├── PushNotificationPayload.apns └── Views │ ├── Main │ ├── MainInterfaceController.swift │ └── MainRowController.swift │ ├── Notification │ └── NotificationController.swift │ └── QrCode │ └── QRCodeInterfaceController.swift ├── VergeWatch ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-24@2x.png │ │ ├── Icon-27.5@2x.png │ │ ├── Icon-29@2x.png │ │ ├── Icon-29@3x.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-44@2x.png │ │ ├── Icon-86@2x.png │ │ ├── Icon-98@2x.png │ │ ├── icon-1024-1024.png │ │ ├── icon-108@2x.png │ │ └── icon-50@2x.png │ ├── Contents.json │ ├── icons │ │ ├── Contents.json │ │ ├── icon_development.imageset │ │ │ ├── Contents.json │ │ │ └── icon_development.pdf │ │ ├── icon_price.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-price-tag.pdf │ │ ├── icon_qrcode.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-qr-code-2.pdf │ │ └── icon_wallet.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-purse-2.pdf │ └── other │ │ ├── Contents.json │ │ └── watch_logo.imageset │ │ ├── Contents.json │ │ └── watch_logo.png ├── Assets │ └── Interface.storyboard └── Info.plist ├── VergeiOS-Bridging-Header.h ├── VergeiOS.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── VergeSiri.xcscheme │ ├── VergeSiriUI.xcscheme │ ├── VergeWatch (Notification).xcscheme │ ├── VergeWatch.xcscheme │ └── VergeiOS.xcscheme ├── VergeiOS.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── swiftpm │ └── Package.resolved ├── VergeiOS ├── .swiftlint.yml ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-1024-1024.png │ │ ├── icon-1024-20.png │ │ ├── icon-1024-20@2x.png │ │ ├── icon-1024-20@3x.png │ │ ├── icon-1024-29.png │ │ ├── icon-1024-29@2x.png │ │ ├── icon-1024-29@3x.png │ │ ├── icon-1024-40.png │ │ ├── icon-1024-40@2x.png │ │ ├── icon-1024-40@3x.png │ │ ├── icon-1024-60@2x.png │ │ ├── icon-1024-60@3x.png │ │ ├── icon-1024-76.png │ │ ├── icon-1024-76@2x.png │ │ └── icon-1024-83.5@2x.png │ ├── Background.imageset │ │ ├── Contents.json │ │ └── verge-bg.png │ ├── Background2.imageset │ │ ├── Contents.json │ │ └── verge-bg.png │ ├── Colors │ │ ├── BackgroundBlue.colorset │ │ │ └── Contents.json │ │ ├── BackgroundGrey.colorset │ │ │ └── Contents.json │ │ ├── BackgroundWhite.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── PrimaryDark.colorset │ │ │ └── Contents.json │ │ ├── PrimaryLight.colorset │ │ │ └── Contents.json │ │ ├── SecondaryDark.colorset │ │ │ └── Contents.json │ │ ├── SecondaryLight.colorset │ │ │ └── Contents.json │ │ ├── VergeGreen.colorset │ │ │ └── Contents.json │ │ ├── VergeGrey.colorset │ │ │ └── Contents.json │ │ └── VergeRed.colorset │ │ │ └── Contents.json │ ├── Contents.json │ ├── Headers │ │ ├── Contents.json │ │ ├── DisconnectWalletPlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── disconnet-wallet.pdf │ │ ├── DonatePlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── Donate-Header.pdf │ │ ├── PaperkeyPlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── Paperkey-Header.pdf │ │ ├── PassphrassePlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── Passphrase-header.pdf │ │ ├── PrivateKeySweepingPlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── PrivateKeySweeperHeader.pdf │ │ ├── SweepPaperWalletPlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── SweepPaperWallet-Header.pdf │ │ └── TorPlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── Tor-Header.pdf │ ├── Icons │ │ ├── 4Digits.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-4-key.pdf │ │ ├── 5Digits.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-5-key.pdf │ │ ├── 6Digits.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-6-key.pdf │ │ ├── 7Digits.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-7-key.pdf │ │ ├── 8Digits.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-8-key.pdf │ │ ├── AddAddress.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-plus.pdf │ │ ├── AddContact.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-contact-3.pdf │ │ ├── Address.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-map-pin-2.pdf │ │ ├── AddressBook.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-copybook.pdf │ │ ├── ArrowLeft.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-back-2.pdf │ │ ├── ArrowRight.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-forward-2.pdf │ │ ├── Backspace.imageset │ │ │ ├── Contents.json │ │ │ ├── backspace-2.png │ │ │ └── backspace-3.png │ │ ├── Block.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-blockly-blue-2.pdf │ │ ├── Chart.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-line-chart.pdf │ │ ├── Checked.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-checked.pdf │ │ ├── ChecklistOneItem.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-todo-list.pdf │ │ ├── ChecklistThreeItem.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-to-do.pdf │ │ ├── ChecklistTwoItem.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-todo-list.pdf │ │ ├── CheckmarkCircle.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-document-3.pdf │ │ ├── ChevronUp.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-chevron-up.pdf │ │ ├── ClearTextField.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-erase-2.pdf │ │ ├── ClipboardCheck.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-task-completed-2.pdf │ │ ├── Close.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-multiply-2.pdf │ │ ├── ConfirmPaperkey.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-rename.pdf │ │ ├── Confirmations.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-approval-2.pdf │ │ ├── Contacts.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-user-account.pdf │ │ ├── Contents.json │ │ ├── Copy.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-copy.pdf │ │ ├── Credits.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-people.pdf │ │ ├── Currency.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-currency-exchange.pdf │ │ ├── Details.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-view-details-2.pdf │ │ ├── Development.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-developer-mode.pdf │ │ ├── Disconnect.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-disconnected.pdf │ │ ├── Donate.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-receive-cash-3.pdf │ │ ├── Duplicate.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-replicate-rows.pdf │ │ ├── FaceID.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-face-id.pdf │ │ ├── FinalizeRestore.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-eye.pdf │ │ ├── FlashOff.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-flash-off.pdf │ │ ├── FlashOn.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-flash-on.pdf │ │ ├── Gift.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-gift.pdf │ │ ├── GitHub.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-github.pdf │ │ ├── HDWallet.imageset │ │ │ ├── Contents.json │ │ │ └── HDWallet.pdf │ │ ├── Help.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-help-2.pdf │ │ ├── Hero.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-statue.pdf │ │ ├── Image.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-picture.pdf │ │ ├── Languages.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-language.pdf │ │ ├── Memo.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-note-2.pdf │ │ ├── Moved.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-truck.pdf │ │ ├── NFC.imageset │ │ │ ├── Contents.json │ │ │ └── nfc-icon.pdf │ │ ├── NFCIcon-1.imageset │ │ │ ├── Contents.json │ │ │ └── nfc-icon-1.pdf │ │ ├── NFCIcon-2.imageset │ │ │ ├── Contents.json │ │ │ └── nfc-icon-2.pdf │ │ ├── NFCLabel.imageset │ │ │ ├── Contents.json │ │ │ └── nfc-icon-3.pdf │ │ ├── PaperKey.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-document-3.pdf │ │ ├── PaperKeyAlt.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-document-4.pdf │ │ ├── Paste.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-paste.pdf │ │ ├── Payment.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-card-payment-2.pdf │ │ ├── Pin.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-password.pdf │ │ ├── PinConfirmed.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-protect.pdf │ │ ├── PinUnconfirmed.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-password.pdf │ │ ├── PriceStatistics.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-increase.pdf │ │ ├── PriceTag.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-price-tag.pdf │ │ ├── QRcode.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-qr-code-2.pdf │ │ ├── Quill.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-quill-with-ink.pdf │ │ ├── RateApp.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-star.pdf │ │ ├── Receive.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-receive-cash-2.pdf │ │ ├── Received.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-collapse-arrow-3.pdf │ │ ├── Receiving.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-historical-2.pdf │ │ ├── Recipient.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-man.pdf │ │ ├── Refresh.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-synchronize.pdf │ │ ├── RestoreKey.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-restore-page-2.pdf │ │ ├── Restoring.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-broom-2.pdf │ │ ├── Rocket.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-rocket-4.pdf │ │ ├── Send.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-paper-plane-2.pdf │ │ ├── Sending.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-gps-signal-3.pdf │ │ ├── Sent.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-expand-arrow-4.pdf │ │ ├── Server.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-server.pdf │ │ ├── Settings.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-settings-2.pdf │ │ ├── Share.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-upload.pdf │ │ ├── Stealth.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-anonymous-mask.pdf │ │ ├── SubmitPaperkey.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-submit-document-3.pdf │ │ ├── Sweep.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-broom.pdf │ │ ├── Tor.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-onion-3.pdf │ │ ├── TorConnected.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-onion-filled-3.pdf │ │ ├── TorConnecting │ │ │ ├── Contents.json │ │ │ ├── TorConnecting-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-1.pdf │ │ │ ├── TorConnecting-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-2.pdf │ │ │ ├── TorConnecting-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-3.pdf │ │ │ └── TorConnecting-4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 4.pdf │ │ ├── TorConnectionError.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-onion-filled-2.pdf │ │ ├── TorDisconnected.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-onion-filled-2.pdf │ │ ├── TouchID.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-touch-id.pdf │ │ ├── Transactions.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-transaction-list-2.pdf │ │ ├── User.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-male-user.pdf │ │ ├── Wallet.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-purse-2.pdf │ │ └── Website.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-web-design.pdf │ ├── Logos │ │ ├── Contents.json │ │ ├── LogoBlack.imageset │ │ │ ├── Contents.json │ │ │ └── verge-color_logo.pdf │ │ └── LogoWhite.imageset │ │ │ ├── Contents.json │ │ │ └── verge-color-white_logo.pdf │ ├── Placeholders │ │ ├── Contents.json │ │ ├── ServiceURL.imageset │ │ │ ├── Contents.json │ │ │ └── ServiceUrl.pdf │ │ ├── TorIntro1.imageset │ │ │ ├── Contents.json │ │ │ └── Tor-intro-1.pdf │ │ └── TorMapOverlay.imageset │ │ │ ├── Contents.json │ │ │ └── MapOverlay.pdf │ ├── SendingIcon │ │ ├── Contents.json │ │ ├── frame-10.imageset │ │ │ ├── Contents.json │ │ │ └── frame-10.pdf │ │ ├── frame-11.imageset │ │ │ ├── Contents.json │ │ │ └── frame-11.pdf │ │ ├── frame-12.imageset │ │ │ ├── Contents.json │ │ │ └── frame-12.pdf │ │ ├── frame-13.imageset │ │ │ ├── Contents.json │ │ │ └── frame-13.pdf │ │ ├── frame-14.imageset │ │ │ ├── Contents.json │ │ │ └── frame-14.pdf │ │ ├── frame-15.imageset │ │ │ ├── Contents.json │ │ │ └── frame-15.pdf │ │ ├── frame-16.imageset │ │ │ ├── Contents.json │ │ │ └── frame-16.pdf │ │ ├── frame-17.imageset │ │ │ ├── Contents.json │ │ │ └── frame-17.pdf │ │ ├── frame-18.imageset │ │ │ ├── Contents.json │ │ │ └── frame-18.pdf │ │ ├── frame-19.imageset │ │ │ ├── Contents.json │ │ │ └── frame-19.pdf │ │ ├── frame-20.imageset │ │ │ ├── Contents.json │ │ │ └── frame-20.pdf │ │ ├── frame-21.imageset │ │ │ ├── Contents.json │ │ │ └── frame-21.pdf │ │ ├── frame-22.imageset │ │ │ ├── Contents.json │ │ │ └── frame-22.pdf │ │ ├── frame-23.imageset │ │ │ ├── Contents.json │ │ │ └── frame-23.pdf │ │ ├── frame-5.imageset │ │ │ ├── Contents.json │ │ │ └── frame-5.pdf │ │ ├── frame-6.imageset │ │ │ ├── Contents.json │ │ │ └── frame-6.pdf │ │ ├── frame-7.imageset │ │ │ ├── Contents.json │ │ │ └── frame-7.pdf │ │ ├── frame-8.imageset │ │ │ ├── Contents.json │ │ │ └── frame-8.pdf │ │ └── frame-9.imageset │ │ │ ├── Contents.json │ │ │ └── frame-9.pdf │ └── Themes │ │ ├── Contents.json │ │ ├── Feather │ │ ├── Contents.json │ │ ├── Feather.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-lightweight.pdf │ │ ├── NoBalancePlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── no-balance.pdf │ │ ├── NoContactsPlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── no-contacts.pdf │ │ ├── ReceiveCard.imageset │ │ │ ├── Contents.json │ │ │ └── ReceiveCard.pdf │ │ ├── SendCard.imageset │ │ │ ├── Contents.json │ │ │ └── Verge-card.pdf │ │ ├── TransactionsPlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-transaction-list-2.pdf │ │ └── UnlockBackground.imageset │ │ │ ├── Contents.json │ │ │ └── unlock.pdf │ │ ├── Mars │ │ ├── Contents.json │ │ ├── HeroMarsMode.imageset │ │ │ ├── Contents.json │ │ │ └── HeroMarsMode.pdf │ │ ├── Mars.imageset │ │ │ ├── Contents.json │ │ │ └── Mars.pdf │ │ ├── NoBalancePlaceholderMarsMode.imageset │ │ │ ├── Contents.json │ │ │ └── NoBalancePlaceholderMarsMode.pdf │ │ ├── NoContactsPlaceholderMarsMode.imageset │ │ │ ├── Contents.json │ │ │ └── NoContactsPlaceholderMarsMode.pdf │ │ ├── ReceiveCardMarsMode.imageset │ │ │ ├── Contents.json │ │ │ └── ReceiveCardMarsMode.pdf │ │ ├── SendCardMarsMode.imageset │ │ │ ├── Contents.json │ │ │ └── SendCardMarsMode.pdf │ │ ├── TransactionsPlaceholderMarsMode.imageset │ │ │ ├── Contents.json │ │ │ └── TransactionsPlaceholderMarsMode.pdf │ │ └── UnlockBackgroundMarsMode.imageset │ │ │ ├── Contents.json │ │ │ └── UnlockBackgroundMarsMode.pdf │ │ ├── Moon │ │ ├── Contents.json │ │ ├── Moon.imageset │ │ │ ├── Contents.json │ │ │ └── moon.pdf │ │ ├── NoBalancePlaceholderMoonMode.imageset │ │ │ ├── Contents.json │ │ │ └── no-balance.pdf │ │ ├── NoContactsPlaceholderMoonMode.imageset │ │ │ ├── Contents.json │ │ │ └── no-contacts.pdf │ │ ├── ReceiveCardMoonMode.imageset │ │ │ ├── Contents.json │ │ │ └── ReceiveCard.pdf │ │ ├── SendCardMoonMode.imageset │ │ │ ├── Contents.json │ │ │ └── Verge-card.pdf │ │ ├── TransactionsPlaceholderMoonMode.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-transaction-list-2.pdf │ │ └── UnlockBackgroundMoonMode.imageset │ │ │ ├── Contents.json │ │ │ └── unlock.pdf │ │ ├── Theme.imageset │ │ ├── Contents.json │ │ └── icons8-paint-brush.pdf │ │ └── ThemesPlaceholder.imageset │ │ ├── Contents.json │ │ └── themes.pdf ├── Controllers │ ├── HGPlaceholders │ │ ├── Classes │ │ │ ├── .gitkeep │ │ │ ├── Cells │ │ │ │ ├── PlaceholderCollectionViewCell.swift │ │ │ │ ├── PlaceholderCollectionViewCell.xib │ │ │ │ ├── PlaceholderTableViewCell.swift │ │ │ │ └── PlaceholderTableViewCell.xib │ │ │ ├── Placeholder │ │ │ │ ├── ErrorMessage.swift │ │ │ │ ├── Placeholder.swift │ │ │ │ ├── PlaceholderData.swift │ │ │ │ ├── PlaceholderKey.swift │ │ │ │ └── PlaceholderStyle.swift │ │ │ ├── PlaceholdersProvider │ │ │ │ ├── PlaceholderDataSourceDelegate.swift │ │ │ │ ├── PlaceholdersProvider+Defauls.swift │ │ │ │ └── PlaceholdersProvider.swift │ │ │ ├── Protocols │ │ │ │ ├── CellPlaceholding.swift │ │ │ │ ├── NibLoadable.swift │ │ │ │ ├── PlaceholdersSwitcher.swift │ │ │ │ └── Reusable.swift │ │ │ └── Views │ │ │ │ ├── CollectionView+Switcher.swift │ │ │ │ ├── CollectionView.swift │ │ │ │ ├── TableView+Switcher.swift │ │ │ │ └── TableView.swift │ │ └── MainTabBarController.swift │ ├── Receive │ │ └── ReceiveViewController.swift │ ├── RestoreGuide │ │ ├── AbstractRestoreViewController.swift │ │ ├── EnterRecoveryKeyController.swift │ │ ├── FinalRecoveryController.swift │ │ ├── PaperkeyQRViewController.swift │ │ └── RestoreWalletController.swift │ ├── Send │ │ ├── ConfirmSendView.swift │ │ ├── ConfirmSendView.xib │ │ ├── ScanQRCodeViewController.swift │ │ ├── SelectRecipientTableViewController.swift │ │ ├── SendViewController.swift │ │ ├── SendingView.swift │ │ └── SendingView.xib │ ├── Settings │ │ ├── AddressesTableViewController.swift │ │ ├── Cells │ │ │ ├── AppIconCollectionViewCell.swift │ │ │ ├── AppIconsTableViewCell.swift │ │ │ └── LocalAuthTableViewCell.swift │ │ ├── CreditsTableViewController.swift │ │ ├── CurrencyTableViewController.swift │ │ ├── DisconnectWalletViewController.swift │ │ ├── LocalAuthTableViewController.swift │ │ ├── NfcTableViewController.swift │ │ ├── PaperkeyShowViewController.swift │ │ ├── PaperkeyViewController.swift │ │ ├── ServiceUrlTableViewController.swift │ │ ├── SettingsTableViewController.swift │ │ ├── SupportTableViewController.swift │ │ ├── ThemeTableViewController.swift │ │ ├── TorConnectionTableViewController.swift │ │ ├── TransactionProposalsTableViewController.swift │ │ └── WalletSweeping │ │ │ ├── ConfirmSweepView.swift │ │ │ ├── ConfirmSweepView.xib │ │ │ ├── ElectrumMnemonicTableViewController.swift │ │ │ ├── PaperWalletTableViewController.swift │ │ │ ├── WalletSweepingScannerViewController.swift │ │ │ └── WalletSweepingTableViewController.swift │ ├── Setup │ │ ├── ConfirmPinViewController.swift │ │ ├── FinishSetupViewController.swift │ │ ├── LoadingTorViewController.swift │ │ ├── PassphraseConfirmationViewController.swift │ │ ├── PassphraseViewController.swift │ │ ├── PinUnlockViewController.swift │ │ ├── SelectPinViewController.swift │ │ ├── TorSetup │ │ │ ├── TorSetup1View.xib │ │ │ ├── TorSetup2View.xib │ │ │ ├── TorSetup3View.swift │ │ │ └── TorSetup3View.xib │ │ ├── TorViewController.swift │ │ └── WelcomeViewController.swift │ ├── Transactions │ │ ├── AbstractContactsTableViewController.swift │ │ ├── ContactTableViewController.swift │ │ ├── ContactsTableViewController.swift │ │ ├── NoContactsPlaceholderView.swift │ │ ├── NoContactsPlaceholderView.xib │ │ ├── NoTransactionsPlaceholderView.swift │ │ ├── NoTransactionsPlaceholderView.xib │ │ ├── TransactionTableViewController.swift │ │ └── TransactionsTableViewController.swift │ ├── Wallet │ │ ├── WalletSlides │ │ │ ├── ChartWalletSlideView.swift │ │ │ ├── ChartWalletSlideView.xib │ │ │ ├── HGPlaceholderView.swift │ │ │ ├── SummaryWalletSlideView.swift │ │ │ ├── SummaryWalletSlideView.xib │ │ │ ├── TransactionsPlaceholderTableViewCell.swift │ │ │ ├── TransactionsPlaceholderTableViewCell.xib │ │ │ ├── TransactionsWalletSlideView.swift │ │ │ ├── TransactionsWalletSlideView.xib │ │ │ └── WalletSlideView.swift │ │ └── WalletViewController.swift │ └── WelcomeGuide │ │ ├── AbstractPaperkeyViewController.swift │ │ ├── ConfirmPaperkeyViewController.swift │ │ ├── PaperKeyDescriptionViewController.swift │ │ └── PaperKeyWordsViewController.swift ├── Info.plist ├── Storyboards │ ├── LaunchScreen.storyboard │ ├── MainTabbarNavigator.storyboard │ ├── Receive.storyboard │ ├── RestoreGuide.storyboard │ ├── Send.storyboard │ ├── Settings.storyboard │ ├── Setup.storyboard │ ├── Transactions.storyboard │ ├── Wallet.storyboard │ └── WelcomeGuide.storyboard ├── Theme Icons │ ├── AppIconFeather.png │ ├── AppIconMars.png │ ├── AppIconMoon.png │ └── CoreData.xcdatamodeld │ │ ├── .xccurrentversion │ │ ├── VergeiOS 2.xcdatamodel │ │ └── contents │ │ └── VergeiOS.xcdatamodel │ │ └── contents ├── VergeiOS.entitlements └── sjcl.js ├── VergeiOSTests ├── Blockchain │ └── BitcoreNodeClientTest.swift ├── Http │ ├── HiddenClientMock.swift │ └── HiddenHttpSessionTest.swift ├── Info.plist ├── Repositories │ └── ApplicationRepositoryTest.swift └── Wallet │ ├── AddressValidatorTest.swift │ └── TxTransponderTest.swift ├── VergeiOSUITests ├── Info.plist └── SetupiOSWalletTests.swift ├── carthage-build.sh ├── fastlane ├── Appfile.swift ├── Fastfile.swift ├── FastlaneRunner └── swift │ ├── Appfile.swift │ ├── ArgumentProcessor.swift │ ├── ControlCommand.swift │ ├── Deliverfile.swift │ ├── DeliverfileProtocol.swift │ ├── Fastfile.swift │ ├── Fastlane.swift │ ├── FastlaneSwiftRunner │ ├── FastlaneSwiftRunner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FastlaneRunner.xcscheme │ └── README.txt │ ├── Gymfile.swift │ ├── GymfileProtocol.swift │ ├── LaneFileProtocol.swift │ ├── Matchfile.swift │ ├── MatchfileProtocol.swift │ ├── Precheckfile.swift │ ├── PrecheckfileProtocol.swift │ ├── RubyCommand.swift │ ├── RubyCommandable.swift │ ├── Runner.swift │ ├── RunnerArgument.swift │ ├── Scanfile.swift │ ├── ScanfileProtocol.swift │ ├── Screengrabfile.swift │ ├── ScreengrabfileProtocol.swift │ ├── Snapshotfile.swift │ ├── SnapshotfileProtocol.swift │ ├── SocketClient.swift │ ├── SocketClientDelegateProtocol.swift │ ├── SocketResponse.swift │ ├── main.swift │ └── upgrade_manifest.json ├── inputFile.xcfilelist ├── install.sh ├── libcrypto-iOS-Sim.a ├── libcrypto-iOS.a ├── libcrypto.xcframework ├── Info.plist ├── ios-arm64 │ ├── Headers │ │ ├── LICENSE │ │ ├── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1err.h │ │ │ ├── asn1t.h │ │ │ ├── async.h │ │ │ ├── asyncerr.h │ │ │ ├── bio.h │ │ │ ├── bioerr.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── bnerr.h │ │ │ ├── buffer.h │ │ │ ├── buffererr.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── cmserr.h │ │ │ ├── comp.h │ │ │ ├── comperr.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── conferr.h │ │ │ ├── crypto.h │ │ │ ├── cryptoerr.h │ │ │ ├── ct.h │ │ │ ├── cterr.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── dherr.h │ │ │ ├── dsa.h │ │ │ ├── dsaerr.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecerr.h │ │ │ ├── engine.h │ │ │ ├── engineerr.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── evperr.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── kdf.h │ │ │ ├── kdferr.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── objectserr.h │ │ │ ├── ocsp.h │ │ │ ├── ocsperr.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslconf_ios_arm64.h │ │ │ ├── opensslconf_ios_x86_64.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pemerr.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs12err.h │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.h │ │ │ ├── rand.h │ │ │ ├── rand_drbg.h │ │ │ ├── randerr.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── rc5.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── rsaerr.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl3.h │ │ │ ├── sslerr.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── storeerr.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── tserr.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── uierr.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ ├── x509err.h │ │ │ ├── x509v3.h │ │ │ └── x509v3err.h │ │ └── opensslconf-template.h │ └── libcrypto-iOS.a └── ios-arm64_x86_64-simulator │ ├── Headers │ ├── LICENSE │ ├── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h │ │ ├── opensslconf_ios_arm64.h │ │ ├── opensslconf_ios_x86_64.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── rand.h │ │ ├── rand_drbg.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h │ └── opensslconf-template.h │ └── libcrypto-iOS-Sim.a ├── libssl-iOS-Sim.a ├── libssl-iOS.a ├── libssl.xcframework ├── Info.plist ├── ios-arm64 │ ├── Headers │ │ ├── LICENSE │ │ ├── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1err.h │ │ │ ├── asn1t.h │ │ │ ├── async.h │ │ │ ├── asyncerr.h │ │ │ ├── bio.h │ │ │ ├── bioerr.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── bnerr.h │ │ │ ├── buffer.h │ │ │ ├── buffererr.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── cmserr.h │ │ │ ├── comp.h │ │ │ ├── comperr.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── conferr.h │ │ │ ├── crypto.h │ │ │ ├── cryptoerr.h │ │ │ ├── ct.h │ │ │ ├── cterr.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── dherr.h │ │ │ ├── dsa.h │ │ │ ├── dsaerr.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecerr.h │ │ │ ├── engine.h │ │ │ ├── engineerr.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── evperr.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── kdf.h │ │ │ ├── kdferr.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── objectserr.h │ │ │ ├── ocsp.h │ │ │ ├── ocsperr.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslconf_ios_arm64.h │ │ │ ├── opensslconf_ios_x86_64.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pemerr.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs12err.h │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.h │ │ │ ├── rand.h │ │ │ ├── rand_drbg.h │ │ │ ├── randerr.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── rc5.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── rsaerr.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl3.h │ │ │ ├── sslerr.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── storeerr.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── tserr.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── uierr.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ ├── x509err.h │ │ │ ├── x509v3.h │ │ │ └── x509v3err.h │ │ └── opensslconf-template.h │ └── libssl-iOS.a └── ios-arm64_x86_64-simulator │ ├── Headers │ ├── LICENSE │ ├── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h │ │ ├── opensslconf_ios_arm64.h │ │ ├── opensslconf_ios_x86_64.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── rand.h │ │ ├── rand_drbg.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h │ └── opensslconf-template.h │ └── libssl-iOS-Sim.a ├── outputFile.xcfilelist ├── readme-header.png └── wcarthage /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "HamzaGhazouani/HGPlaceholders" 2 | binary "https://icepa.github.io/Tor.framework/Tor.json" == 400.6.3 3 | binary "https://vergecurrency.github.io/BitcoinKit/BitcoinKit.json" == 1.2.2 4 | github "Swinject/Swinject" ~> 2.6.0 5 | github "Swinject/SwinjectStoryboard" "master" 6 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | binary "https://icepa.github.io/Tor.framework/Tor.json" "400.6.3" 2 | binary "https://vergecurrency.github.io/BitcoinKit/BitcoinKit.json" "1.2.2" 3 | github "HamzaGhazouani/HGPlaceholders" "0.4.0" 4 | github "Swinject/Swinject" "2.7.1" 5 | github "Swinject/SwinjectStoryboard" "0ca45c83a8aa398c153d8a036c95abb4343cfa0c" 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODFILE CHECKSUM: d3e5c8e75fb0c6a8cf21f6ade50ad334f790ed72 2 | 3 | COCOAPODS: 1.16.2 4 | -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODFILE CHECKSUM: d3e5c8e75fb0c6a8cf21f6ade50ad334f790ed72 2 | 3 | COCOAPODS: 1.16.2 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiri/Pods-VergeSiri-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiri/Pods-VergeSiri-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_VergeSiri : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_VergeSiri 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiri/Pods-VergeSiri-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_VergeSiriVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_VergeSiriVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiri/Pods-VergeSiri.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiri/Pods-VergeSiri.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_VergeSiri { 2 | umbrella header "Pods-VergeSiri-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiri/Pods-VergeSiri.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiriUI/Pods-VergeSiriUI-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiriUI/Pods-VergeSiriUI-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_VergeSiriUI : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_VergeSiriUI 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiriUI/Pods-VergeSiriUI-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_VergeSiriUIVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_VergeSiriUIVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiriUI/Pods-VergeSiriUI.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiriUI/Pods-VergeSiriUI.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_VergeSiriUI { 2 | umbrella header "Pods-VergeSiriUI-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeSiriUI/Pods-VergeSiriUI.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeWatch Extension/Pods-VergeWatch Extension-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeWatch Extension/Pods-VergeWatch Extension-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_VergeWatch_Extension : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_VergeWatch_Extension 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeWatch Extension/Pods-VergeWatch Extension-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_VergeWatch_ExtensionVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_VergeWatch_ExtensionVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeWatch Extension/Pods-VergeWatch Extension.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeWatch Extension/Pods-VergeWatch Extension.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_VergeWatch_Extension { 2 | umbrella header "Pods-VergeWatch Extension-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeWatch Extension/Pods-VergeWatch Extension.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_VergeiOS_VergeiOSUITests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_VergeiOS_VergeiOSUITests 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/Tor/Tor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Tor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/Tor/Tor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Tor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_VergeiOS_VergeiOSUITestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_VergeiOS_VergeiOSUITestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_VergeiOS_VergeiOSUITests { 2 | umbrella header "Pods-VergeiOS-VergeiOSUITests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS-VergeiOSUITests/Pods-VergeiOS-VergeiOSUITests.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_VergeiOS : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_VergeiOS 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/Pods-VergeiOS/Pods-VergeiOS-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/Tor/Tor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Tor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/Pods-VergeiOS/Pods-VergeiOS-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/Tor/Tor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Tor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_VergeiOSVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_VergeiOSVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_VergeiOS { 2 | umbrella header "Pods-VergeiOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOS/Pods-VergeiOS.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOSTests/Pods-VergeiOSTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOSTests/Pods-VergeiOSTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_VergeiOSTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_VergeiOSTests 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOSTests/Pods-VergeiOSTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_VergeiOSTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_VergeiOSTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOSTests/Pods-VergeiOSTests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOSTests/Pods-VergeiOSTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_VergeiOSTests { 2 | umbrella header "Pods-VergeiOSTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-VergeiOSTests/Pods-VergeiOSTests.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 8 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 9 | -------------------------------------------------------------------------------- /Sources/Components/ImageViews/NoBalancePlaceholderImageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NoBalancePlaceholderImageView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 29/05/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class NoBalancePlaceholderImageView: ThemedImageView { 12 | 13 | override var themeImageName: String { 14 | return ThemeManager.shared.currentTheme.noBalancePlaceholderImage 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/ImageViews/NoContactsPlaceholderImageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NoContactsPlaceholderImageView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 29/05/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class NoContactsPlaceholderImageView: ThemedImageView { 12 | 13 | override var themeImageName: String { 14 | return ThemeManager.shared.currentTheme.noContactsPlaceholderImage 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/ImageViews/TransactionsPlaceholderImageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TransactionsPlaceholderImageView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 30/05/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class TransactionsPlaceholderImageView: ThemedImageView { 12 | 13 | override var themeImageName: String { 14 | return ThemeManager.shared.currentTheme.transactionsPlaceholderImage 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/ImageViews/UnlockBackgroundImageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UnlockBackgroundImageView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 30/05/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class UnlockBackgroundImageView: ThemedImageView { 12 | 13 | override var themeImageName: String { 14 | return ThemeManager.shared.currentTheme.unlockBackgroundImage 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/Keyboards/BackKey.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BackKey.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 24-07-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class BackKey: ImageKey { 12 | init() { 13 | super.init(image: UIImage(named: "Backspace")!) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Components/Keyboards/EmptyKey.swift: -------------------------------------------------------------------------------- 1 | // 2 | // EmptyKey.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 24-07-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class EmptyKey: AbstractKey { 12 | init() { 13 | super.init(label: "") 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Components/Keyboards/ImageKey.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ImageKey.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 24-07-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ImageKey: AbstractKey { 12 | init(image: UIImage) { 13 | super.init(label: "") 14 | self.image = image 15 | } 16 | 17 | override func styleKey(_ button: KeyboardButton) { 18 | button.setImage(self.image, for: .normal) 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Sources/Components/Keyboards/KeyboardKey.swift: -------------------------------------------------------------------------------- 1 | // 2 | // KeyboardKey.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 24-07-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | protocol KeyboardKey { 12 | func styleKey(_ button: KeyboardButton) 13 | func getValue() -> Any? 14 | 15 | var button: UIButton? { get set } 16 | 17 | func isKind(of: AnyClass) -> Bool 18 | func setButton(_ button: UIButton) 19 | } 20 | -------------------------------------------------------------------------------- /Sources/Components/Labels/MutedLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MutedLabel.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 14/04/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class MutedLabel: TitleLabel { 12 | 13 | override func updateColors() { 14 | self.textColor = ThemeManager.shared.vergeGrey() 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/Labels/PrimaryLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PrimaryLabel.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 14/04/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class PrimaryLabel: TitleLabel { 12 | 13 | override func updateColors() { 14 | self.textColor = ThemeManager.shared.primaryLight() 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/Labels/SubtitleLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SubtitleLabel.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 14/04/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class SubtitleLabel: TitleLabel { 12 | 13 | override func updateColors() { 14 | self.textColor = ThemeManager.shared.primaryDark() 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/Labels/TextLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TextLabel.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 14/04/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class TextLabel: TitleLabel { 12 | 13 | override func updateColors() { 14 | self.textColor = ThemeManager.shared.secondaryLight() 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/Notification/NotificationViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 14/10/2018. 3 | // Copyright (c) 2018 Verge Currency. All rights reserved. 4 | // 5 | 6 | import UIKit 7 | 8 | class NotificationViewController: UIViewController { 9 | 10 | @IBOutlet weak var message: UILabel! 11 | 12 | func setMessage(_ message: String) { 13 | DispatchQueue.main.async { 14 | self.message.text = message 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/SubtitleImageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TitleImageView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 14/04/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class SubtitleImageView: UIImageView { 12 | override func updateColors() { 13 | self.tintColor = ThemeManager.shared.primaryDark() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Components/TableCellViews/AddressCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AddressCell.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 13-08-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class AddressCell: UITableViewCell { 12 | @IBOutlet weak var addressTextField: UITextField! 13 | 14 | @IBAction func pasteButtonClicked(_ sender: Any) { 15 | addressTextField.text = UIPasteboard.general.string 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/TableViews/PlaceholderTableView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PlaceholderTableView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 11-09-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | //import HGPlaceholders 10 | 11 | class PlaceholderTableView: TableView {} 12 | -------------------------------------------------------------------------------- /Sources/Components/TableViews/TableSection.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TableSection.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 06/08/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | struct TableSection { 12 | public let header: String 13 | public let footer: String 14 | public let items: [UITableViewCell] 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Components/Views/BackgroundView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BackgroundView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 14/04/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class BackgroundView: UIView { 12 | 13 | override func awakeFromNib() { 14 | super.awakeFromNib() 15 | self.becomeThemeable() 16 | } 17 | 18 | override func updateColors() { 19 | self.backgroundColor = ThemeManager.shared.backgroundGrey() 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Sources/Components/Views/LightBackgroundView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LightBackgroundView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 15/04/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class LightBackgroundView: BackgroundView { 12 | 13 | override func updateColors() { 14 | self.backgroundColor = ThemeManager.shared.backgroundWhite() 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/Views/ReceiveCardImageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ReceiveCardImageView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 02/06/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ReceiveCardImageView: CardImageView { 12 | 13 | override var themeImageName: String { 14 | return ThemeManager.shared.currentTheme.receiveCardImage 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/Views/SendCardImageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SendCardImageView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 02/06/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class SendCardImageView: CardImageView { 12 | 13 | override var themeImageName: String { 14 | return ThemeManager.shared.currentTheme.sendCardImage 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Components/WalletChart/ChartFilterToolbarDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 17/10/2018. 3 | // Copyright (c) 2018 Verge Currency. All rights reserved. 4 | // 5 | 6 | import UIKit 7 | 8 | protocol ChartFilterToolbarDelegate: class, UIToolbarDelegate { 9 | func didSelectChartFilter(filter: ChartFilterToolbar.Filter) 10 | } 11 | -------------------------------------------------------------------------------- /Sources/Delegates/AmountDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 24-08-18. 3 | // Copyright (c) 2018 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | protocol AmountDelegate: class { 9 | func didChangeAmount(_ transaction: WalletTransactionFactory) 10 | func currentAmount() -> NSNumber 11 | func currentCurrency() -> String 12 | } 13 | -------------------------------------------------------------------------------- /Sources/Delegates/CurrencyDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CurrencyDelegate.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 28/09/2020. 6 | // Copyright © 2020 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol CurrencyDelegate { 12 | func didSelectCurrency(currency: String, sender: Any?) 13 | } 14 | -------------------------------------------------------------------------------- /Sources/Delegates/KeyboardDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // KeyboardDelegate.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 24-07-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol KeyboardDelegate: class { 12 | func didReceiveInput(_ sender: Keyboard, input: String, keyboardKey: KeyboardKey) 13 | } 14 | -------------------------------------------------------------------------------- /Sources/Delegates/RecipientDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 24-08-18. 3 | // Copyright (c) 2018 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | protocol RecipientDelegate: class { 9 | func didSelectRecipientAddress(_ address: String) 10 | func selectedRecipientAddress() -> String 11 | } 12 | -------------------------------------------------------------------------------- /Sources/Delegates/SendTransactionDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SendTransactionDelegate.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 21-09-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol SendTransactionDelegate: class { 12 | func didChangeSendTransaction(_ transaction: WalletTransactionFactory) 13 | func getSendTransaction() -> WalletTransactionFactory 14 | } 15 | -------------------------------------------------------------------------------- /Sources/Extensions/DispatchTime+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DispatchTime+Extensions.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 21/04/2020. 6 | // Copyright © 2020 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension DispatchTime { 12 | func secondsElapsed(till: DispatchTime) -> Double { 13 | let nanoTime = till.uptimeNanoseconds - self.uptimeNanoseconds 14 | 15 | return Double(nanoTime) / 1_000_000_000 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Sources/Extensions/Error+Init.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 10/04/2020. 3 | // Copyright (c) 2020 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | extension NSError { 9 | convenience init(_ message: String) { 10 | self.init(domain: message, code: 0) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/Extensions/UIWindow+Levels.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 05/04/2020. 3 | // Copyright (c) 2020 Verge Currency. All rights reserved. 4 | // 5 | 6 | import UIKit 7 | 8 | extension UIWindow.Level { 9 | public static let torFixer: UIWindow.Level = UIWindow.Level.normal + 1 10 | public static let torStatusIndicator: UIWindow.Level = UIWindow.Level.normal + 2 11 | public static let notificationBar: UIWindow.Level = UIWindow.Level.normal + 3 12 | } 13 | -------------------------------------------------------------------------------- /Sources/HDWalletKit/Purpose.swift: -------------------------------------------------------------------------------- 1 | public enum Purpose: UInt32 { 2 | case bip44 = 44 3 | case bip49 = 49 4 | case bip84 = 84 5 | case bip86 = 86 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Models/Bn/Balance.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 12/07/2019. 3 | // Copyright © 2019 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | extension Bn { 9 | struct Balance: Decodable { 10 | let confirmed: UInt64 11 | let unconfirmed: UInt64 12 | let balance: UInt64 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Sources/Models/Bn/Bn.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 12/04/2020. 3 | // Copyright (c) 2020 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | struct Bn { 9 | // Bn namespace 10 | } 11 | -------------------------------------------------------------------------------- /Sources/Models/Bn/SendResponse.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 12/07/2019. 3 | // Copyright © 2019 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | extension Bn { 9 | struct SendResponse: Decodable { 10 | public let txid: String 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/Models/IpAddress.swift: -------------------------------------------------------------------------------- 1 | // 2 | // IpAddress.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 04/10/2018. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct IpAddress: Decodable { 12 | 13 | public let ip: String 14 | public let country_name: String 15 | public let latitude: Double 16 | public let longitude: Double 17 | 18 | } 19 | -------------------------------------------------------------------------------- /Sources/Models/KeyBalance.swift: -------------------------------------------------------------------------------- 1 | // 2 | // KeyBalance.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 21/03/2020. 6 | // Copyright © 2020 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import BitcoinKit 11 | 12 | public struct KeyBalance { 13 | let privateKey: PrivateKey 14 | let balance: Bn.Balance 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Models/Vws/AddressBalance.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 12/11/2018. 3 | // Copyright (c) 2018 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | extension Vws { 9 | struct AddressBalance: Decodable { 10 | let address: String 11 | let path: String? 12 | let amount: Double 13 | 14 | var amountValue: NSNumber { 15 | return NSNumber(value: amount / Constants.satoshiDivider) 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Sources/Models/Vws/InputOutput.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 12/11/2018. 3 | // Copyright (c) 2018 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | extension Vws { 9 | struct InputOutput: Decodable { 10 | let amount: Int 11 | let address: String 12 | let isMine: Bool? 13 | 14 | var amountValue: NSNumber { 15 | return NSNumber(value: Double(amount) / Constants.satoshiDivider) 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Sources/Models/Vws/TxProposal.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 12/11/2018. 3 | // Copyright (c) 2018 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | extension Vws { 9 | struct TxProposal { 10 | var address: String 11 | var amount: NSNumber 12 | var message: String 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Sources/Models/Vws/Vws.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 09/04/2020. 3 | // Copyright (c) 2020 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | struct Vws { 9 | // Vws namespace 10 | } 11 | 12 | protocol DecodableError: Decodable { 13 | var message: String { get } 14 | var error: Error { get } 15 | } 16 | 17 | extension DecodableError { 18 | var error: Error { 19 | return NSError(domain: self.message, code: 500) 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Sources/Models/Vws/WalletAddressesOptions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 09/04/2020. 3 | // Copyright (c) 2020 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | extension Vws { 9 | struct WalletAddressesOptions { 10 | var limit: Int? 11 | var reverse: Bool = false 12 | } 13 | 14 | 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Sources/Models/Vws/WalletOptions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 09/04/2020. 3 | // Copyright (c) 2020 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | 8 | extension Vws { 9 | struct WalletOptions: Encodable {} 10 | } 11 | -------------------------------------------------------------------------------- /Sources/Models/WatchInfo.swift: -------------------------------------------------------------------------------- 1 | // 2 | // WatchInfo.swift 3 | // VergeiOS 4 | // 5 | // Created by Ivan Manov on 3/2/19. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct WatchRequestCredentials { 12 | var url: String? 13 | var copayerId: String? 14 | var signature: String? 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Protocols/HiddenClientProtocol.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 02/04/2020. 3 | // Copyright (c) 2020 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | import Promises 8 | 9 | protocol HiddenClientProtocol { 10 | func getURLSession() -> Promise 11 | } 12 | -------------------------------------------------------------------------------- /Sources/Protocols/HttpSessionProtocol.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 16/04/2020. 3 | // Copyright (c) 2020 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | import Promises 8 | 9 | protocol HttpSessionProtocol { 10 | func dataTask(with request: URLRequest) -> Promise 11 | func dataTask(with url: URL) -> Promise 12 | } 13 | 14 | enum HttpSessionError: Swift.Error { 15 | case nilDataReceived 16 | } 17 | -------------------------------------------------------------------------------- /Sources/Protocols/TickerProtocol.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TickerProtocol.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 01/04/2020. 6 | // Copyright © 2020 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol TickerProtocol { 12 | func start() 13 | func stop() 14 | func tick() 15 | } 16 | -------------------------------------------------------------------------------- /Sources/Protocols/WalletManagerProtocol.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Swen van Zanten on 26/10/2019. 3 | // Copyright © 2019 Verge Currency. All rights reserved. 4 | // 5 | 6 | import Foundation 7 | import Promises 8 | 9 | protocol WalletManagerProtocol { 10 | func getWallet() -> Promise 11 | func getStatus() -> Promise 12 | func scanWallet() -> Promise 13 | } 14 | -------------------------------------------------------------------------------- /Sources/Protocols/WalletSweepingScannerViewDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // WalletSweepingScannerViewDelegate.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 07/08/2019. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol WalletSweepingScannerViewDelegate: class { 12 | func didScanValue(scannedValue: String) 13 | } 14 | -------------------------------------------------------------------------------- /Sources/Utils/Platform.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Platform.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 27-07-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct Platform { 12 | 13 | public static var isSimulator: Bool { 14 | #if targetEnvironment(simulator) 15 | return true 16 | #else 17 | return false 18 | #endif 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Sources/Wallet/TxAction.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TxAction.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 06-09-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public enum TxAction: String { 12 | case Sent 13 | case Received 14 | case Moved 15 | } 16 | -------------------------------------------------------------------------------- /TestPlans/UITests.xctestplan: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : [ 3 | { 4 | "id" : "FE703683-AF5A-47B8-B246-BB04E90CDD31", 5 | "name" : "Configuration 1", 6 | "options" : { 7 | 8 | } 9 | } 10 | ], 11 | "defaultOptions" : { 12 | 13 | }, 14 | "testTargets" : [ 15 | { 16 | "target" : { 17 | "containerPath" : "container:VergeiOS.xcodeproj", 18 | "identifier" : "A3256693211CBBE2006FB08A", 19 | "name" : "VergeiOSUITests" 20 | } 21 | } 22 | ], 23 | "version" : 1 24 | } 25 | -------------------------------------------------------------------------------- /VergeSiri/VergeSiri.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.apple.DualityExtension 8 | group.apple.VPNapp 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /VergeSiriUI/Assets/VergeSiriUI.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.apple.DualityExtension 8 | group.apple.VPNapp 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /VergeWatch Extension/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeWatch Extension/Views/Main/MainRowController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MainRowController.swift 3 | // VergeWatch Extension 4 | // 5 | // Created by Ivan Manov on 1/27/19. 6 | // Copyright © 2019 Verge Currency. All rights reserved. 7 | // 8 | 9 | import WatchKit 10 | 11 | class MainRowController: NSObject { 12 | @IBOutlet var titleLabel: WKInterfaceLabel! 13 | @IBOutlet var subtitleLabel: WKInterfaceLabel! 14 | } 15 | -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-24@2x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-27.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-27.5@2x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-44@2x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-86@2x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/Icon-98@2x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/icon-1024-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/icon-1024-1024.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/icon-108@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/icon-108@2x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/icons/icon_development.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_development.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/icons/icon_development.imageset/icon_development.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/icons/icon_development.imageset/icon_development.pdf -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/icons/icon_price.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-price-tag.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/icons/icon_price.imageset/icons8-price-tag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/icons/icon_price.imageset/icons8-price-tag.pdf -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/icons/icon_qrcode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-qr-code-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/icons/icon_qrcode.imageset/icons8-qr-code-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/icons/icon_qrcode.imageset/icons8-qr-code-2.pdf -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/icons/icon_wallet.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-purse-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/icons/icon_wallet.imageset/icons8-purse-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/icons/icon_wallet.imageset/icons8-purse-2.pdf -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/other/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/other/watch_logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "watch_logo.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /VergeWatch/Assets.xcassets/other/watch_logo.imageset/watch_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeWatch/Assets.xcassets/other/watch_logo.imageset/watch_logo.png -------------------------------------------------------------------------------- /VergeiOS-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // VergeiOS.h 3 | // VergeiOS 4 | // 5 | // Created by shami kapoor on 26/09/25. 6 | // Copyright © 2025 Verge Currency. All rights reserved. 7 | // 8 | 9 | #ifndef VergeiOS_h 10 | #define VergeiOS_h 11 | //#include 12 | //#include 13 | //#include 14 | //#include 15 | //#include 16 | //#import 17 | //#import 18 | //#include 19 | #endif /* VergeiOS_h */ 20 | -------------------------------------------------------------------------------- /VergeiOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /VergeiOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /VergeiOS.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VergeiOS/.swiftlint.yml: -------------------------------------------------------------------------------- 1 | disabled_rules: 2 | - identifier_name 3 | - force_cast 4 | - force_try 5 | - control_statement 6 | -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-1024.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-20.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-20@2x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-20@3x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-29.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-29@2x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-29@3x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-40.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-40@2x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-40@3x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-60@2x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-60@3x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-76.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-76@2x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/AppIcon.appiconset/icon-1024-83.5@2x.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "verge-bg.png" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Background.imageset/verge-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Background.imageset/verge-bg.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Background2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "verge-bg.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Background2.imageset/verge-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Background2.imageset/verge-bg.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "compression-type" : "automatic" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/DisconnectWalletPlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "disconnet-wallet.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/DisconnectWalletPlaceholder.imageset/disconnet-wallet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Headers/DisconnectWalletPlaceholder.imageset/disconnet-wallet.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/DonatePlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Donate-Header.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/DonatePlaceholder.imageset/Donate-Header.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Headers/DonatePlaceholder.imageset/Donate-Header.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/PaperkeyPlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Paperkey-Header.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/PaperkeyPlaceholder.imageset/Paperkey-Header.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Headers/PaperkeyPlaceholder.imageset/Paperkey-Header.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/PassphrassePlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Passphrase-header.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/PassphrassePlaceholder.imageset/Passphrase-header.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Headers/PassphrassePlaceholder.imageset/Passphrase-header.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/PrivateKeySweepingPlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "PrivateKeySweeperHeader.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/PrivateKeySweepingPlaceholder.imageset/PrivateKeySweeperHeader.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Headers/PrivateKeySweepingPlaceholder.imageset/PrivateKeySweeperHeader.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/SweepPaperWalletPlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "SweepPaperWallet-Header.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/SweepPaperWalletPlaceholder.imageset/SweepPaperWallet-Header.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Headers/SweepPaperWalletPlaceholder.imageset/SweepPaperWallet-Header.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/TorPlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Tor-Header.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Headers/TorPlaceholder.imageset/Tor-Header.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Headers/TorPlaceholder.imageset/Tor-Header.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/4Digits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-4-key.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/4Digits.imageset/icons8-4-key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/4Digits.imageset/icons8-4-key.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/5Digits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-5-key.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/5Digits.imageset/icons8-5-key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/5Digits.imageset/icons8-5-key.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/6Digits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-6-key.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/6Digits.imageset/icons8-6-key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/6Digits.imageset/icons8-6-key.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/7Digits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-7-key.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/7Digits.imageset/icons8-7-key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/7Digits.imageset/icons8-7-key.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/8Digits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-8-key.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/8Digits.imageset/icons8-8-key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/8Digits.imageset/icons8-8-key.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/AddAddress.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-plus.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/AddAddress.imageset/icons8-plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/AddAddress.imageset/icons8-plus.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/AddContact.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-contact-3.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/AddContact.imageset/icons8-contact-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/AddContact.imageset/icons8-contact-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Address.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-map-pin-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Address.imageset/icons8-map-pin-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Address.imageset/icons8-map-pin-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/AddressBook.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-copybook.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/AddressBook.imageset/icons8-copybook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/AddressBook.imageset/icons8-copybook.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ArrowLeft.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-back-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ArrowLeft.imageset/icons8-back-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/ArrowLeft.imageset/icons8-back-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ArrowRight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-forward-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ArrowRight.imageset/icons8-forward-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/ArrowRight.imageset/icons8-forward-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Backspace.imageset/backspace-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Backspace.imageset/backspace-2.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Backspace.imageset/backspace-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Backspace.imageset/backspace-3.png -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Block.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-blockly-blue-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Block.imageset/icons8-blockly-blue-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Block.imageset/icons8-blockly-blue-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Chart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-line-chart.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Chart.imageset/icons8-line-chart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Chart.imageset/icons8-line-chart.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Checked.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-checked.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Checked.imageset/icons8-checked.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Checked.imageset/icons8-checked.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ChecklistOneItem.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "icons8-todo-list.pdf", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ChecklistOneItem.imageset/icons8-todo-list.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/ChecklistOneItem.imageset/icons8-todo-list.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ChecklistThreeItem.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "icons8-to-do.pdf", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ChecklistThreeItem.imageset/icons8-to-do.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/ChecklistThreeItem.imageset/icons8-to-do.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ChecklistTwoItem.imageset/icons8-todo-list.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/ChecklistTwoItem.imageset/icons8-todo-list.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/CheckmarkCircle.imageset/icons8-document-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/CheckmarkCircle.imageset/icons8-document-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ChevronUp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-chevron-up.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ChevronUp.imageset/icons8-chevron-up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/ChevronUp.imageset/icons8-chevron-up.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ClearTextField.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-erase-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ClearTextField.imageset/icons8-erase-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/ClearTextField.imageset/icons8-erase-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ClipboardCheck.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-task-completed-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ClipboardCheck.imageset/icons8-task-completed-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/ClipboardCheck.imageset/icons8-task-completed-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-multiply-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Close.imageset/icons8-multiply-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Close.imageset/icons8-multiply-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/ConfirmPaperkey.imageset/icons8-rename.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/ConfirmPaperkey.imageset/icons8-rename.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Confirmations.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-approval-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Confirmations.imageset/icons8-approval-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Confirmations.imageset/icons8-approval-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Contacts.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-user-account.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Contacts.imageset/icons8-user-account.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Contacts.imageset/icons8-user-account.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Copy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-copy.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Copy.imageset/icons8-copy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Copy.imageset/icons8-copy.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Credits.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-people.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Credits.imageset/icons8-people.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Credits.imageset/icons8-people.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Currency.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-currency-exchange.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Currency.imageset/icons8-currency-exchange.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Currency.imageset/icons8-currency-exchange.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Details.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-view-details-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Details.imageset/icons8-view-details-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Details.imageset/icons8-view-details-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Development.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-developer-mode.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Development.imageset/icons8-developer-mode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Development.imageset/icons8-developer-mode.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Disconnect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-disconnected.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Disconnect.imageset/icons8-disconnected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Disconnect.imageset/icons8-disconnected.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Donate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-receive-cash-3.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Donate.imageset/icons8-receive-cash-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Donate.imageset/icons8-receive-cash-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Duplicate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-replicate-rows.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Duplicate.imageset/icons8-replicate-rows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Duplicate.imageset/icons8-replicate-rows.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/FaceID.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-face-id.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/FaceID.imageset/icons8-face-id.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/FaceID.imageset/icons8-face-id.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/FinalizeRestore.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "icons8-eye.pdf", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/FinalizeRestore.imageset/icons8-eye.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/FinalizeRestore.imageset/icons8-eye.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/FlashOff.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-flash-off.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/FlashOff.imageset/icons8-flash-off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/FlashOff.imageset/icons8-flash-off.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/FlashOn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-flash-on.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/FlashOn.imageset/icons8-flash-on.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/FlashOn.imageset/icons8-flash-on.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Gift.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-gift.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Gift.imageset/icons8-gift.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Gift.imageset/icons8-gift.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/GitHub.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-github.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/GitHub.imageset/icons8-github.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/GitHub.imageset/icons8-github.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/HDWallet.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "HDWallet.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/HDWallet.imageset/HDWallet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/HDWallet.imageset/HDWallet.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Help.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-help-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Help.imageset/icons8-help-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Help.imageset/icons8-help-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Hero.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-statue.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Hero.imageset/icons8-statue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Hero.imageset/icons8-statue.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-picture.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Image.imageset/icons8-picture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Image.imageset/icons8-picture.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Languages.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-language.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Languages.imageset/icons8-language.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Languages.imageset/icons8-language.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Memo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-note-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Memo.imageset/icons8-note-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Memo.imageset/icons8-note-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Moved.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-truck.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Moved.imageset/icons8-truck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Moved.imageset/icons8-truck.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/NFC.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "nfc-icon.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "template" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/NFC.imageset/nfc-icon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/NFC.imageset/nfc-icon.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/NFCIcon-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "nfc-icon-1.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "template" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/NFCIcon-1.imageset/nfc-icon-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/NFCIcon-1.imageset/nfc-icon-1.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/NFCIcon-2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "nfc-icon-2.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "template" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/NFCIcon-2.imageset/nfc-icon-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/NFCIcon-2.imageset/nfc-icon-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/NFCLabel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "nfc-icon-3.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "template" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/NFCLabel.imageset/nfc-icon-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/NFCLabel.imageset/nfc-icon-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PaperKey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "icons8-document-3.pdf", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PaperKey.imageset/icons8-document-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/PaperKey.imageset/icons8-document-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PaperKeyAlt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-document-4.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PaperKeyAlt.imageset/icons8-document-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/PaperKeyAlt.imageset/icons8-document-4.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Paste.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-paste.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Paste.imageset/icons8-paste.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Paste.imageset/icons8-paste.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Payment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-card-payment-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Payment.imageset/icons8-card-payment-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Payment.imageset/icons8-card-payment-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Pin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-password.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Pin.imageset/icons8-password.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Pin.imageset/icons8-password.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PinConfirmed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-protect.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PinConfirmed.imageset/icons8-protect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/PinConfirmed.imageset/icons8-protect.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PinUnconfirmed.imageset/icons8-password.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/PinUnconfirmed.imageset/icons8-password.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PriceStatistics.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-increase.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PriceStatistics.imageset/icons8-increase.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/PriceStatistics.imageset/icons8-increase.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PriceTag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-price-tag.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/PriceTag.imageset/icons8-price-tag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/PriceTag.imageset/icons8-price-tag.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/QRcode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-qr-code-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/QRcode.imageset/icons8-qr-code-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/QRcode.imageset/icons8-qr-code-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Quill.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-quill-with-ink.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Quill.imageset/icons8-quill-with-ink.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Quill.imageset/icons8-quill-with-ink.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/RateApp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-star.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/RateApp.imageset/icons8-star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/RateApp.imageset/icons8-star.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Receive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-receive-cash-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Receive.imageset/icons8-receive-cash-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Receive.imageset/icons8-receive-cash-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Received.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-collapse-arrow-3.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Received.imageset/icons8-collapse-arrow-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Received.imageset/icons8-collapse-arrow-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Receiving.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-historical-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Receiving.imageset/icons8-historical-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Receiving.imageset/icons8-historical-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Recipient.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-man.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Recipient.imageset/icons8-man.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Recipient.imageset/icons8-man.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Refresh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-synchronize.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Refresh.imageset/icons8-synchronize.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Refresh.imageset/icons8-synchronize.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/RestoreKey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-restore-page-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/RestoreKey.imageset/icons8-restore-page-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/RestoreKey.imageset/icons8-restore-page-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Restoring.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-broom-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Restoring.imageset/icons8-broom-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Restoring.imageset/icons8-broom-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Rocket.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-rocket-4.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Rocket.imageset/icons8-rocket-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Rocket.imageset/icons8-rocket-4.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Send.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-paper-plane-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Send.imageset/icons8-paper-plane-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Send.imageset/icons8-paper-plane-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Sending.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-gps-signal-3.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Sending.imageset/icons8-gps-signal-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Sending.imageset/icons8-gps-signal-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Sent.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-expand-arrow-4.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Sent.imageset/icons8-expand-arrow-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Sent.imageset/icons8-expand-arrow-4.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Server.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-server.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Server.imageset/icons8-server.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Server.imageset/icons8-server.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Settings.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-settings-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Settings.imageset/icons8-settings-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Settings.imageset/icons8-settings-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-upload.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Share.imageset/icons8-upload.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Share.imageset/icons8-upload.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Stealth.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-anonymous-mask.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Stealth.imageset/icons8-anonymous-mask.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Stealth.imageset/icons8-anonymous-mask.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/SubmitPaperkey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-submit-document-3.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/SubmitPaperkey.imageset/icons8-submit-document-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/SubmitPaperkey.imageset/icons8-submit-document-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Sweep.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-broom.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Sweep.imageset/icons8-broom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Sweep.imageset/icons8-broom.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Tor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "icons8-onion-3.pdf", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Tor.imageset/icons8-onion-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Tor.imageset/icons8-onion-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-onion-filled-3.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnected.imageset/icons8-onion-filled-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/TorConnected.imageset/icons8-onion-filled-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnecting/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image-1.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-1.imageset/image-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-1.imageset/image-1.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-2.imageset/image-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-2.imageset/image-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image-3.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-3.imageset/image-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-3.imageset/image-3.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image 4.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-4.imageset/image 4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/TorConnecting/TorConnecting-4.imageset/image 4.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnectionError.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-onion-filled-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorConnectionError.imageset/icons8-onion-filled-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/TorConnectionError.imageset/icons8-onion-filled-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorDisconnected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-onion-filled-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TorDisconnected.imageset/icons8-onion-filled-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/TorDisconnected.imageset/icons8-onion-filled-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TouchID.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-touch-id.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/TouchID.imageset/icons8-touch-id.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/TouchID.imageset/icons8-touch-id.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Transactions.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-transaction-list-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Transactions.imageset/icons8-transaction-list-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Transactions.imageset/icons8-transaction-list-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/User.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-male-user.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/User.imageset/icons8-male-user.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/User.imageset/icons8-male-user.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Wallet.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-purse-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Wallet.imageset/icons8-purse-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Wallet.imageset/icons8-purse-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Website.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-web-design.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Icons/Website.imageset/icons8-web-design.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Icons/Website.imageset/icons8-web-design.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Logos/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Logos/LogoBlack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "verge-color_logo.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Logos/LogoBlack.imageset/verge-color_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Logos/LogoBlack.imageset/verge-color_logo.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Logos/LogoWhite.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "verge-color-white_logo.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Logos/LogoWhite.imageset/verge-color-white_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Logos/LogoWhite.imageset/verge-color-white_logo.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Placeholders/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Placeholders/ServiceURL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ServiceUrl.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Placeholders/ServiceURL.imageset/ServiceUrl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Placeholders/ServiceURL.imageset/ServiceUrl.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Placeholders/TorIntro1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Tor-intro-1.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Placeholders/TorIntro1.imageset/Tor-intro-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Placeholders/TorIntro1.imageset/Tor-intro-1.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Placeholders/TorMapOverlay.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "MapOverlay.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Placeholders/TorMapOverlay.imageset/MapOverlay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Placeholders/TorMapOverlay.imageset/MapOverlay.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-10.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-10.imageset/frame-10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-10.imageset/frame-10.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-11.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-11.imageset/frame-11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-11.imageset/frame-11.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-12.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-12.imageset/frame-12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-12.imageset/frame-12.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-13.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-13.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-13.imageset/frame-13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-13.imageset/frame-13.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-14.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-14.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-14.imageset/frame-14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-14.imageset/frame-14.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-15.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-15.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-15.imageset/frame-15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-15.imageset/frame-15.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-16.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-16.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-16.imageset/frame-16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-16.imageset/frame-16.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-17.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-17.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-17.imageset/frame-17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-17.imageset/frame-17.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-18.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-18.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-18.imageset/frame-18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-18.imageset/frame-18.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-19.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-19.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-19.imageset/frame-19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-19.imageset/frame-19.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-20.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-20.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-20.imageset/frame-20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-20.imageset/frame-20.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-21.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-21.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-21.imageset/frame-21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-21.imageset/frame-21.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-22.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-22.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-22.imageset/frame-22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-22.imageset/frame-22.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-23.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-23.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-23.imageset/frame-23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-23.imageset/frame-23.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-5.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-5.imageset/frame-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-5.imageset/frame-5.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-6.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-6.imageset/frame-6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-6.imageset/frame-6.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-7.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-7.imageset/frame-7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-7.imageset/frame-7.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-8.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-8.imageset/frame-8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-8.imageset/frame-8.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "frame-9.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/SendingIcon/frame-9.imageset/frame-9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/SendingIcon/frame-9.imageset/frame-9.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/Feather.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-lightweight.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/Feather.imageset/icons8-lightweight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Feather/Feather.imageset/icons8-lightweight.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/NoBalancePlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "no-balance.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/NoBalancePlaceholder.imageset/no-balance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Feather/NoBalancePlaceholder.imageset/no-balance.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/NoContactsPlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "no-contacts.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/NoContactsPlaceholder.imageset/no-contacts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Feather/NoContactsPlaceholder.imageset/no-contacts.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/ReceiveCard.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ReceiveCard.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/ReceiveCard.imageset/ReceiveCard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Feather/ReceiveCard.imageset/ReceiveCard.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/SendCard.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Verge-card.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/SendCard.imageset/Verge-card.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Feather/SendCard.imageset/Verge-card.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/TransactionsPlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-transaction-list-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/TransactionsPlaceholder.imageset/icons8-transaction-list-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Feather/TransactionsPlaceholder.imageset/icons8-transaction-list-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/UnlockBackground.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "unlock.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Feather/UnlockBackground.imageset/unlock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Feather/UnlockBackground.imageset/unlock.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/HeroMarsMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "HeroMarsMode.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/HeroMarsMode.imageset/HeroMarsMode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Mars/HeroMarsMode.imageset/HeroMarsMode.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/Mars.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Mars.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/Mars.imageset/Mars.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Mars/Mars.imageset/Mars.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/NoBalancePlaceholderMarsMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "NoBalancePlaceholderMarsMode.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/NoBalancePlaceholderMarsMode.imageset/NoBalancePlaceholderMarsMode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Mars/NoBalancePlaceholderMarsMode.imageset/NoBalancePlaceholderMarsMode.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/NoContactsPlaceholderMarsMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "NoContactsPlaceholderMarsMode.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/NoContactsPlaceholderMarsMode.imageset/NoContactsPlaceholderMarsMode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Mars/NoContactsPlaceholderMarsMode.imageset/NoContactsPlaceholderMarsMode.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/ReceiveCardMarsMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ReceiveCardMarsMode.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/ReceiveCardMarsMode.imageset/ReceiveCardMarsMode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Mars/ReceiveCardMarsMode.imageset/ReceiveCardMarsMode.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/SendCardMarsMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "SendCardMarsMode.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/SendCardMarsMode.imageset/SendCardMarsMode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Mars/SendCardMarsMode.imageset/SendCardMarsMode.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/TransactionsPlaceholderMarsMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "TransactionsPlaceholderMarsMode.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/TransactionsPlaceholderMarsMode.imageset/TransactionsPlaceholderMarsMode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Mars/TransactionsPlaceholderMarsMode.imageset/TransactionsPlaceholderMarsMode.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/UnlockBackgroundMarsMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "UnlockBackgroundMarsMode.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Mars/UnlockBackgroundMarsMode.imageset/UnlockBackgroundMarsMode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Mars/UnlockBackgroundMarsMode.imageset/UnlockBackgroundMarsMode.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/Moon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "moon.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/Moon.imageset/moon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Moon/Moon.imageset/moon.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/NoBalancePlaceholderMoonMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "no-balance.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/NoBalancePlaceholderMoonMode.imageset/no-balance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Moon/NoBalancePlaceholderMoonMode.imageset/no-balance.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/NoContactsPlaceholderMoonMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "no-contacts.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/NoContactsPlaceholderMoonMode.imageset/no-contacts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Moon/NoContactsPlaceholderMoonMode.imageset/no-contacts.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/ReceiveCardMoonMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ReceiveCard.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/ReceiveCardMoonMode.imageset/ReceiveCard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Moon/ReceiveCardMoonMode.imageset/ReceiveCard.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/SendCardMoonMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Verge-card.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/SendCardMoonMode.imageset/Verge-card.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Moon/SendCardMoonMode.imageset/Verge-card.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/TransactionsPlaceholderMoonMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-transaction-list-2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/TransactionsPlaceholderMoonMode.imageset/icons8-transaction-list-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Moon/TransactionsPlaceholderMoonMode.imageset/icons8-transaction-list-2.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/UnlockBackgroundMoonMode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "unlock.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original" 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Moon/UnlockBackgroundMoonMode.imageset/unlock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Moon/UnlockBackgroundMoonMode.imageset/unlock.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Theme.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icons8-paint-brush.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/Theme.imageset/icons8-paint-brush.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/Theme.imageset/icons8-paint-brush.pdf -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/ThemesPlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "themes.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /VergeiOS/Assets.xcassets/Themes/ThemesPlaceholder.imageset/themes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Assets.xcassets/Themes/ThemesPlaceholder.imageset/themes.pdf -------------------------------------------------------------------------------- /VergeiOS/Controllers/HGPlaceholders/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Controllers/HGPlaceholders/Classes/.gitkeep -------------------------------------------------------------------------------- /VergeiOS/Controllers/Transactions/NoContactsPlaceholderView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NoContactsPlaceholderView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 30/12/2018. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class NoContactsPlaceholderView: UIView {} 12 | -------------------------------------------------------------------------------- /VergeiOS/Controllers/Transactions/NoTransactionsPlaceholderView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NoTransactionsPlaceholderView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 11-09-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class NoTransactionsPlaceholderView: UIView { 12 | // 13 | } 14 | -------------------------------------------------------------------------------- /VergeiOS/Controllers/Wallet/WalletSlides/TransactionsPlaceholderTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TransactionsPlaceholderTableViewCell.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 11-09-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class TransactionsPlaceholderTableViewCell: UITableViewCell {} 12 | -------------------------------------------------------------------------------- /VergeiOS/Controllers/Wallet/WalletSlides/WalletSlideView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // WalletSlideView.swift 3 | // VergeiOS 4 | // 5 | // Created by Swen van Zanten on 31-07-18. 6 | // Copyright © 2018 Verge Currency. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class WalletSlideView: UIView { 12 | override func awakeFromNib() { 13 | super.awakeFromNib() 14 | super.becomeThemeable() 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /VergeiOS/Theme Icons/AppIconFeather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Theme Icons/AppIconFeather.png -------------------------------------------------------------------------------- /VergeiOS/Theme Icons/AppIconMars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Theme Icons/AppIconMars.png -------------------------------------------------------------------------------- /VergeiOS/Theme Icons/AppIconMoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/VergeiOS/Theme Icons/AppIconMoon.png -------------------------------------------------------------------------------- /VergeiOS/Theme Icons/CoreData.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | VergeiOS 2.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastlane/Appfile.swift: -------------------------------------------------------------------------------- 1 | var appIdentifier: String { return "[[APP_IDENTIFIER]]" } // The bundle identifier of your app 2 | var appleID: String { return "[[APPLE_ID]]" } // Your Apple email address 3 | 4 | 5 | 6 | // For more information about the Appfile, see: 7 | // https://docs.fastlane.tools/advanced/#appfile 8 | -------------------------------------------------------------------------------- /fastlane/Fastfile.swift: -------------------------------------------------------------------------------- 1 | // This file contains the fastlane.tools configuration 2 | // You can find the documentation at https://docs.fastlane.tools 3 | // 4 | // For a list of all available actions, check out 5 | // 6 | // https://docs.fastlane.tools/actions 7 | // 8 | 9 | import Foundation 10 | 11 | class Fastfile: LaneFile { 12 | 13 | func beforeAll() {} 14 | 15 | func testLane() { 16 | desc("Description of what the lane does") 17 | // add actions here: https://docs.fastlane.tools/actions 18 | runTests() 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /fastlane/FastlaneRunner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/fastlane/FastlaneRunner -------------------------------------------------------------------------------- /fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /fastlane/swift/FastlaneSwiftRunner/README.txt: -------------------------------------------------------------------------------- 1 | Don't modify the structure of this group including but not limited to: 2 | - renaming this group 3 | - adding sub groups 4 | - removing sub groups 5 | - adding new files 6 | - removing files 7 | 8 | If you modify anything in this folder, future fastlane upgrades may not be able to be applied automatically. 9 | 10 | If you need to add new groups, please add them at the root of the "Fastlane Runner" group. 11 | -------------------------------------------------------------------------------- /inputFile.xcfilelist: -------------------------------------------------------------------------------- 1 | $(SRCROOT)/Carthage/Build/iOS/HGPlaceholders.framework 2 | $(SRCROOT)/Carthage/Build/iOS/Tor.framework 3 | $(SRCROOT)/Carthage/Build/iOS/BitcoinKit.framework 4 | $(SRCROOT)/Carthage/Build/iOS/Swinject.framework 5 | $(SRCROOT)/Carthage/Build/iOS/SwinjectStoryboard.framework 6 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | brew install automake autoconf libtool gettext libevent openssl && \ 4 | ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize && \ 5 | echo "Installing Tor dependency" && \ 6 | carthage update --platform iOS --cache-builds 7 | -------------------------------------------------------------------------------- /libcrypto-iOS-Sim.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/libcrypto-iOS-Sim.a -------------------------------------------------------------------------------- /libcrypto-iOS.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/libcrypto-iOS.a -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64/Headers/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #error "This file is obsolete; please update your software." 11 | -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64/Headers/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64/Headers/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64/Headers/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_PEM2_H 11 | # define HEADER_PEM2_H 12 | # include 13 | #endif 14 | -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64/libcrypto-iOS.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/libcrypto.xcframework/ios-arm64/libcrypto-iOS.a -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #error "This file is obsolete; please update your software." 11 | -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_PEM2_H 11 | # define HEADER_PEM2_H 12 | # include 13 | #endif 14 | -------------------------------------------------------------------------------- /libcrypto.xcframework/ios-arm64_x86_64-simulator/libcrypto-iOS-Sim.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/libcrypto.xcframework/ios-arm64_x86_64-simulator/libcrypto-iOS-Sim.a -------------------------------------------------------------------------------- /libssl-iOS-Sim.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/libssl-iOS-Sim.a -------------------------------------------------------------------------------- /libssl-iOS.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/libssl-iOS.a -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64/Headers/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #error "This file is obsolete; please update your software." 11 | -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64/Headers/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64/Headers/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64/Headers/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_PEM2_H 11 | # define HEADER_PEM2_H 12 | # include 13 | #endif 14 | -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64/libssl-iOS.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/libssl.xcframework/ios-arm64/libssl-iOS.a -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #error "This file is obsolete; please update your software." 11 | -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64_x86_64-simulator/Headers/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_PEM2_H 11 | # define HEADER_PEM2_H 12 | # include 13 | #endif 14 | -------------------------------------------------------------------------------- /libssl.xcframework/ios-arm64_x86_64-simulator/libssl-iOS-Sim.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/libssl.xcframework/ios-arm64_x86_64-simulator/libssl-iOS-Sim.a -------------------------------------------------------------------------------- /outputFile.xcfilelist: -------------------------------------------------------------------------------- 1 | $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/HGPlaceholders.framework 2 | $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/Tor.framework 3 | $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/BitcoinKit.framework 4 | $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/Swinject.framework 5 | $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/SwinjectStoryboard.framework 6 | -------------------------------------------------------------------------------- /readme-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vergecurrency/vIOS/f3fcc97196e3073962f02aae2693b8f840703326/readme-header.png --------------------------------------------------------------------------------