├── .gitignore ├── BUILD.md ├── BeamWallet.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── Denis.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── BeamWallet.xcscheme │ │ ├── BeamWalletMasterNet.xcscheme │ │ └── BeamWalletTestNet.xcscheme └── xcuserdata │ └── Denis.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── BeamWallet.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── Denis.xcuserdatad │ └── WorkspaceSettings.xcsettings ├── BeamWallet ├── AppDelegate.swift ├── BeamSDK │ ├── AppModel.h │ ├── AppModel.mm │ ├── AssetsManager.h │ ├── AssetsManager.mm │ ├── DAO │ │ ├── AppsApiUI.h │ │ ├── AppsApiUI.mm │ │ ├── DAOManager.h │ │ ├── DAOManager.mm │ │ ├── Public.cpp │ │ ├── Public.h │ │ ├── WebAPICreator.h │ │ └── WebAPICreator.mm │ ├── DiskStatusManager.h │ ├── DiskStatusManager.m │ ├── ExchangeManager.h │ ├── ExchangeManager.mm │ ├── MnemonicModel.h │ ├── MnemonicModel.mm │ ├── ObjcExtensions │ │ ├── Color.h │ │ ├── Color.m │ │ ├── CurrencyFormatter.h │ │ ├── CurrencyFormatter.m │ │ ├── Image.h │ │ ├── Image.m │ │ ├── StringLocalize.h │ │ ├── StringLocalize.m │ │ ├── StringStd.h │ │ └── StringStd.mm │ ├── Objects │ │ ├── BMAddress.h │ │ ├── BMAddress.mm │ │ ├── BMApp.h │ │ ├── BMApp.m │ │ ├── BMAsset.h │ │ ├── BMAsset.m │ │ ├── BMContact.h │ │ ├── BMContact.m │ │ ├── BMCurrency.h │ │ ├── BMCurrency.m │ │ ├── BMDuration.h │ │ ├── BMDuration.m │ │ ├── BMLanguage.h │ │ ├── BMLanguage.m │ │ ├── BMLockScreenValue.h │ │ ├── BMLockScreenValue.m │ │ ├── BMLogValue.h │ │ ├── BMLogValue.m │ │ ├── BMMaxPrivacyLock.h │ │ ├── BMMaxPrivacyLock.m │ │ ├── BMNotification.h │ │ ├── BMNotification.m │ │ ├── BMPaymentInfo.h │ │ ├── BMPaymentInfo.m │ │ ├── BMPaymentProof.h │ │ ├── BMPaymentProof.m │ │ ├── BMPreparedTransaction.h │ │ ├── BMPreparedTransaction.m │ │ ├── BMTransaction.h │ │ ├── BMTransaction.m │ │ ├── BMTransactionParameters.h │ │ ├── BMTransactionParameters.m │ │ ├── BMUTXO.h │ │ ├── BMUTXO.m │ │ ├── BMWalletStatus.h │ │ ├── BMWalletStatus.m │ │ ├── BMWord.h │ │ └── BMWord.m │ ├── Reachability.h │ ├── Reachability.m │ ├── RecoveryProgress.h │ ├── RecoveryProgress.mm │ ├── Settings.h │ ├── Settings.m │ ├── StringManager.h │ ├── StringManager.m │ ├── WalletModel.h │ ├── WalletModel.mm │ └── phrases.txt ├── BeamWallet-Bridging-Header.h ├── Controls │ ├── AssetIconView.swift │ ├── BMAutoSecurityScreen.swift │ ├── BMButton.swift │ ├── BMCategoryColorsView.swift │ ├── BMCopyLabel.swift │ ├── BMCountdownView.swift │ ├── BMDataPickerViewController.swift │ ├── BMDoubleAuthViewController.swift │ ├── BMEmptyView.swift │ ├── BMEmptyView.xib │ ├── BMField.swift │ ├── BMGradientView.swift │ ├── BMInputCopyBar.swift │ ├── BMInputViewController.swift │ ├── BMInputViewController.xib │ ├── BMLockScreen.swift │ ├── BMNetworkStatusView.swift │ ├── BMNotificationView.swift │ ├── BMOverlayTimerView.swift │ ├── BMPagingViewController.swift │ ├── BMPopoverMenu.swift │ ├── BMRippleCell.swift │ ├── BMSearchView.swift │ ├── BMSegmentView.swift │ ├── BMSlider.swift │ ├── BMSnackBar.swift │ ├── BMStepView.swift │ ├── BMTableHeaderTitleView.swift │ ├── BMTextView.swift │ ├── BMToast.swift │ ├── BMWordField.swift │ ├── Cell │ │ ├── BMAddressCell.swift │ │ ├── BMAddressCell.xib │ │ ├── BMAmountCell.swift │ │ ├── BMAmountCell.xib │ │ ├── BMCellProtocol.swift │ │ ├── BMCopyCell.swift │ │ ├── BMCopyCell.xib │ │ ├── BMDetailAmountCell.swift │ │ ├── BMDetailAmountCell.xib │ │ ├── BMDetailCell.swift │ │ ├── BMDetailCell.xib │ │ ├── BMEmptyCell.swift │ │ ├── BMEmptyCell.xib │ │ ├── BMExpandCell.swift │ │ ├── BMExpandCell.xib │ │ ├── BMFieldCell.swift │ │ ├── BMFieldCell.xib │ │ ├── BMGroupedCell.swift │ │ ├── BMGroupedCell.xib │ │ ├── BMMultiLinesCell.swift │ │ ├── BMMultiLinesCell.xib │ │ ├── BMMultiLinesCell2.swift │ │ ├── BMMultiLinesCell2.xib │ │ ├── BMPickedAddressCell.swift │ │ ├── BMPickedAddressCell.xib │ │ ├── BMPickerCell.swift │ │ ├── BMPickerCell.xib │ │ ├── BMPickerCell2.xib │ │ ├── BMPickerCell3.xib │ │ ├── BMThreeLineCell.swift │ │ ├── BMThreeLineCell.xib │ │ ├── PopoverAssetCell.swift │ │ ├── PopoverAssetCell.xib │ │ ├── PopoverCell.swift │ │ ├── PopoverCell.xib │ │ ├── SingleCenterCell.swift │ │ └── SingleCenterCell.xib │ ├── NonDisappearingView.swift │ ├── QRCodeView.swift │ └── ThirdParty │ │ ├── LGSideMenuController │ │ ├── LGSideMenuController │ │ │ ├── LGSideMenuBorderView.h │ │ │ ├── LGSideMenuBorderView.m │ │ │ ├── LGSideMenuController.h │ │ │ ├── LGSideMenuController.m │ │ │ ├── LGSideMenuGesturesHandler.h │ │ │ ├── LGSideMenuGesturesHandler.m │ │ │ ├── LGSideMenuHelper.h │ │ │ ├── LGSideMenuHelper.m │ │ │ ├── LGSideMenuSegue.h │ │ │ ├── LGSideMenuSegue.m │ │ │ ├── LGSideMenuView.h │ │ │ ├── LGSideMenuView.m │ │ │ ├── UIViewController+LGSideMenuController.h │ │ │ └── UIViewController+LGSideMenuController.m │ │ ├── LICENSE │ │ └── README.md │ │ ├── MASegmentedControl │ │ ├── MASegmentedControl+actions.swift │ │ └── MASegmentedControl.swift │ │ ├── MaterialActivityIndicator │ │ ├── Extensions │ │ │ ├── CAPropertyAnimation+Key.swift │ │ │ ├── CGRect+Center.swift │ │ │ ├── CGSize+Min.swift │ │ │ └── UIBezierPath+Circle.swift │ │ ├── MaterialActivityIndicator.swift │ │ └── MaterialActivityIndicatorAnimator.swift │ │ ├── Parchment │ │ ├── Classes │ │ │ ├── EMPageViewController.swift │ │ │ ├── FixedPagingViewController.swift │ │ │ ├── IndexedPagingDataSource.swift │ │ │ ├── PagingBorderLayoutAttributes.swift │ │ │ ├── PagingBorderView.swift │ │ │ ├── PagingCell.swift │ │ │ ├── PagingCellLayoutAttributes.swift │ │ │ ├── PagingCollectionViewLayout.swift │ │ │ ├── PagingIndicatorLayoutAttributes.swift │ │ │ ├── PagingIndicatorView.swift │ │ │ ├── PagingInvalidationContext.swift │ │ │ ├── PagingOptions.swift │ │ │ ├── PagingSizeCache.swift │ │ │ ├── PagingStateMachine.swift │ │ │ ├── PagingTitleCell.swift │ │ │ ├── PagingView.swift │ │ │ └── PagingViewController.swift │ │ ├── Enums │ │ │ ├── InvalidationState.swift │ │ │ ├── PagingBorderOptions.swift │ │ │ ├── PagingContentInteraction.swift │ │ │ ├── PagingDirection.swift │ │ │ ├── PagingEvent.swift │ │ │ ├── PagingIndicatorOptions.swift │ │ │ ├── PagingMenuHorizontalAlignment.swift │ │ │ ├── PagingMenuInteraction.swift │ │ │ ├── PagingMenuItemSize.swift │ │ │ ├── PagingMenuItemSource.swift │ │ │ ├── PagingMenuTransition.swift │ │ │ ├── PagingSelectedScrollPosition.swift │ │ │ └── PagingState.swift │ │ ├── Extensions │ │ │ ├── UIColor+interpolation.swift │ │ │ ├── UIEdgeInsets.swift │ │ │ ├── UIScrollView+near.swift │ │ │ └── UIView+constraints.swift │ │ ├── Protocols │ │ │ ├── PagingItem.swift │ │ │ ├── PagingLayout.swift │ │ │ ├── PagingViewControllerDataSource.swift │ │ │ ├── PagingViewControllerDelegate.swift │ │ │ ├── PagingViewControllerInfiniteDataSource.swift │ │ │ └── Tween.swift │ │ └── Structs │ │ │ ├── IndexedPagingItem.swift │ │ │ ├── PagingCellViewModel.swift │ │ │ ├── PagingDiff.swift │ │ │ ├── PagingDistance.swift │ │ │ ├── PagingIndicatorMetric.swift │ │ │ ├── PagingItems.swift │ │ │ └── PagingTransition.swift │ │ └── SDWebImageSVGCoder │ │ ├── SDImageSVGCoder.h │ │ ├── SDImageSVGCoder.m │ │ ├── SDWebImageSVGCoderDefine.h │ │ └── SDWebImageSVGCoderDefine.m ├── Extensions │ ├── AlertController.swift │ ├── Application.swift │ ├── Array.swift │ ├── BackButtonItem.swift │ ├── Button.swift │ ├── Color.swift │ ├── Device.swift │ ├── Double.swift │ ├── Field.swift │ ├── Image.swift │ ├── Label.swift │ ├── String.swift │ ├── TableView.swift │ ├── TextView.swift │ ├── UITapGestureRecognizer.swift │ ├── URL.swift │ ├── View.swift │ └── ViewController.swift ├── Manager │ ├── AppStoreReviewManager.swift │ ├── BackgroundDownloader.swift │ ├── BiometricAuthorization.swift │ ├── Crowdin │ │ └── CrowdinManager.swift │ ├── KeychainManager.swift │ ├── New Group │ │ └── CrowdinCredentials.swift │ ├── NotificationManager.swift │ ├── OnboardManager.swift │ ├── PasswordManager.swift │ ├── RestoreManager.swift │ └── ShortcutManager.swift ├── Model │ ├── Address │ │ ├── AddressViewModel.swift │ │ ├── DetailAddressViewModel.swift │ │ ├── EditAddressViewModel.swift │ │ └── ReceiveAddressViewModel.swift │ ├── Objects │ │ ├── BMMultiLineItem.swift │ │ └── BMPickerData.swift │ ├── Settings │ │ └── SettingsViewModel.swift │ ├── Transaction │ │ ├── DetailTransactionViewModel.swift │ │ ├── SendTransactionViewModel.swift │ │ └── TransactionViewModel.swift │ ├── UTXO │ │ ├── DetailUTXOViewModel.swift │ │ └── UTXOViewModel.swift │ └── Wallet │ │ ├── AssetViewModel.swift │ │ └── StatusViewModel.swift ├── Protocols │ ├── Configurable.swift │ ├── Fonts.swift │ ├── Frames.swift │ ├── KeyboardListener.swift │ ├── LocalizableStrings.swift │ ├── Progress.swift │ ├── Resources.swift │ └── ShareLogActivity.swift ├── ViewControllers │ ├── Base │ │ ├── BaseCell.swift │ │ ├── BaseNavigationController.swift │ │ ├── BaseTableViewController.swift │ │ ├── BaseView.swift │ │ ├── BaseViewController.swift │ │ └── BaseWizardViewController.swift │ ├── Login │ │ ├── EnterWalletPasswordViewController.swift │ │ ├── EnterWalletPasswordViewController.xib │ │ ├── New Group │ │ │ └── RestoreOptionsViewController.swift │ │ ├── OpenWalletProgressViewController.swift │ │ ├── OpenWalletProgressViewController.xib │ │ ├── PhraseViewController │ │ │ ├── Cells │ │ │ │ ├── CollectionButtonFooter.swift │ │ │ │ ├── CollectionButtonFooter.xib │ │ │ │ ├── CollectionTextHeader.swift │ │ │ │ ├── CollectionTextHeader.xib │ │ │ │ ├── InputWordCell.swift │ │ │ │ ├── InputWordCell.xib │ │ │ │ ├── SeedIntroCell.swift │ │ │ │ ├── SeedIntroCell.xib │ │ │ │ ├── WordCell.swift │ │ │ │ └── WordCell.xib │ │ │ └── SeedPhraseViewController.swift │ │ ├── Restore │ │ │ └── RestoreOptionsViewController.xib │ │ ├── WellcomeViewController.swift │ │ └── WellcomeViewController.xib │ └── Main │ │ ├── Addresses │ │ ├── AddressTableView.swift │ │ ├── AddressViewController.swift │ │ ├── AddressesViewController.swift │ │ ├── Cell │ │ │ ├── AddressExpiresCell.swift │ │ │ └── AddressExpiresCell.xib │ │ ├── EditAddressViewController.swift │ │ └── ShowTokenViewController.swift │ │ ├── Assets │ │ ├── AssetBalanceViewController.swift │ │ ├── AssetDescViewController.swift │ │ ├── AssetDetailViewController.swift │ │ ├── AssetInfoViewController.swift │ │ ├── AssetsViewController.swift │ │ └── Cells │ │ │ ├── AssetDropDownCell.swift │ │ │ ├── AssetDropDownCell.xib │ │ │ ├── AssetExporerCell.swift │ │ │ ├── AssetExporerCell.xib │ │ │ ├── AssetSiteCell.swift │ │ │ └── AssetSiteCell.xib │ │ ├── DAO │ │ ├── Cell │ │ │ ├── DAOAppCell.swift │ │ │ └── DAOAppCell.xib │ │ ├── DAOAppsViewController.swift │ │ ├── DAOConfirmViewController.swift │ │ ├── DAOConfirmViewController.xib │ │ ├── DAOConfirmViewModel.swift │ │ ├── DAOListViewModel.swift │ │ ├── DAOViewController.swift │ │ └── JS │ │ │ ├── XWVBindingObject.swift │ │ │ ├── XWVChannel.swift │ │ │ ├── XWVHttpConnection.swift │ │ │ ├── XWVHttpServer.swift │ │ │ ├── XWVInvocation.swift │ │ │ ├── XWVJson.swift │ │ │ ├── XWVLogging.swift │ │ │ ├── XWVMetaObject.swift │ │ │ ├── XWVObject.swift │ │ │ ├── XWVScriptObject.swift │ │ │ ├── XWVScripting.swift │ │ │ ├── XWVUserScript.swift │ │ │ ├── XWebView.swift │ │ │ └── xwebview.js │ │ ├── Menu │ │ └── LeftMenuViewController.swift │ │ ├── Notifications │ │ ├── Cells │ │ │ ├── NotificationTableViewCell.swift │ │ │ └── NotificationTableViewCell.xib │ │ ├── NotificationItem.swift │ │ ├── NotificationVersionViewController.swift │ │ ├── NotificationVersionViewController.xib │ │ ├── NotificationViewModel.swift │ │ └── NotificationsViewController.swift │ │ ├── Passwords │ │ ├── CreateWalletPasswordViewController.swift │ │ ├── CreateWalletPasswordViewController.xib │ │ ├── UnlockPasswordPopover.swift │ │ ├── UnlockPasswordPopover.xib │ │ └── UnlockPasswordViewController.swift │ │ ├── QRCode │ │ ├── PreviewQRViewController.swift │ │ ├── QRCodeSmallViewController.swift │ │ ├── QRCodeSmallViewController.xib │ │ ├── QRScannerViewController.swift │ │ ├── QRScannerViewController.xib │ │ ├── QRViewController.swift │ │ └── QRViewController.xib │ │ ├── Settings │ │ ├── Cells │ │ │ ├── NodeCell.swift │ │ │ ├── NodeCell.xib │ │ │ ├── SettingsCell.swift │ │ │ ├── SettingsCell.xib │ │ │ ├── SettingsSubTitleCell.swift │ │ │ └── SettingsSubTitleCell.xib │ │ ├── OwnerKeyViewController.swift │ │ ├── OwnerKeyViewController.xib │ │ ├── SelectNodeViewController.swift │ │ ├── SettingsViewController.swift │ │ └── TrustedNodeViewController.swift │ │ ├── UTXO │ │ ├── Cells │ │ │ ├── UTXOCell.swift │ │ │ ├── UTXOCell.xib │ │ │ ├── UTXODetailCell.swift │ │ │ ├── UTXODetailCell.xib │ │ │ ├── UTXOTransactionCell.swift │ │ │ └── UTXOTransactionCell.xib │ │ ├── UTXODetailViewController.swift │ │ ├── UTXOTableView.swift │ │ └── UTXOViewController.swift │ │ └── Wallet │ │ ├── Cells │ │ ├── AssetAvailableCell.swift │ │ ├── AssetAvailableCell.xib │ │ ├── OnboardCell.swift │ │ ├── OnboardCell.xib │ │ ├── WalletStatusCell.swift │ │ ├── WalletStatusCell.xib │ │ ├── WalletTransactionCell.swift │ │ ├── WalletTransactionCell.xib │ │ ├── WalletTransactionSearchCell.swift │ │ └── WalletTransactionSearchCell.xib │ │ ├── MaxPrivacyDetail │ │ ├── Cell │ │ │ ├── MaxPrivacyDetailCell.swift │ │ │ ├── MaxPrivacyDetailCell.xib │ │ │ ├── MaxPrivacyDetailHeader.swift │ │ │ └── MaxPrivacyDetailHeader.xib │ │ ├── MaxPrivacyDetailViewController.swift │ │ └── MaxPrivacyDetailViewModel.swift │ │ ├── Receive │ │ ├── Cells │ │ │ ├── ReceiveAddressButtonsCell.swift │ │ │ ├── ReceiveAddressButtonsCell.xib │ │ │ ├── ReceiveAmountCell.swift │ │ │ ├── ReceiveCommentCell.xib │ │ │ ├── ReceiveTokenCell.swift │ │ │ ├── ReceiveTokenCell.xib │ │ │ ├── ReceiveTransactionTypeCell.swift │ │ │ └── ReceiveTransactionTypeCell.xib │ │ ├── OfflineAddressViewController.swift │ │ ├── OfflineAddressViewController.xib │ │ ├── ReceiveListViewController.swift │ │ ├── ReceiveViewController.swift │ │ ├── WalletQRCodeViewController.xib │ │ └── b.swift │ │ ├── Send │ │ ├── Cells │ │ │ ├── BMSearchAddressCell.swift │ │ │ ├── BMSearchAddressCell.xib │ │ │ ├── FeeCell.swift │ │ │ ├── FeeCell.xib │ │ │ ├── SendAllCell.swift │ │ │ ├── SendAllCell.xib │ │ │ ├── SendContactAddressCell.swift │ │ │ ├── SendContactAddressCell.xib │ │ │ ├── SendSaveAddressCell.swift │ │ │ ├── SendSaveAddressCell.xib │ │ │ ├── SendTransactionTypeCell.swift │ │ │ └── SendTransactionTypeCell.xib │ │ ├── InputFeePopover.swift │ │ ├── InputFeePopover.xib │ │ ├── SaveContactViewController.swift │ │ ├── SearchTableView.swift │ │ ├── SendConfirmViewController.swift │ │ ├── SendViewController.swift │ │ ├── WalletSendViewController.swift │ │ └── WalletSendViewController.xib │ │ ├── Transaction │ │ ├── Cell │ │ │ ├── TransactionPaymentProofCell.swift │ │ │ ├── TransactionPaymentProofCell.xib │ │ │ ├── TransactionUTXOCell.swift │ │ │ └── TransactionUTXOCell.xib │ │ ├── PaymentProofDetailViewController.swift │ │ ├── PaymentProofDetailViewController.xib │ │ ├── TransactionPageViewController.swift │ │ ├── TransactionShareView.swift │ │ ├── TransactionShareView.xib │ │ ├── TransactionViewController.swift │ │ ├── TransactionsTableView.swift │ │ └── TransactionsViewController.swift │ │ └── WalletViewController.swift ├── main.swift └── retrained_labels.txt ├── BeamWalletNotificationView ├── Base.lproj │ └── MainInterface.storyboard ├── BeamWalletNotificationView-Bridging-Header.h ├── BeamWalletNotificationView.entitlements ├── Info.plist └── NotificationViewController.swift ├── Frameworks └── openssl.framework │ ├── Headers │ ├── aes.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── des.h │ ├── des_old.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── idea.h │ ├── krb5_asn.h │ ├── kssl.h │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── openssl.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pqueue.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── openssl ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Firebase │ ├── CoreOnly │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ ├── LICENSE │ └── README.md ├── FirebaseCore │ ├── FirebaseCore │ │ └── Sources │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ ├── FIRApp.m │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ ├── FIRBundleUtil.h │ │ │ ├── FIRBundleUtil.m │ │ │ ├── FIRComponent.m │ │ │ ├── FIRComponentContainer.m │ │ │ ├── FIRComponentContainerInternal.h │ │ │ ├── FIRComponentType.m │ │ │ ├── FIRConfiguration.m │ │ │ ├── FIRConfigurationInternal.h │ │ │ ├── FIRCoreDiagnosticsConnector.m │ │ │ ├── FIRDependency.m │ │ │ ├── FIRDiagnosticsData.h │ │ │ ├── FIRDiagnosticsData.m │ │ │ ├── FIRErrors.m │ │ │ ├── FIRHeartbeatInfo.m │ │ │ ├── FIRLogger.m │ │ │ ├── FIROptions.m │ │ │ ├── FIRVersion.h │ │ │ ├── FIRVersion.m │ │ │ ├── Private │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRErrorCode.h │ │ │ ├── FIRErrors.h │ │ │ ├── FIRHeartbeatInfo.h │ │ │ ├── FIRLibrary.h │ │ │ ├── FIRLogger.h │ │ │ ├── FIROptionsInternal.h │ │ │ └── FirebaseCoreInternal.h │ │ │ └── Public │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ ├── FIROptions.h │ │ │ └── FirebaseCore.h │ ├── GoogleUtilities │ │ ├── Environment │ │ │ └── Private │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ ├── GULKeychainStorage.h │ │ │ │ ├── GULKeychainUtils.h │ │ │ │ └── GULSecureCoding.h │ │ └── Logger │ │ │ └── Private │ │ │ └── GULLogger.h │ ├── Interop │ │ └── CoreDiagnostics │ │ │ └── Public │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ ├── LICENSE │ └── README.md ├── FirebaseCoreDiagnostics │ ├── Firebase │ │ └── CoreDiagnostics │ │ │ └── FIRCDLibrary │ │ │ ├── FIRCoreDiagnostics.m │ │ │ └── Protogen │ │ │ └── nanopb │ │ │ ├── firebasecore.nanopb.c │ │ │ └── firebasecore.nanopb.h │ ├── GoogleDataTransport │ │ └── GDTCORLibrary │ │ │ └── Internal │ │ │ └── GoogleDataTransportInternal.h │ ├── GoogleUtilities │ │ ├── Environment │ │ │ └── Private │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ ├── GULKeychainStorage.h │ │ │ │ ├── GULKeychainUtils.h │ │ │ │ └── GULSecureCoding.h │ │ └── Logger │ │ │ └── Private │ │ │ └── GULLogger.h │ ├── Interop │ │ └── CoreDiagnostics │ │ │ └── Public │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ ├── LICENSE │ └── README.md ├── FirebaseCrashlytics │ ├── Crashlytics │ │ ├── Crashlytics │ │ │ ├── Components │ │ │ │ ├── FIRCLSApplication.h │ │ │ │ ├── FIRCLSApplication.m │ │ │ │ ├── FIRCLSBinaryImage.h │ │ │ │ ├── FIRCLSBinaryImage.m │ │ │ │ ├── FIRCLSContext.h │ │ │ │ ├── FIRCLSContext.m │ │ │ │ ├── FIRCLSCrashedMarkerFile.c │ │ │ │ ├── FIRCLSCrashedMarkerFile.h │ │ │ │ ├── FIRCLSGlobals.h │ │ │ │ ├── FIRCLSHost.h │ │ │ │ ├── FIRCLSHost.m │ │ │ │ ├── FIRCLSProcess.c │ │ │ │ ├── FIRCLSProcess.h │ │ │ │ ├── FIRCLSUserLogging.h │ │ │ │ └── FIRCLSUserLogging.m │ │ │ ├── Controllers │ │ │ │ ├── FIRCLSNetworkClient.h │ │ │ │ ├── FIRCLSNetworkClient.m │ │ │ │ ├── FIRCLSReportManager.h │ │ │ │ ├── FIRCLSReportManager.m │ │ │ │ ├── FIRCLSReportManager_Private.h │ │ │ │ ├── FIRCLSReportUploader.h │ │ │ │ ├── FIRCLSReportUploader.m │ │ │ │ └── FIRCLSReportUploader_Private.h │ │ │ ├── DataCollection │ │ │ │ ├── FIRCLSDataCollectionArbiter.h │ │ │ │ ├── FIRCLSDataCollectionArbiter.m │ │ │ │ ├── FIRCLSDataCollectionToken.h │ │ │ │ └── FIRCLSDataCollectionToken.m │ │ │ ├── FIRCLSURLSession │ │ │ │ ├── FIRCLSURLSession.h │ │ │ │ ├── FIRCLSURLSession.m │ │ │ │ ├── FIRCLSURLSessionAvailability.h │ │ │ │ ├── FIRCLSURLSessionConfiguration.h │ │ │ │ ├── FIRCLSURLSessionConfiguration.m │ │ │ │ ├── FIRCLSURLSession_PrivateMethods.h │ │ │ │ └── Tasks │ │ │ │ │ ├── FIRCLSURLSessionDataTask.h │ │ │ │ │ ├── FIRCLSURLSessionDataTask.m │ │ │ │ │ ├── FIRCLSURLSessionDataTask_PrivateMethods.h │ │ │ │ │ ├── FIRCLSURLSessionDownloadTask.h │ │ │ │ │ ├── FIRCLSURLSessionDownloadTask.m │ │ │ │ │ ├── FIRCLSURLSessionDownloadTask_PrivateMethods.h │ │ │ │ │ ├── FIRCLSURLSessionTask.h │ │ │ │ │ ├── FIRCLSURLSessionTask.m │ │ │ │ │ ├── FIRCLSURLSessionTask_PrivateMethods.h │ │ │ │ │ ├── FIRCLSURLSessionUploadTask.h │ │ │ │ │ └── FIRCLSURLSessionUploadTask.m │ │ │ ├── FIRCLSUserDefaults │ │ │ │ ├── FIRCLSUserDefaults.h │ │ │ │ ├── FIRCLSUserDefaults.m │ │ │ │ └── FIRCLSUserDefaults_private.h │ │ │ ├── FIRCrashlytics.m │ │ │ ├── FIRExceptionModel.m │ │ │ ├── FIRStackFrame.m │ │ │ ├── Handlers │ │ │ │ ├── FIRCLSException.h │ │ │ │ ├── FIRCLSException.mm │ │ │ │ ├── FIRCLSHandler.h │ │ │ │ ├── FIRCLSHandler.m │ │ │ │ ├── FIRCLSMachException.c │ │ │ │ ├── FIRCLSMachException.h │ │ │ │ ├── FIRCLSSignal.c │ │ │ │ └── FIRCLSSignal.h │ │ │ ├── Helpers │ │ │ │ ├── FIRAEvent+Internal.h │ │ │ │ ├── FIRAEvent+Internal.m │ │ │ │ ├── FIRAEvent.h │ │ │ │ ├── FIRAValue.h │ │ │ │ ├── FIRCLSAllocate.c │ │ │ │ ├── FIRCLSAllocate.h │ │ │ │ ├── FIRCLSDefines.h │ │ │ │ ├── FIRCLSFCRAnalytics.h │ │ │ │ ├── FIRCLSFCRAnalytics.m │ │ │ │ ├── FIRCLSFeatures.h │ │ │ │ ├── FIRCLSFile.h │ │ │ │ ├── FIRCLSFile.m │ │ │ │ ├── FIRCLSInternalLogging.c │ │ │ │ ├── FIRCLSInternalLogging.h │ │ │ │ ├── FIRCLSLogger.h │ │ │ │ ├── FIRCLSLogger.m │ │ │ │ ├── FIRCLSProfiling.c │ │ │ │ ├── FIRCLSProfiling.h │ │ │ │ ├── FIRCLSThreadState.c │ │ │ │ ├── FIRCLSThreadState.h │ │ │ │ ├── FIRCLSUtility.h │ │ │ │ └── FIRCLSUtility.m │ │ │ ├── Models │ │ │ │ ├── FIRCLSExecutionIdentifierModel.h │ │ │ │ ├── FIRCLSExecutionIdentifierModel.m │ │ │ │ ├── FIRCLSFileManager.h │ │ │ │ ├── FIRCLSFileManager.m │ │ │ │ ├── FIRCLSInstallIdentifierModel.h │ │ │ │ ├── FIRCLSInstallIdentifierModel.m │ │ │ │ ├── FIRCLSInternalReport.h │ │ │ │ ├── FIRCLSInternalReport.m │ │ │ │ ├── FIRCLSReport.h │ │ │ │ ├── FIRCLSReport.m │ │ │ │ ├── FIRCLSReport_Private.h │ │ │ │ ├── FIRCLSSettings.h │ │ │ │ ├── FIRCLSSettings.m │ │ │ │ ├── FIRCLSSymbolResolver.h │ │ │ │ ├── FIRCLSSymbolResolver.m │ │ │ │ └── Record │ │ │ │ │ ├── FIRCLSRecordApplication.h │ │ │ │ │ ├── FIRCLSRecordApplication.m │ │ │ │ │ ├── FIRCLSRecordBase.h │ │ │ │ │ ├── FIRCLSRecordBase.m │ │ │ │ │ ├── FIRCLSRecordHost.h │ │ │ │ │ ├── FIRCLSRecordHost.m │ │ │ │ │ ├── FIRCLSRecordIdentity.h │ │ │ │ │ ├── FIRCLSRecordIdentity.m │ │ │ │ │ ├── FIRCLSReportAdapter.h │ │ │ │ │ ├── FIRCLSReportAdapter.m │ │ │ │ │ └── FIRCLSReportAdapter_Private.h │ │ │ ├── Operations │ │ │ │ ├── FIRCLSAsyncOperation.h │ │ │ │ ├── FIRCLSAsyncOperation.m │ │ │ │ ├── FIRCLSAsyncOperation_Private.h │ │ │ │ ├── Reports │ │ │ │ │ ├── FIRCLSPackageReportOperation.h │ │ │ │ │ ├── FIRCLSPackageReportOperation.m │ │ │ │ │ ├── FIRCLSProcessReportOperation.h │ │ │ │ │ └── FIRCLSProcessReportOperation.m │ │ │ │ └── Symbolication │ │ │ │ │ ├── FIRCLSDemangleOperation.h │ │ │ │ │ ├── FIRCLSDemangleOperation.mm │ │ │ │ │ ├── FIRCLSSerializeSymbolicatedFramesOperation.h │ │ │ │ │ ├── FIRCLSSerializeSymbolicatedFramesOperation.m │ │ │ │ │ ├── FIRCLSSymbolicationOperation.h │ │ │ │ │ ├── FIRCLSSymbolicationOperation.m │ │ │ │ │ ├── FIRCLSThreadArrayOperation.h │ │ │ │ │ └── FIRCLSThreadArrayOperation.m │ │ │ ├── Private │ │ │ │ ├── FIRExceptionModel_Private.h │ │ │ │ └── FIRStackFrame_Private.h │ │ │ ├── Public │ │ │ │ ├── FIRCrashlytics.h │ │ │ │ ├── FIRExceptionModel.h │ │ │ │ ├── FIRStackFrame.h │ │ │ │ └── FirebaseCrashlytics.h │ │ │ ├── Settings │ │ │ │ ├── FIRCLSSettingsOnboardingManager.h │ │ │ │ ├── FIRCLSSettingsOnboardingManager.m │ │ │ │ ├── Models │ │ │ │ │ ├── FIRCLSApplicationIdentifierModel.h │ │ │ │ │ └── FIRCLSApplicationIdentifierModel.m │ │ │ │ └── Operations │ │ │ │ │ ├── FIRCLSDownloadAndSaveSettingsOperation.h │ │ │ │ │ ├── FIRCLSDownloadAndSaveSettingsOperation.m │ │ │ │ │ ├── FIRCLSNetworkOperation.h │ │ │ │ │ ├── FIRCLSNetworkOperation.m │ │ │ │ │ ├── FIRCLSOnboardingOperation.h │ │ │ │ │ └── FIRCLSOnboardingOperation.m │ │ │ └── Unwind │ │ │ │ ├── Compact │ │ │ │ ├── FIRCLSCompactUnwind.c │ │ │ │ ├── FIRCLSCompactUnwind.h │ │ │ │ └── FIRCLSCompactUnwind_Private.h │ │ │ │ ├── Dwarf │ │ │ │ ├── FIRCLSDataParsing.c │ │ │ │ ├── FIRCLSDataParsing.h │ │ │ │ ├── FIRCLSDwarfExpressionMachine.c │ │ │ │ ├── FIRCLSDwarfExpressionMachine.h │ │ │ │ ├── FIRCLSDwarfUnwind.c │ │ │ │ ├── FIRCLSDwarfUnwind.h │ │ │ │ └── FIRCLSDwarfUnwindRegisters.h │ │ │ │ ├── FIRCLSUnwind.c │ │ │ │ ├── FIRCLSUnwind.h │ │ │ │ ├── FIRCLSUnwind_arch.h │ │ │ │ ├── FIRCLSUnwind_arm.c │ │ │ │ ├── FIRCLSUnwind_x86.c │ │ │ │ └── FIRCLSUnwind_x86.h │ │ ├── LICENSE │ │ ├── Protogen │ │ │ └── nanopb │ │ │ │ ├── crashlytics.nanopb.c │ │ │ │ └── crashlytics.nanopb.h │ │ ├── README.md │ │ ├── Shared │ │ │ ├── FIRCLSByteUtility.h │ │ │ ├── FIRCLSByteUtility.m │ │ │ ├── FIRCLSConstants.h │ │ │ ├── FIRCLSConstants.m │ │ │ ├── FIRCLSFABHost.h │ │ │ ├── FIRCLSFABHost.m │ │ │ ├── FIRCLSMachO │ │ │ │ ├── FIRCLSCodeMapping.h │ │ │ │ ├── FIRCLSCodeMapping.m │ │ │ │ ├── FIRCLSMachO.h │ │ │ │ ├── FIRCLSMachO.m │ │ │ │ ├── FIRCLSMachOBinary.h │ │ │ │ ├── FIRCLSMachOBinary.m │ │ │ │ ├── FIRCLSMachOSlice.h │ │ │ │ ├── FIRCLSMachOSlice.m │ │ │ │ ├── FIRCLSdSYM.h │ │ │ │ └── FIRCLSdSYM.m │ │ │ ├── FIRCLSNetworking │ │ │ │ ├── FIRCLSFABNetworkClient.h │ │ │ │ ├── FIRCLSFABNetworkClient.m │ │ │ │ ├── FIRCLSMultipartMimeStreamEncoder.h │ │ │ │ ├── FIRCLSMultipartMimeStreamEncoder.m │ │ │ │ ├── FIRCLSNetworkResponseHandler.h │ │ │ │ ├── FIRCLSNetworkResponseHandler.m │ │ │ │ ├── FIRCLSURLBuilder.h │ │ │ │ └── FIRCLSURLBuilder.m │ │ │ ├── FIRCLSOperation │ │ │ │ ├── FIRCLSCompoundOperation.h │ │ │ │ ├── FIRCLSCompoundOperation.m │ │ │ │ ├── FIRCLSFABAsyncOperation.h │ │ │ │ ├── FIRCLSFABAsyncOperation.m │ │ │ │ ├── FIRCLSFABAsyncOperation_Private.h │ │ │ │ └── FIRCLSOperation.h │ │ │ ├── FIRCLSUUID.h │ │ │ └── FIRCLSUUID.m │ │ └── third_party │ │ │ └── libunwind │ │ │ └── dwarf.h │ ├── FirebaseCore │ │ └── Sources │ │ │ └── Private │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRErrorCode.h │ │ │ ├── FIRErrors.h │ │ │ ├── FIRHeartbeatInfo.h │ │ │ ├── FIRLibrary.h │ │ │ ├── FIRLogger.h │ │ │ ├── FIROptionsInternal.h │ │ │ └── FirebaseCoreInternal.h │ ├── FirebaseInstallations │ │ └── Source │ │ │ └── Library │ │ │ └── Private │ │ │ └── FirebaseInstallationsInternal.h │ ├── GoogleDataTransport │ │ └── GDTCORLibrary │ │ │ └── Internal │ │ │ └── GoogleDataTransportInternal.h │ ├── Interop │ │ └── Analytics │ │ │ └── Public │ │ │ ├── FIRAnalyticsInterop.h │ │ │ ├── FIRAnalyticsInteropListener.h │ │ │ ├── FIRInteropEventNames.h │ │ │ └── FIRInteropParameterNames.h │ ├── README.md │ ├── run │ └── upload-symbols ├── FirebaseInstallations │ ├── FirebaseCore │ │ └── Sources │ │ │ └── Private │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRErrorCode.h │ │ │ ├── FIRErrors.h │ │ │ ├── FIRHeartbeatInfo.h │ │ │ ├── FIRLibrary.h │ │ │ ├── FIRLogger.h │ │ │ ├── FIROptionsInternal.h │ │ │ └── FirebaseCoreInternal.h │ ├── FirebaseInstallations │ │ └── Source │ │ │ └── Library │ │ │ ├── Errors │ │ │ ├── FIRInstallationsErrorUtil.h │ │ │ ├── FIRInstallationsErrorUtil.m │ │ │ ├── FIRInstallationsHTTPError.h │ │ │ └── FIRInstallationsHTTPError.m │ │ │ ├── FIRInstallations.m │ │ │ ├── FIRInstallationsAuthTokenResult.m │ │ │ ├── FIRInstallationsAuthTokenResultInternal.h │ │ │ ├── FIRInstallationsItem.h │ │ │ ├── FIRInstallationsItem.m │ │ │ ├── FIRInstallationsLogger.h │ │ │ ├── FIRInstallationsLogger.m │ │ │ ├── FIRInstallationsVersion.m │ │ │ ├── IIDMigration │ │ │ ├── FIRInstallationsIIDStore.h │ │ │ ├── FIRInstallationsIIDStore.m │ │ │ ├── FIRInstallationsIIDTokenStore.h │ │ │ └── FIRInstallationsIIDTokenStore.m │ │ │ ├── InstallationsAPI │ │ │ ├── FIRInstallationsAPIService.h │ │ │ ├── FIRInstallationsAPIService.m │ │ │ ├── FIRInstallationsItem+RegisterInstallationAPI.h │ │ │ └── FIRInstallationsItem+RegisterInstallationAPI.m │ │ │ ├── InstallationsIDController │ │ │ ├── FIRInstallationsIDController.h │ │ │ ├── FIRInstallationsIDController.m │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.h │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.m │ │ │ └── FIRInstallationsStatus.h │ │ │ ├── InstallationsStore │ │ │ ├── FIRInstallationsStore.h │ │ │ ├── FIRInstallationsStore.m │ │ │ ├── FIRInstallationsStoredAuthToken.h │ │ │ ├── FIRInstallationsStoredAuthToken.m │ │ │ ├── FIRInstallationsStoredItem.h │ │ │ └── FIRInstallationsStoredItem.m │ │ │ ├── Private │ │ │ └── FirebaseInstallationsInternal.h │ │ │ └── Public │ │ │ ├── FIRInstallations.h │ │ │ ├── FIRInstallationsAuthTokenResult.h │ │ │ ├── FIRInstallationsErrors.h │ │ │ ├── FIRInstallationsVersion.h │ │ │ └── FirebaseInstallations.h │ ├── GoogleUtilities │ │ ├── Environment │ │ │ └── Private │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ ├── GULKeychainStorage.h │ │ │ │ ├── GULKeychainUtils.h │ │ │ │ └── GULSecureCoding.h │ │ └── UserDefaults │ │ │ └── Private │ │ │ └── GULUserDefaults.h │ ├── LICENSE │ └── README.md ├── GoogleDataTransport │ ├── GoogleDataTransport │ │ ├── GDTCCTLibrary │ │ │ ├── GDTCCTCompressionHelper.m │ │ │ ├── GDTCCTNanopbHelpers.m │ │ │ ├── GDTCCTUploader.m │ │ │ ├── GDTCOREvent+GDTCCTSupport.m │ │ │ ├── Private │ │ │ │ ├── GDTCCTCompressionHelper.h │ │ │ │ ├── GDTCCTNanopbHelpers.h │ │ │ │ └── GDTCCTUploader.h │ │ │ ├── Protogen │ │ │ │ └── nanopb │ │ │ │ │ ├── cct.nanopb.c │ │ │ │ │ └── cct.nanopb.h │ │ │ └── Public │ │ │ │ └── GDTCOREvent+GDTCCTSupport.h │ │ └── GDTCORLibrary │ │ │ ├── GDTCORAssert.m │ │ │ ├── GDTCORClock.m │ │ │ ├── GDTCORConsoleLogger.m │ │ │ ├── GDTCOREvent.m │ │ │ ├── GDTCORFlatFileStorage.m │ │ │ ├── GDTCORLifecycle.m │ │ │ ├── GDTCORPlatform.m │ │ │ ├── GDTCORReachability.m │ │ │ ├── GDTCORRegistrar.m │ │ │ ├── GDTCORStorageEventSelector.m │ │ │ ├── GDTCORTransformer.m │ │ │ ├── GDTCORTransport.m │ │ │ ├── GDTCORUploadCoordinator.m │ │ │ ├── Internal │ │ │ └── GoogleDataTransportInternal.h │ │ │ ├── Private │ │ │ ├── GDTCOREvent_Private.h │ │ │ ├── GDTCORFlatFileStorage.h │ │ │ ├── GDTCORReachability_Private.h │ │ │ ├── GDTCORRegistrar_Private.h │ │ │ ├── GDTCORTransformer.h │ │ │ ├── GDTCORTransformer_Private.h │ │ │ ├── GDTCORTransport_Private.h │ │ │ └── GDTCORUploadCoordinator.h │ │ │ └── Public │ │ │ ├── GDTCORAssert.h │ │ │ ├── GDTCORClock.h │ │ │ ├── GDTCORConsoleLogger.h │ │ │ ├── GDTCOREvent.h │ │ │ ├── GDTCOREventDataObject.h │ │ │ ├── GDTCOREventTransformer.h │ │ │ ├── GDTCORLifecycle.h │ │ │ ├── GDTCORPlatform.h │ │ │ ├── GDTCORReachability.h │ │ │ ├── GDTCORRegistrar.h │ │ │ ├── GDTCORStorageEventSelector.h │ │ │ ├── GDTCORStorageProtocol.h │ │ │ ├── GDTCORTargets.h │ │ │ ├── GDTCORTransport.h │ │ │ ├── GDTCORUploader.h │ │ │ └── GoogleDataTransport.h │ ├── LICENSE │ └── README.md ├── GoogleUtilities │ ├── GoogleUtilities │ │ ├── AppDelegateSwizzler │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULAppDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ ├── GULAppDelegateSwizzler.h │ │ │ │ └── GULApplication.h │ │ ├── Common │ │ │ └── GULLoggerCodes.h │ │ ├── Environment │ │ │ ├── GULHeartbeatDateStorage.m │ │ │ ├── GULSecureCoding.m │ │ │ ├── Private │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ ├── GULKeychainStorage.h │ │ │ │ ├── GULKeychainUtils.h │ │ │ │ └── GULSecureCoding.h │ │ │ ├── SecureStorage │ │ │ │ ├── GULKeychainStorage.m │ │ │ │ └── GULKeychainUtils.m │ │ │ └── third_party │ │ │ │ └── GULAppEnvironmentUtil.m │ │ ├── LICENSE │ │ ├── Logger │ │ │ ├── GULLogger.m │ │ │ ├── Private │ │ │ │ └── GULLogger.h │ │ │ └── Public │ │ │ │ └── GULLoggerLevel.h │ │ ├── MethodSwizzler │ │ │ ├── GULSwizzler.m │ │ │ └── Private │ │ │ │ ├── GULOriginalIMPConvenienceMacros.h │ │ │ │ └── GULSwizzler.h │ │ ├── NSData+zlib │ │ │ ├── GULNSData+zlib.m │ │ │ ├── Private │ │ │ │ └── GULNSDataInternal.h │ │ │ └── Public │ │ │ │ └── GULNSData+zlib.h │ │ ├── Network │ │ │ ├── GULMutableDictionary.m │ │ │ ├── GULNetwork.m │ │ │ ├── GULNetworkConstants.m │ │ │ ├── GULNetworkURLSession.m │ │ │ └── Private │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ ├── GULNetwork.h │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ └── GULNetworkURLSession.h │ │ ├── Reachability │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ ├── GULReachabilityChecker.m │ │ │ └── Private │ │ │ │ ├── GULReachabilityChecker.h │ │ │ │ └── GULReachabilityMessageCode.h │ │ ├── SceneDelegateSwizzler │ │ │ ├── GULSceneDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULSceneDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ └── GULSceneDelegateSwizzler.h │ │ └── UserDefaults │ │ │ ├── GULUserDefaults.m │ │ │ └── Private │ │ │ └── GULUserDefaults.h │ └── README.md ├── Headers │ ├── Private │ │ └── Firebase │ │ │ └── Firebase.h │ └── Public │ │ └── Firebase │ │ └── Firebase.h ├── PromisesObjC │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── FBLPromises │ │ ├── FBLPromise+All.m │ │ ├── FBLPromise+Always.m │ │ ├── FBLPromise+Any.m │ │ ├── FBLPromise+Async.m │ │ ├── FBLPromise+Await.m │ │ ├── FBLPromise+Catch.m │ │ ├── FBLPromise+Delay.m │ │ ├── FBLPromise+Do.m │ │ ├── FBLPromise+Race.m │ │ ├── FBLPromise+Recover.m │ │ ├── FBLPromise+Reduce.m │ │ ├── FBLPromise+Retry.m │ │ ├── FBLPromise+Testing.m │ │ ├── FBLPromise+Then.m │ │ ├── FBLPromise+Timeout.m │ │ ├── FBLPromise+Validate.m │ │ ├── FBLPromise+Wrap.m │ │ ├── FBLPromise.m │ │ ├── FBLPromiseError.m │ │ └── include │ │ ├── FBLPromise+All.h │ │ ├── FBLPromise+Always.h │ │ ├── FBLPromise+Any.h │ │ ├── FBLPromise+Async.h │ │ ├── FBLPromise+Await.h │ │ ├── FBLPromise+Catch.h │ │ ├── FBLPromise+Delay.h │ │ ├── FBLPromise+Do.h │ │ ├── FBLPromise+Race.h │ │ ├── FBLPromise+Recover.h │ │ ├── FBLPromise+Reduce.h │ │ ├── FBLPromise+Retry.h │ │ ├── FBLPromise+Testing.h │ │ ├── FBLPromise+Then.h │ │ ├── FBLPromise+Timeout.h │ │ ├── FBLPromise+Validate.h │ │ ├── FBLPromise+Wrap.h │ │ ├── FBLPromise.h │ │ ├── FBLPromiseError.h │ │ ├── FBLPromisePrivate.h │ │ └── FBLPromises.h └── nanopb │ ├── LICENSE.txt │ ├── README.md │ ├── pb.h │ ├── pb_common.c │ ├── pb_common.h │ ├── pb_decode.c │ ├── pb_decode.h │ ├── pb_encode.c │ └── pb_encode.h ├── README.md ├── Resources ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app-icon-testnet@1x.png │ │ ├── app-icon-testnet@2x.png │ │ └── app-icon-testnet@3x.png │ ├── AppIconMain.appiconset │ │ ├── Contents.json │ │ ├── app-icon-mainnet@1x.png │ │ ├── app-icon-mainnet@2x.png │ │ └── app-icon-mainnet@3x.png │ ├── AppIconMaster.appiconset │ │ ├── Contents.json │ │ ├── app-icon-masternet@1x-1.png │ │ ├── app-icon-masternet@1x.png │ │ └── app-icon-masternet@2x.png │ ├── Contents.json │ ├── MenuSelectedBackground.imageset │ │ ├── Contents.json │ │ └── Rectangle.png │ ├── ThumbUP.imageset │ │ ├── Contents.json │ │ └── ThumbUP.png │ ├── assetbeamx.imageset │ │ ├── Contents.json │ │ ├── assetbeamx.png │ │ ├── assetbeamx@2x.png │ │ └── assetbeamx@3x.png │ ├── beamxVerified.imageset │ │ ├── Contents.json │ │ ├── beamxVerified.png │ │ ├── beamxVerified@2x.png │ │ └── beamxVerified@3x.png │ ├── bgNew.imageset │ │ ├── Contents.json │ │ ├── bgNewTriangles.png │ │ ├── bgNewTriangles@2x.png │ │ └── bgNewTriangles@3x.png │ ├── bgTestnet.imageset │ │ ├── Contents.json │ │ └── bgTestnet.png │ ├── checkboxEmpty.imageset │ │ ├── Contents.json │ │ ├── checkboxEmpty.png │ │ ├── checkboxEmpty@2x.png │ │ └── checkboxEmpty@3x.png │ ├── checkboxFull.imageset │ │ ├── Contents.json │ │ ├── checkboxFull.png │ │ ├── checkboxFull@2x.png │ │ └── checkboxFull@3x.png │ ├── clearIcon.imageset │ │ ├── Contents.json │ │ ├── clearIcon.png │ │ ├── clearIcon@2x.png │ │ └── clearIcon@3x.png │ ├── dao_app_icon.imageset │ │ ├── Contents.json │ │ ├── dao_app_icon.png │ │ ├── dao_app_icon@2x.png │ │ └── dao_app_icon@3x.png │ ├── dapp-loading.imageset │ │ ├── Contents.json │ │ ├── dapp-loading.png │ │ ├── dapp-loading@2x.png │ │ └── dapp-loading@3x.png │ ├── filterIcon.imageset │ │ ├── Contents.json │ │ ├── iconCategoryCopy2.png │ │ ├── iconCategoryCopy2@2x.png │ │ └── iconCategoryCopy2@3x.png │ ├── gradientBlue.imageset │ │ ├── Contents.json │ │ ├── Rectangle 7.png │ │ ├── Rectangle 7@2x.png │ │ └── Rectangle 7@3x.png │ ├── icBeam3d.imageset │ │ ├── Contents.json │ │ ├── icBeam3d.png │ │ ├── icBeam3d@2x.png │ │ └── icBeam3d@3x.png │ ├── icEyeCrossedBig.imageset │ │ ├── Contents.json │ │ ├── icEyeCrossedBig.png │ │ ├── icEyeCrossedBig@2x.png │ │ └── icEyeCrossedBig@3x.png │ ├── icNoResults.imageset │ │ ├── Contents.json │ │ ├── icNoResults.png │ │ ├── icNoResults@2x.png │ │ └── icNoResults@3x.png │ ├── icReceive3D.imageset │ │ ├── Contents.json │ │ ├── icReceive3D.png │ │ ├── icReceive3D@2x.png │ │ └── icReceive3D@3x.png │ ├── icReceiveBlue.imageset │ │ ├── Contents.json │ │ ├── icReceiveBlue.png │ │ ├── icReceiveBlue@2x.png │ │ └── icReceiveBlue@3x.png │ ├── icScanQr3D.imageset │ │ ├── Contents.json │ │ ├── icScanQr3D.png │ │ ├── icScanQr3D@2x.png │ │ └── icScanQr3D@3x.png │ ├── icSend3D.imageset │ │ ├── Contents.json │ │ ├── icSend3D.png │ │ ├── icSend3D@2x.png │ │ └── icSend3D@3x.png │ ├── icShare.imageset │ │ ├── Contents.json │ │ ├── icShare.png │ │ ├── icShare@2x.png │ │ └── icShare@3x.png │ ├── ic_asset.imageset │ │ ├── Contents.json │ │ ├── ic_asset.png │ │ ├── ic_asset@2x.png │ │ └── ic_asset@3x.png │ ├── ic_asset_beam.imageset │ │ ├── Contents.json │ │ ├── ic_asset_beam.png │ │ ├── ic_asset_beam@2x.png │ │ └── ic_asset_beam@3x.png │ ├── ic_asset_beam_big.imageset │ │ ├── Contents.json │ │ ├── ic_asset_beam_big.png │ │ ├── ic_asset_beam_big@2x.png │ │ └── ic_asset_beam_big@3x.png │ ├── ic_asset_big.imageset │ │ ├── Contents.json │ │ ├── ic_asset_big.png │ │ ├── ic_asset_big@2x.png │ │ └── ic_asset_big@3x.png │ ├── ic_asset_info.imageset │ │ ├── Contents.json │ │ ├── infoButton1.png │ │ ├── infoButton1@2x.png │ │ └── infoButton1@3x.png │ ├── ic_gallery.imageset │ │ ├── Contents.json │ │ ├── icon_gallery.png │ │ ├── icon_gallery@2x.png │ │ └── icon_gallery@3x.png │ ├── ic_trusted_node.imageset │ │ ├── Contents.json │ │ ├── ic_trusted_node.png │ │ ├── ic_trusted_node@2x.png │ │ └── ic_trusted_node@3x.png │ ├── ic_verify-1.imageset │ │ ├── Contents.json │ │ ├── ic_verify.png │ │ ├── ic_verify@2x.png │ │ └── ic_verify@3x.png │ ├── ic_verify.imageset │ │ ├── Contents.json │ │ ├── ic_verify.png │ │ ├── ic_verify@2x.png │ │ └── ic_verify@3x.png │ ├── icnAdd.imageset │ │ ├── Contents.json │ │ ├── icnAdd.png │ │ ├── icnAdd@2x.png │ │ └── icnAdd@3x.png │ ├── icnCheckmarkEmpty.imageset │ │ ├── Contents.json │ │ ├── icnCheckmarkEmpty.png │ │ ├── icnCheckmarkEmpty@2x.png │ │ └── icnCheckmarkEmpty@3x.png │ ├── icnCheckmarkFull.imageset │ │ ├── Contents.json │ │ ├── icnCheckmarkFull.png │ │ ├── icnCheckmarkFull@2x.png │ │ └── icnCheckmarkFull@3x.png │ ├── icnCloud.imageset │ │ ├── Contents.json │ │ ├── icnCloud.png │ │ ├── icnCloud@2x.png │ │ └── icnCloud@3x.png │ ├── icnEdit.imageset │ │ ├── Contents.json │ │ ├── icnEdit.png │ │ ├── icnEdit@2x.png │ │ └── icnEdit@3x.png │ ├── icnHelp.imageset │ │ ├── Contents.json │ │ ├── helpIconsCopy3.png │ │ ├── helpIconsCopy3@2x.png │ │ └── helpIconsCopy3@3x.png │ ├── icnKeyboard.imageset │ │ ├── Contents.json │ │ ├── icnKeyboard.png │ │ ├── icnKeyboard@2x.png │ │ └── icnKeyboard@3x.png │ ├── icnLaptop.imageset │ │ ├── Contents.json │ │ ├── icnLaptop.png │ │ ├── icnLaptop@2x.png │ │ └── icnLaptop@3x.png │ ├── icnReceiveCanceled.imageset │ │ ├── Contents.json │ │ ├── icnReceiveCanceled.png │ │ ├── icnReceiveCanceled@2x.png │ │ └── icnReceiveCanceled@3x.png │ ├── icnSendCanceled.imageset │ │ ├── Contents.json │ │ ├── icnSendCanceled.png │ │ ├── icnSendCanceled@2x.png │ │ └── icnSendCanceled@3x.png │ ├── icon-failed.imageset │ │ ├── Contents.json │ │ ├── icon-failed.png │ │ ├── icon-failed@2x.png │ │ └── icon-failed@3x.png │ ├── icon-icon-sending-public.imageset │ │ ├── Contents.json │ │ └── icon-icon-sending-public@3x.png │ ├── icon-icon-sending.imageset │ │ ├── Contents.json │ │ ├── icon-icon-sending.png │ │ ├── icon-icon-sending@2x.png │ │ └── icon-icon-sending@3x.png │ ├── icon-notifictions-offline-receive-failed.imageset │ │ ├── Contents.json │ │ ├── icon-notifictions-offline-receive-failed.png │ │ ├── icon-notifictions-offline-receive-failed@2x.png │ │ └── icon-notifictions-offline-receive-failed@3x.png │ ├── icon-notifictions-offline-send-failed.imageset │ │ ├── Contents.json │ │ ├── icon-notifictions-offline-send-failed.png │ │ ├── icon-notifictions-offline-send-failed@2x.png │ │ └── icon-notifictions-offline-send-failed@3x.png │ ├── icon-notifictions-received-offline.imageset │ │ ├── Contents.json │ │ ├── icon-notifictions-received-offline.png │ │ ├── icon-notifictions-received-offline@2x.png │ │ └── icon-notifictions-received-offline@3x.png │ ├── icon-notifictions-send-offline.imageset │ │ ├── Contents.json │ │ ├── icon-notifictions-send-offline.png │ │ ├── icon-notifictions-send-offline@2x.png │ │ └── icon-notifictions-send-offline@3x.png │ ├── icon-received-failed.imageset │ │ ├── Contents.json │ │ ├── icon-send-canceled@2x.png │ │ └── icon-send-canceled@3x.png │ ├── icon-received.imageset │ │ ├── Contents.json │ │ ├── icon-received.png │ │ ├── icon-received@2x.png │ │ └── icon-received@3x.png │ ├── icon-receiving.imageset │ │ ├── Contents.json │ │ ├── icon-receiving.png │ │ ├── icon-receiving@2x.png │ │ └── icon-receiving@3x.png │ ├── icon-seding-max-privacy-own.imageset │ │ ├── Contents.json │ │ ├── icon-seding-max-privacy-own.png │ │ ├── icon-seding-max-privacy-own@2x.png │ │ └── icon-seding-max-privacy-own@3x.png │ ├── icon-send-failed.imageset │ │ ├── Contents.json │ │ ├── icon-send-canceled.png │ │ ├── icon-send-canceled@2x.png │ │ └── icon-send-canceled@3x.png │ ├── icon-send-own-offline.imageset │ │ ├── Contents.json │ │ ├── icon-send-own-offline.png │ │ ├── icon-send-own-offline@2x.png │ │ └── icon-send-own-offline@3x.png │ ├── icon-sending-own.imageset │ │ ├── Contents.json │ │ ├── icon-sending-own.png │ │ ├── icon-sending-own@2x.png │ │ └── icon-sending-own@3x.png │ ├── icon-sent-max-privacy-own.imageset │ │ ├── Contents.json │ │ ├── icon-sent-max-privacy-own.png │ │ ├── icon-sent-max-privacy-own@2x.png │ │ └── icon-sent-max-privacy-own@3x.png │ ├── icon-sent-own-offline.imageset │ │ ├── Contents.json │ │ ├── icon-sent-own-offline.png │ │ ├── icon-sent-own-offline@2x.png │ │ └── icon-sent-own-offline@3x.png │ ├── icon-sent-own.imageset │ │ ├── Contents.json │ │ ├── icon-sent-own.png │ │ ├── icon-sent-own@2x.png │ │ └── icon-sent-own@3x.png │ ├── icon-sent.imageset │ │ ├── Contents.json │ │ ├── icon-sent.png │ │ ├── icon-sent@2x.png │ │ └── icon-sent@3x.png │ ├── iconAddBlue.imageset │ │ ├── Contents.json │ │ ├── iconAddBlue.png │ │ ├── iconAddBlue@2x.png │ │ └── iconAddBlue@3x.png │ ├── iconAddressBookSmall.imageset │ │ ├── Contents.json │ │ ├── iconAddressbook.png │ │ ├── iconAddressbook@2x.png │ │ └── iconAddressbook@3x.png │ ├── iconAddressbookEmptyState.imageset │ │ ├── Contents.json │ │ ├── iconAddressbookEmptyState.png │ │ ├── iconAddressbookEmptyState@2x.png │ │ └── iconAddressbookEmptyState@3x.png │ ├── iconAddresses.imageset │ │ ├── Contents.json │ │ ├── iconAddressbookActive.png │ │ ├── iconAddressbookActive@2x.png │ │ └── iconAddressbookActive@3x.png │ ├── iconBack.imageset │ │ ├── Contents.json │ │ └── iconBack@2x.png │ ├── iconBeam.imageset │ │ ├── Contents.json │ │ ├── icon-beam.png │ │ ├── icon-beam@2x.png │ │ └── icon-beam@3x.png │ ├── iconBuyLogo.imageset │ │ ├── Contents.json │ │ ├── groupCopy.png │ │ ├── groupCopy@2x.png │ │ └── groupCopy@3x.png │ ├── iconCancel.imageset │ │ ├── Contents.json │ │ ├── iconCancel.png │ │ ├── iconCancel@2x.png │ │ └── iconCancel@3x.png │ ├── iconCancelBig.imageset │ │ ├── Contents.json │ │ ├── iconCancel.png │ │ ├── iconCancel@2x.png │ │ └── iconCancel@3x.png │ ├── iconChange.imageset │ │ ├── Contents.json │ │ ├── iconChange.png │ │ ├── iconChange@2x.png │ │ └── iconChange@3x.png │ ├── iconComment.imageset │ │ ├── Contents.json │ │ ├── iconComment.png │ │ ├── iconComment@2x.png │ │ └── iconComment@3x.png │ ├── iconContact.imageset │ │ ├── Contents.json │ │ ├── icnContact.png │ │ ├── icnContact@2x.png │ │ └── icnContact@3x.png │ ├── iconContractCompleted.imageset │ │ ├── Contents.json │ │ ├── iconContractCompleted.png │ │ ├── iconContractCompleted@2x.png │ │ └── iconContractCompleted@3x.png │ ├── iconContractExpired.imageset │ │ ├── Contents.json │ │ ├── iconContractExpired.png │ │ ├── iconContractExpired@2x.png │ │ └── iconContractExpired@3x.png │ ├── iconContractFailed.imageset │ │ ├── Contents.json │ │ ├── iconContractFailed.png │ │ ├── iconContractFailed@2x.png │ │ └── iconContractFailed@3x.png │ ├── iconCopy.imageset │ │ ├── Contents.json │ │ ├── iconCopy.png │ │ ├── iconCopy@2x.png │ │ └── iconCopy@3x.png │ ├── iconCopyBlue.imageset │ │ ├── Contents.json │ │ ├── iconCopyBlue.png │ │ ├── iconCopyBlue@2x.png │ │ └── iconCopyBlue@3x.png │ ├── iconCopyWhite.imageset │ │ ├── Contents.json │ │ ├── iconCopyWhite@2x.png │ │ └── iconCopyWhite@3x.png │ ├── iconCopyWhite24.imageset │ │ ├── Contents.json │ │ ├── iconCopyWhite24-1.png │ │ ├── iconCopyWhite24-2.png │ │ └── iconCopyWhite24.png │ ├── iconDao.imageset │ │ ├── Contents.json │ │ ├── iconDao.png │ │ ├── iconDao@2x.png │ │ └── iconDao@3x.png │ ├── iconDaoVote.imageset │ │ ├── Contents.json │ │ ├── iconDaoVote@2x.png │ │ └── iconDaoVote@3x.png │ ├── iconDapps.imageset │ │ ├── Contents.json │ │ ├── iconDapps.png │ │ ├── iconDapps@2x.png │ │ └── iconDapps@3x.png │ ├── iconDeleteBlue.imageset │ │ ├── Contents.json │ │ ├── iconDeleteBlueCopy5.png │ │ ├── iconDeleteBlueCopy5@2x.png │ │ └── iconDeleteBlueCopy5@3x.png │ ├── iconDoneBlue.imageset │ │ ├── Contents.json │ │ ├── icnDone.png │ │ ├── icnDone@2x.png │ │ └── icnDone@3x.png │ ├── iconDownArrow.imageset │ │ ├── Contents.json │ │ ├── arrow.png │ │ ├── arrow@2x.png │ │ └── arrow@3x.png │ ├── iconExpired.imageset │ │ ├── Contents.json │ │ ├── iconExpired.png │ │ ├── iconExpired@2x.png │ │ └── iconExpired@3x.png │ ├── iconExpires.imageset │ │ ├── Contents.json │ │ ├── iconExp.png │ │ ├── iconExp@2x.png │ │ └── iconExp@3x.png │ ├── iconExport.imageset │ │ ├── Contents.json │ │ ├── iconExport.png │ │ ├── iconExport@2x.png │ │ └── iconExport@3x.png │ ├── iconExternalLinkGray.imageset │ │ ├── Contents.json │ │ ├── icnExternalLinkCopy4.png │ │ ├── icnExternalLinkCopy4@2x.png │ │ └── icnExternalLinkCopy4@3x.png │ ├── iconExternalLinkGreen.imageset │ │ ├── Contents.json │ │ ├── icn_external_link-1.png │ │ └── icn_external_link.png │ ├── iconEye.imageset │ │ ├── Contents.json │ │ ├── eye.png │ │ ├── eye@2x.png │ │ └── eye@3x.png │ ├── iconEyePass1.imageset │ │ ├── Contents.json │ │ ├── icnEyeCrossed.png │ │ ├── icnEyeCrossed@2x.png │ │ └── icnEyeCrossed@3x.png │ ├── iconEyePass2.imageset │ │ ├── Contents.json │ │ ├── icnEyeCrossed.png │ │ ├── icnEyeCrossed@2x.png │ │ └── icnEyeCrossed@3x.png │ ├── iconEyeWhite.imageset │ │ ├── Contents.json │ │ ├── icon_details.png │ │ └── icon_details@2x.png │ ├── iconFaceId.imageset │ │ ├── Contents.json │ │ ├── icnFaceidWhite.png │ │ ├── icnFaceidWhite@2x.png │ │ └── icnFaceidWhite@3x.png │ ├── iconHideBalance.imageset │ │ ├── Contents.json │ │ ├── icEye.png │ │ ├── icEye@2x.png │ │ └── icEye@3x.png │ ├── iconInfinity.imageset │ │ ├── Contents.json │ │ ├── iconInfinity.png │ │ ├── iconInfinity@2x.png │ │ └── iconInfinity@3x.png │ ├── iconLeftMenu.imageset │ │ ├── Contents.json │ │ ├── icBurger.png │ │ ├── icBurger@2x.png │ │ └── icBurger@3x.png │ ├── iconLogout.imageset │ │ ├── Contents.json │ │ ├── icLogout.png │ │ ├── icLogout@2x.png │ │ └── icLogout@3x.png │ ├── iconMobbileNode.imageset │ │ ├── Contents.json │ │ ├── iconMobbileNode.png │ │ ├── iconMobbileNode@2x.png │ │ └── iconMobbileNode@3x.png │ ├── iconMore.imageset │ │ ├── Contents.json │ │ ├── icMore.png │ │ ├── icMore@2x.png │ │ └── icMore@3x.png │ ├── iconNextArrow.imageset │ │ ├── Contents.json │ │ ├── arrow.png │ │ ├── arrow@2x.png │ │ └── arrow@3x.png │ ├── iconNextBlue.imageset │ │ ├── Contents.json │ │ ├── icSendBlue.png │ │ ├── icSendBlue@2x.png │ │ └── icSendBlue@3x.png │ ├── iconNextLightBlue.imageset │ │ ├── Contents.json │ │ ├── icSendBlue.png │ │ ├── icSendBlue@2x.png │ │ └── icSendBlue@3x.png │ ├── iconNextPink.imageset │ │ ├── Contents.json │ │ ├── icSendBlue.png │ │ ├── icSendBlue@2x.png │ │ └── icSendBlue@3x.png │ ├── iconNextWhite.imageset │ │ ├── Contents.json │ │ ├── iconNextWhite.png │ │ ├── iconNextWhite@2x.png │ │ └── iconNextWhite@3x.png │ ├── iconNode.imageset │ │ ├── Contents.json │ │ ├── iconNode.png │ │ ├── iconNode@2x.png │ │ └── iconNode@3x.png │ ├── iconNotificationEmpty.imageset │ │ ├── Contents.json │ │ ├── iconNotification.png │ │ ├── iconNotification@2x.png │ │ └── iconNotification@3x.png │ ├── iconNotificationMenu.imageset │ │ ├── Contents.json │ │ ├── iconNotification.png │ │ ├── iconNotification@2x.png │ │ └── iconNotification@3x.png │ ├── iconNotifictionsExpired.imageset │ │ ├── Contents.json │ │ ├── iconNotifictionsExpiredCopy.png │ │ ├── iconNotifictionsExpiredCopy@2x.png │ │ └── iconNotifictionsExpiredCopy@3x.png │ ├── iconNotifictionsFailed.imageset │ │ ├── Contents.json │ │ ├── iconNotifictionsFailed.png │ │ ├── iconNotifictionsFailed@2x.png │ │ └── iconNotifictionsFailed@3x.png │ ├── iconNotifictionsFailedReceived.imageset │ │ ├── Contents.json │ │ ├── iconNotifictionsFailedCopy.png │ │ ├── iconNotifictionsFailedCopy@2x.png │ │ └── iconNotifictionsFailedCopy@3x.png │ ├── iconNotifictionsFailedSentMaxPrivacy.imageset │ │ ├── Contents.json │ │ ├── iconNotifictionsFailedSentMaxPrivacy.png │ │ ├── iconNotifictionsFailedSentMaxPrivacy@2x.png │ │ └── iconNotifictionsFailedSentMaxPrivacy@3x.png │ ├── iconNotifictionsFailedSentOffline.imageset │ │ ├── Contents.json │ │ ├── icon-notifictions-offline-send-failed.png │ │ ├── icon-notifictions-offline-send-failed@2x.png │ │ └── icon-notifictions-offline-send-failed@3x.png │ ├── iconNotifictionsReceived.imageset │ │ ├── Contents.json │ │ ├── iconNotifictionsReceivedCopy.png │ │ ├── iconNotifictionsReceivedCopy@2x.png │ │ └── iconNotifictionsReceivedCopy@3x.png │ ├── iconNotifictionsReceivedMaxPrivacy.imageset │ │ ├── Contents.json │ │ ├── iconNotifictionsReceivedMaxPrivacy.png │ │ ├── iconNotifictionsReceivedMaxPrivacy@2x.png │ │ └── iconNotifictionsReceivedMaxPrivacy@3x.png │ ├── iconNotifictionsReceivedOffline.imageset │ │ ├── Contents.json │ │ ├── icon-notifictions-received-offline.png │ │ ├── icon-notifictions-received-offline@2x.png │ │ └── icon-notifictions-received-offline@3x.png │ ├── iconNotifictionsSendedOffline.imageset │ │ ├── Contents.json │ │ ├── icon-notifictions-send-offline.png │ │ ├── icon-notifictions-send-offline@2x.png │ │ └── icon-notifictions-send-offline@3x.png │ ├── iconNotifictionsSent.imageset │ │ ├── Contents.json │ │ ├── iconNotifictionsSent.png │ │ ├── iconNotifictionsSent@2x.png │ │ └── iconNotifictionsSent@3x.png │ ├── iconNotifictionsSentMaxPrivacy.imageset │ │ ├── Contents.json │ │ ├── iconNotifictionsSentMaxPrivacy.png │ │ ├── iconNotifictionsSentMaxPrivacy@2x.png │ │ └── iconNotifictionsSentMaxPrivacy@3x.png │ ├── iconNotifictionsUpdate.imageset │ │ ├── Contents.json │ │ ├── iconNotifictionsUpdateCopy.png │ │ ├── iconNotifictionsUpdateCopy@2x.png │ │ └── iconNotifictionsUpdateCopy@3x.png │ ├── iconPassword.imageset │ │ ├── Contents.json │ │ ├── password.png │ │ ├── password@2x.png │ │ └── password@3x.png │ ├── iconQr.imageset │ │ ├── Contents.json │ │ ├── iconQr.png │ │ ├── iconQr@2x.png │ │ └── iconQr@3x.png │ ├── iconRandomNode.imageset │ │ ├── Contents.json │ │ ├── iconRandomNode.png │ │ ├── iconRandomNode@2x.png │ │ └── iconRandomNode@3x.png │ ├── iconReceiveAddress.imageset │ │ ├── Contents.json │ │ ├── iconReceiveAddress.png │ │ ├── iconReceiveAddress@2x.png │ │ └── iconReceiveAddress@3x.png │ ├── iconReceiveBlue.imageset │ │ ├── Contents.json │ │ ├── icReceiveBlue.png │ │ ├── icReceiveBlue@2x.png │ │ └── icReceiveBlue@3x.png │ ├── iconReceiveLightBlue.imageset │ │ ├── Contents.json │ │ ├── iconReceiveBlue.png │ │ ├── iconReceiveBlue@2x.png │ │ └── iconReceiveBlue@3x.png │ ├── iconRecovery.imageset │ │ ├── Contents.json │ │ ├── iconRecovery.png │ │ ├── iconRecovery@2x.png │ │ └── iconRecovery@3x.png │ ├── iconRepeatGreen.imageset │ │ ├── Contents.json │ │ ├── iconRepeatCopy.png │ │ ├── iconRepeatCopy@2x.png │ │ └── iconRepeatCopy@3x.png │ ├── iconRowCancel.imageset │ │ ├── Contents.json │ │ ├── icCancel.png │ │ ├── icCancel@2x.png │ │ └── icCancel@3x.png │ ├── iconRowCopy.imageset │ │ ├── Contents.json │ │ ├── icCopy.png │ │ ├── icCopy@2x.png │ │ └── icCopy@3x.png │ ├── iconRowDelete.imageset │ │ ├── Contents.json │ │ ├── icDelete.png │ │ ├── icDelete@2x.png │ │ └── icDelete@3x.png │ ├── iconRowEdit.imageset │ │ ├── Contents.json │ │ ├── icFloatingStartChat.png │ │ ├── icFloatingStartChat@2x.png │ │ └── icFloatingStartChat@3x.png │ ├── iconRowRepeat.imageset │ │ ├── Contents.json │ │ ├── iconCancelCopy2.png │ │ ├── iconCancelCopy2@2x.png │ │ └── iconCancelCopy2@3x.png │ ├── iconScanQr.imageset │ │ ├── Contents.json │ │ ├── iconQr.png │ │ ├── iconQr@2x.png │ │ └── iconQr@3x.png │ ├── iconSearchSmall.imageset │ │ ├── Contents.json │ │ ├── search.png │ │ └── search@2x.png │ ├── iconSeedPhrase.imageset │ │ ├── Contents.json │ │ ├── iconSeedPhrase.png │ │ ├── iconSeedPhrase@2x.png │ │ └── iconSeedPhrase@3x.png │ ├── iconSendAddress.imageset │ │ ├── Contents.json │ │ ├── iconSendAddress.png │ │ ├── iconSendAddress@2x.png │ │ └── iconSendAddress@3x.png │ ├── iconSendBlue.imageset │ │ ├── Contents.json │ │ ├── icSendBlue.png │ │ ├── icSendBlue@2x.png │ │ └── icSendBlue@3x.png │ ├── iconSendPink.imageset │ │ ├── Contents.json │ │ ├── icSend.png │ │ ├── icSend@2x.png │ │ └── icSend@3x.png │ ├── iconSettings.imageset │ │ ├── Contents.json │ │ ├── iconSettings.png │ │ ├── iconSettings@2x.png │ │ └── iconSettings@3x.png │ ├── iconSettingsGeneral.imageset │ │ ├── Contents.json │ │ ├── iconSettingsGeneral.png │ │ ├── iconSettingsGeneral@2x.png │ │ └── iconSettingsGeneral@3x.png │ ├── iconSettingsPrivacy.imageset │ │ ├── Contents.json │ │ ├── iconSettingsPrivacy.png │ │ ├── iconSettingsPrivacy@2x.png │ │ └── iconSettingsPrivacy@3x.png │ ├── iconSettingsRate.imageset │ │ ├── Contents.json │ │ ├── iconSettingsRate.png │ │ ├── iconSettingsRate@2x.png │ │ └── iconSettingsRate@3x.png │ ├── iconSettingsRemove.imageset │ │ ├── Contents.json │ │ ├── iconSettingsRemove.png │ │ ├── iconSettingsRemove@2x.png │ │ └── iconSettingsRemove@3x.png │ ├── iconSettingsReport.imageset │ │ ├── Contents.json │ │ ├── iconSettingsReport.png │ │ ├── iconSettingsReport@2x.png │ │ └── iconSettingsReport@3x.png │ ├── iconSettingsTags.imageset │ │ ├── Contents.json │ │ ├── iconSettingsTags.png │ │ ├── iconSettingsTags@2x.png │ │ └── iconSettingsTags@3x.png │ ├── iconSettingsUtilities.imageset │ │ ├── Contents.json │ │ ├── iconSettingsUtilities.png │ │ ├── iconSettingsUtilities@2x.png │ │ └── iconSettingsUtilities@3x.png │ ├── iconShareNew.imageset │ │ ├── Contents.json │ │ ├── iconExportCopy2.png │ │ ├── iconExportCopy2@2x.png │ │ └── iconExportCopy2@3x.png │ ├── iconShowBalance.imageset │ │ ├── Contents.json │ │ ├── icEyeCrossed.png │ │ ├── icEyeCrossed@2x.png │ │ └── icEyeCrossed@3x.png │ ├── iconShuffle.imageset │ │ ├── Contents.json │ │ ├── shuffle-arrows-hand-drawn-symbol.png │ │ ├── shuffle-arrows-hand-drawn-symbol@2x.png │ │ └── shuffle-arrows-hand-drawn-symbol@3x.png │ ├── iconShufflePink.imageset │ │ ├── Contents.json │ │ ├── icnChange.png │ │ ├── icnChange@2x.png │ │ └── icnChange@3x.png │ ├── iconSpecificNode.imageset │ │ ├── Contents.json │ │ ├── iconSpecificNode.png │ │ ├── iconSpecificNode@2x.png │ │ └── iconSpecificNode@3x.png │ ├── iconStopUnlinking.imageset │ │ ├── Contents.json │ │ ├── iconStopUnlinking.png │ │ ├── iconStopUnlinking@2x.png │ │ └── iconStopUnlinking@3x.png │ ├── iconSymbol.imageset │ │ ├── Contents.json │ │ ├── iconSymbol@2x.png │ │ └── iconSymbol@3x.png │ ├── iconTouchid.imageset │ │ ├── Contents.json │ │ ├── icnTouchid.png │ │ ├── icnTouchid@2x.png │ │ └── icnTouchid@3x.png │ ├── iconTouchidSmall.imageset │ │ ├── Contents.json │ │ ├── icnTouchid.png │ │ ├── icnTouchid@2x.png │ │ └── icnTouchid@3x.png │ ├── iconUnlinkSmall.imageset │ │ ├── Contents.json │ │ ├── iconUnlink.png │ │ ├── iconUnlink@2x.png │ │ └── iconUnlink@3x.png │ ├── iconUnlinkedTransaction.imageset │ │ ├── Contents.json │ │ ├── iconUnlinkedCopy6.png │ │ ├── iconUnlinkedCopy6@2x.png │ │ └── iconUnlinkedCopy6@3x.png │ ├── iconUtxo.imageset │ │ ├── Contents.json │ │ ├── iconUtxo.png │ │ ├── iconUtxo@2x.png │ │ └── iconUtxo@3x.png │ ├── iconUtxoEmptyState.imageset │ │ ├── Contents.json │ │ ├── iconUtxoEmptyState.png │ │ ├── iconUtxoEmptyState@2x.png │ │ └── iconUtxoEmptyState@3x.png │ ├── iconWallet.imageset │ │ ├── Contents.json │ │ ├── iconWallet.png │ │ ├── iconWallet@2x.png │ │ └── iconWallet@3x.png │ ├── iconWalletEmpty.imageset │ │ ├── Contents.json │ │ ├── iconWalletEmpty.png │ │ ├── iconWalletEmpty@2x.png │ │ └── iconWalletEmpty@3x.png │ ├── iconWalletSmall.imageset │ │ ├── Contents.json │ │ ├── iconWalletSmall.png │ │ ├── iconWalletSmall@2x.png │ │ └── iconWalletSmall@3x.png │ ├── icon_faucet.imageset │ │ ├── Contents.json │ │ ├── icon_faucet.png │ │ ├── icon_faucet@2x.png │ │ └── icon_faucet@3x.png │ ├── initial_background.imageset │ │ ├── Contents.json │ │ ├── bgNewTriangles.png │ │ ├── bgNewTriangles@2x.png │ │ └── bgNewTriangles@3x.png │ ├── lock.imageset │ │ ├── Contents.json │ │ ├── lock.png │ │ ├── lock@2x.png │ │ └── lock@3x.png │ ├── logo.imageset │ │ ├── Contents.json │ │ ├── logoNew.png │ │ ├── logoNew@2x.png │ │ └── logoNew@3x.png │ ├── logoNew.imageset │ │ ├── Contents.json │ │ ├── logoNew.png │ │ ├── logoNew@2x.png │ │ └── logoNew@3x.png │ ├── logo_small.imageset │ │ ├── Contents.json │ │ ├── logo_small.png │ │ ├── logo_small@2x.png │ │ └── logo_small@3x.png │ ├── max_privacy │ │ ├── Contents.json │ │ ├── icon-canceled-max-offline.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-send-canceled-offline.png │ │ │ ├── icon-send-canceled-offline@2x.png │ │ │ └── icon-send-canceled-offline@3x.png │ │ ├── icon-canceled-max-online.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-icon-canceled-max-online.png │ │ │ ├── icon-icon-canceled-max-online@2x.png │ │ │ └── icon-icon-canceled-max-online@3x.png │ │ ├── icon-failed-max-offline.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-send-failed-offline.png │ │ │ ├── icon-send-failed-offline@2x.png │ │ │ └── icon-send-failed-offline@3x.png │ │ ├── icon-failed-max-online.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-icon-failed-max-online.png │ │ │ ├── icon-icon-failed-max-online@2x.png │ │ │ └── icon-icon-failed-max-online@3x.png │ │ ├── icon-in-progress-max-offline.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-icon-sending.png │ │ │ ├── icon-icon-sending@2x.png │ │ │ └── icon-icon-sending@3x.png │ │ ├── icon-in-progress-max-online.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-icon-in-progress-max-online.png │ │ │ ├── icon-icon-in-progress-max-online@2x.png │ │ │ └── icon-icon-in-progress-max-online@3x.png │ │ ├── icon-in-progress-receive-max-privacy-offline.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-iprogress-receive-offline.png │ │ │ ├── icon-iprogress-receive-offline@2x.png │ │ │ └── icon-iprogress-receive-offline@3x.png │ │ ├── icon-in-progress-receive-max-privacy-online.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-icon-in-progress-receive-max-privacy-online.png │ │ │ ├── icon-icon-in-progress-receive-max-privacy-online@2x.png │ │ │ └── icon-icon-in-progress-receive-max-privacy-online@3x.png │ │ ├── icon-received-max-privacy-offline.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-receive-offline.png │ │ │ ├── icon-receive-offline@2x.png │ │ │ └── icon-receive-offline@3x.png │ │ ├── icon-received-max-privacy-online.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-icon-received-max-privacy-online.png │ │ │ ├── icon-icon-received-max-privacy-online@2x.png │ │ │ └── icon-icon-received-max-privacy-online@3x.png │ │ ├── icon-send-max-offline.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-sent-offline.png │ │ │ ├── icon-sent-offline@2x.png │ │ │ └── icon-sent-offline@3x.png │ │ └── icon-send-max-online.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-icon-sending-max-online.png │ │ │ ├── icon-icon-sending-max-online@2x.png │ │ │ └── icon-icon-sending-max-online@3x.png │ ├── rateLogo.imageset │ │ ├── Contents.json │ │ ├── rate_logo.png │ │ ├── rate_logo@2x.png │ │ └── rate_logo@3x.png │ ├── sliderDot.imageset │ │ ├── Contents.json │ │ ├── sliderDot.png │ │ ├── sliderDot@2x.png │ │ └── sliderDot@3x.png │ ├── sliderDotGreen.imageset │ │ ├── Contents.json │ │ ├── sliderDotGreen@2x.png │ │ └── sliderDotGreen@3x.png │ └── tick.imageset │ │ ├── Contents.json │ │ ├── tick.png │ │ └── tick@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ ├── LaunchScreenMasterNet.storyboard │ └── LaunchScreenTestNet.storyboard ├── BeamWallet.entitlements ├── BeamWalletMasterNet.entitlements ├── BeamWalletTestNet.entitlements ├── FirebaseTestnet │ └── GoogleService-Info.plist ├── Fonts │ ├── ProximaNova-Bold.ttf │ ├── ProximaNova-Regular.ttf │ ├── SF-Pro-Display-Bold.otf │ ├── SF-Pro-Display-Light.otf │ ├── SF-Pro-Display-LightItalic.otf │ ├── SF-Pro-Display-Regular.otf │ ├── SF-Pro-Display-RegularItalic.otf │ ├── SF-Pro-Display-Semibold.otf │ ├── SFProText-Medium.ttf │ ├── SFProText-Regular.ttf │ └── SFProText-Semibold.otf ├── GoogleServiceMain.plist ├── GoogleServiceMaster.plist ├── GoogleServiceTest.plist ├── Images │ ├── bgBlack.jpg │ ├── bgMasternet.jpg │ └── bgTestnet.jpg ├── Info.plist ├── InfoMasternet.plist ├── InfoTestnet.plist ├── cs.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── LaunchScreenMasterNet.strings │ ├── LaunchScreenTestNet.strings │ └── Localizable.strings ├── en.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── es.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── fi-FI.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── fr.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ko.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── nl.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ru.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── sv-SE.lproj │ └── Localizable.strings ├── sv.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── th.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── tr.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── vi.lproj │ ├── InfoPlist.strings │ └── Localizable.strings └── zh-Hans.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── build_ios.sh └── cmake_install.cmake /BeamWallet.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /BeamWallet.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /BeamWallet.xcodeproj/project.xcworkspace/xcuserdata/Denis.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/BeamWallet.xcodeproj/project.xcworkspace/xcuserdata/Denis.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /BeamWallet.xcodeproj/xcuserdata/Denis.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /BeamWallet.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /BeamWallet.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Latest 7 | PreviewsEnabled 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /BeamWallet/BeamSDK/Objects/BMMaxPrivacyLock.m: -------------------------------------------------------------------------------- 1 | // 2 | // BMMaxPrivacyLock.m 3 | // BeamWallet 4 | // 5 | // Created by Denis on 14.12.2020. 6 | // Copyright © 2020 Denis. All rights reserved. 7 | // 8 | 9 | #import "BMMaxPrivacyLock.h" 10 | 11 | @implementation BMMaxPrivacyLock 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /BeamWallet/BeamSDK/Objects/BMPreparedTransaction.m: -------------------------------------------------------------------------------- 1 | // 2 | // BMPreparedTransaction.m 3 | // BeamWallet 4 | // 5 | // Created by Denis on 5/29/19. 6 | // Copyright © 2019 Denis. All rights reserved. 7 | // 8 | 9 | #import "BMPreparedTransaction.h" 10 | 11 | @implementation BMPreparedTransaction 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/MaterialActivityIndicator/Extensions/CGRect+Center.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CGRect+Center.swift 3 | // MaterialActivityIndicator 4 | // 5 | // Created by Jans Pavlovs on 13.02.18. 6 | // Copyright (c) 2018 Jans Pavlovs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension CGRect { 12 | var center: CGPoint { 13 | return CGPoint(x: midX, y: midY) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/MaterialActivityIndicator/Extensions/CGSize+Min.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CGSize+Min.swift 3 | // MaterialActivityIndicator 4 | // 5 | // Created by Jans Pavlovs on 13.02.18. 6 | // Copyright (c) 2018 Jans Pavlovs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension CGSize { 12 | var min: CGFloat { 13 | return CGFloat.minimum(width, height) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Classes/PagingInvalidationContext.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | open class PagingInvalidationContext: UICollectionViewLayoutInvalidationContext { 4 | var invalidateSizes: Bool = false 5 | } 6 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Enums/PagingBorderOptions.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | public enum PagingBorderOptions { 4 | case hidden 5 | case visible( 6 | height: CGFloat, 7 | zIndex: Int, 8 | insets: UIEdgeInsets) 9 | } 10 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Enums/PagingContentInteraction.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public enum PagingContentInteraction { 4 | case scrolling 5 | case none 6 | } 7 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Enums/PagingIndicatorOptions.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | public enum PagingIndicatorOptions { 4 | case hidden 5 | case visible( 6 | height: CGFloat, 7 | zIndex: Int, 8 | spacing: UIEdgeInsets, 9 | insets: UIEdgeInsets) 10 | } 11 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Enums/PagingMenuHorizontalAlignment.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public enum PagingMenuHorizontalAlignment { 4 | case left 5 | 6 | // Allows all paging items to be centered within the paging menu 7 | // when PagingMenuItemSize is .fixed and the sum of the widths 8 | // of all the paging items are less than the paging menu 9 | case center 10 | } 11 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Enums/PagingMenuInteraction.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public enum PagingMenuInteraction { 4 | case scrolling 5 | case swipe 6 | case none 7 | } 8 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Enums/PagingMenuItemSource.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public enum PagingMenuItemSource { 4 | case `class`(type: PagingCell.Type) 5 | case nib(nib: UINib) 6 | } 7 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Enums/PagingMenuTransition.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public enum PagingMenuTransition { 4 | // Update scroll offset based on how much the content has 5 | // scrolled. Makes the menu items transition smoothly as you scroll. 6 | case scrollAlongside 7 | 8 | // Animate the menu item position after a transition has completed. 9 | case animateAfter 10 | } 11 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Extensions/UIEdgeInsets.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | extension UIEdgeInsets { 4 | 5 | var horizontal: CGFloat { 6 | return left + right 7 | } 8 | 9 | var vertical: CGFloat { 10 | return top + bottom 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Protocols/PagingLayout.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | /// Used to be able to initialize a layout based on the type defined 4 | /// in the menuLayoutClass property. 5 | protocol PagingLayout { 6 | init(options: PagingOptions) 7 | } 8 | 9 | func createLayout(layout: T.Type, options: PagingOptions) -> T where T: PagingLayout { 10 | return layout.init(options: options) 11 | } 12 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Protocols/Tween.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | func tween(from: CGFloat, to: CGFloat, progress: CGFloat) -> CGFloat { 4 | return ((to - from) * progress) + from 5 | } 6 | -------------------------------------------------------------------------------- /BeamWallet/Controls/ThirdParty/Parchment/Structs/PagingTransition.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | struct PagingTransition : Equatable { 4 | let contentOffset: CGPoint 5 | let distance: CGFloat 6 | 7 | static func ==(lhs: PagingTransition, rhs: PagingTransition) -> Bool { 8 | return (lhs.contentOffset == rhs.contentOffset && lhs.distance == rhs.distance) 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /BeamWallet/main.swift: -------------------------------------------------------------------------------- 1 | // 2 | // main.swift 3 | // BeamWallet 4 | 5 | 6 | import UIKit 7 | 8 | UIApplicationMain( 9 | CommandLine.argc, 10 | CommandLine.unsafeArgv, 11 | NSStringFromClass(BeamApplication.self), 12 | NSStringFromClass(AppDelegate.self) 13 | ) 14 | -------------------------------------------------------------------------------- /BeamWalletNotificationView/BeamWalletNotificationView-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | #import "AppModel.h" 6 | #import 7 | -------------------------------------------------------------------------------- /Frameworks/openssl.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Frameworks/openssl.framework/Info.plist -------------------------------------------------------------------------------- /Frameworks/openssl.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module openssl { 2 | umbrella header "openssl.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Frameworks/openssl.framework/openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Frameworks/openssl.framework/openssl -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- 1 | module Firebase { 2 | export * 3 | header "Firebase.h" 4 | } -------------------------------------------------------------------------------- /Pods/FirebaseCrashlytics/upload-symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Pods/FirebaseCrashlytics/upload-symbols -------------------------------------------------------------------------------- /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/app-icon-testnet@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/AppIcon.appiconset/app-icon-testnet@1x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/app-icon-testnet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/AppIcon.appiconset/app-icon-testnet@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/app-icon-testnet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/AppIcon.appiconset/app-icon-testnet@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIconMain.appiconset/app-icon-mainnet@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/AppIconMain.appiconset/app-icon-mainnet@1x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIconMain.appiconset/app-icon-mainnet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/AppIconMain.appiconset/app-icon-mainnet@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIconMain.appiconset/app-icon-mainnet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/AppIconMain.appiconset/app-icon-mainnet@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIconMaster.appiconset/app-icon-masternet@1x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/AppIconMaster.appiconset/app-icon-masternet@1x-1.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIconMaster.appiconset/app-icon-masternet@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/AppIconMaster.appiconset/app-icon-masternet@1x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIconMaster.appiconset/app-icon-masternet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/AppIconMaster.appiconset/app-icon-masternet@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Resources/Assets.xcassets/MenuSelectedBackground.imageset/Rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/MenuSelectedBackground.imageset/Rectangle.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ThumbUP.imageset/ThumbUP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ThumbUP.imageset/ThumbUP.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/assetbeamx.imageset/assetbeamx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/assetbeamx.imageset/assetbeamx.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/assetbeamx.imageset/assetbeamx@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/assetbeamx.imageset/assetbeamx@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/assetbeamx.imageset/assetbeamx@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/assetbeamx.imageset/assetbeamx@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/beamxVerified.imageset/beamxVerified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/beamxVerified.imageset/beamxVerified.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/beamxVerified.imageset/beamxVerified@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/beamxVerified.imageset/beamxVerified@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/beamxVerified.imageset/beamxVerified@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/beamxVerified.imageset/beamxVerified@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/bgNew.imageset/bgNewTriangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/bgNew.imageset/bgNewTriangles.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/bgNew.imageset/bgNewTriangles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/bgNew.imageset/bgNewTriangles@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/bgNew.imageset/bgNewTriangles@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/bgNew.imageset/bgNewTriangles@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/bgTestnet.imageset/bgTestnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/bgTestnet.imageset/bgTestnet.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/checkboxEmpty.imageset/checkboxEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/checkboxEmpty.imageset/checkboxEmpty.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/checkboxEmpty.imageset/checkboxEmpty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/checkboxEmpty.imageset/checkboxEmpty@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/checkboxEmpty.imageset/checkboxEmpty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/checkboxEmpty.imageset/checkboxEmpty@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/checkboxFull.imageset/checkboxFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/checkboxFull.imageset/checkboxFull.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/checkboxFull.imageset/checkboxFull@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/checkboxFull.imageset/checkboxFull@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/checkboxFull.imageset/checkboxFull@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/checkboxFull.imageset/checkboxFull@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/clearIcon.imageset/clearIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/clearIcon.imageset/clearIcon.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/clearIcon.imageset/clearIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/clearIcon.imageset/clearIcon@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/clearIcon.imageset/clearIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/clearIcon.imageset/clearIcon@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/dao_app_icon.imageset/dao_app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/dao_app_icon.imageset/dao_app_icon.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/dao_app_icon.imageset/dao_app_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/dao_app_icon.imageset/dao_app_icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/dao_app_icon.imageset/dao_app_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/dao_app_icon.imageset/dao_app_icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/dapp-loading.imageset/dapp-loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/dapp-loading.imageset/dapp-loading.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/dapp-loading.imageset/dapp-loading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/dapp-loading.imageset/dapp-loading@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/dapp-loading.imageset/dapp-loading@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/dapp-loading.imageset/dapp-loading@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/filterIcon.imageset/iconCategoryCopy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/filterIcon.imageset/iconCategoryCopy2.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/filterIcon.imageset/iconCategoryCopy2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/filterIcon.imageset/iconCategoryCopy2@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/filterIcon.imageset/iconCategoryCopy2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/filterIcon.imageset/iconCategoryCopy2@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/gradientBlue.imageset/Rectangle 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/gradientBlue.imageset/Rectangle 7.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/gradientBlue.imageset/Rectangle 7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/gradientBlue.imageset/Rectangle 7@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/gradientBlue.imageset/Rectangle 7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/gradientBlue.imageset/Rectangle 7@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icBeam3d.imageset/icBeam3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icBeam3d.imageset/icBeam3d.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icBeam3d.imageset/icBeam3d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icBeam3d.imageset/icBeam3d@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icBeam3d.imageset/icBeam3d@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icBeam3d.imageset/icBeam3d@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icEyeCrossedBig.imageset/icEyeCrossedBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icEyeCrossedBig.imageset/icEyeCrossedBig.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icEyeCrossedBig.imageset/icEyeCrossedBig@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icEyeCrossedBig.imageset/icEyeCrossedBig@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icEyeCrossedBig.imageset/icEyeCrossedBig@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icEyeCrossedBig.imageset/icEyeCrossedBig@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icNoResults.imageset/icNoResults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icNoResults.imageset/icNoResults.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icNoResults.imageset/icNoResults@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icNoResults.imageset/icNoResults@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icNoResults.imageset/icNoResults@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icNoResults.imageset/icNoResults@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icReceive3D.imageset/icReceive3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icReceive3D.imageset/icReceive3D.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icReceive3D.imageset/icReceive3D@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icReceive3D.imageset/icReceive3D@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icReceive3D.imageset/icReceive3D@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icReceive3D.imageset/icReceive3D@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icReceiveBlue.imageset/icReceiveBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icReceiveBlue.imageset/icReceiveBlue.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icReceiveBlue.imageset/icReceiveBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icReceiveBlue.imageset/icReceiveBlue@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icReceiveBlue.imageset/icReceiveBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icReceiveBlue.imageset/icReceiveBlue@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icScanQr3D.imageset/icScanQr3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icScanQr3D.imageset/icScanQr3D.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icScanQr3D.imageset/icScanQr3D@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icScanQr3D.imageset/icScanQr3D@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icScanQr3D.imageset/icScanQr3D@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icScanQr3D.imageset/icScanQr3D@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icSend3D.imageset/icSend3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icSend3D.imageset/icSend3D.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icSend3D.imageset/icSend3D@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icSend3D.imageset/icSend3D@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icSend3D.imageset/icSend3D@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icSend3D.imageset/icSend3D@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icShare.imageset/icShare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icShare.imageset/icShare.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icShare.imageset/icShare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icShare.imageset/icShare@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icShare.imageset/icShare@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icShare.imageset/icShare@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset.imageset/ic_asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset.imageset/ic_asset.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset.imageset/ic_asset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset.imageset/ic_asset@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset.imageset/ic_asset@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset.imageset/ic_asset@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_beam.imageset/ic_asset_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_beam.imageset/ic_asset_beam.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_beam.imageset/ic_asset_beam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_beam.imageset/ic_asset_beam@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_beam.imageset/ic_asset_beam@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_beam.imageset/ic_asset_beam@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_beam_big.imageset/ic_asset_beam_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_beam_big.imageset/ic_asset_beam_big.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_beam_big.imageset/ic_asset_beam_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_beam_big.imageset/ic_asset_beam_big@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_beam_big.imageset/ic_asset_beam_big@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_beam_big.imageset/ic_asset_beam_big@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_big.imageset/ic_asset_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_big.imageset/ic_asset_big.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_big.imageset/ic_asset_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_big.imageset/ic_asset_big@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_big.imageset/ic_asset_big@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_big.imageset/ic_asset_big@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_info.imageset/infoButton1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_info.imageset/infoButton1.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_info.imageset/infoButton1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_info.imageset/infoButton1@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_asset_info.imageset/infoButton1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_asset_info.imageset/infoButton1@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_gallery.imageset/icon_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_gallery.imageset/icon_gallery.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_gallery.imageset/icon_gallery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_gallery.imageset/icon_gallery@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_gallery.imageset/icon_gallery@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_gallery.imageset/icon_gallery@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_trusted_node.imageset/ic_trusted_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_trusted_node.imageset/ic_trusted_node.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_trusted_node.imageset/ic_trusted_node@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_trusted_node.imageset/ic_trusted_node@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_trusted_node.imageset/ic_trusted_node@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_trusted_node.imageset/ic_trusted_node@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_verify-1.imageset/ic_verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_verify-1.imageset/ic_verify.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_verify-1.imageset/ic_verify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_verify-1.imageset/ic_verify@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_verify-1.imageset/ic_verify@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_verify-1.imageset/ic_verify@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_verify.imageset/ic_verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_verify.imageset/ic_verify.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_verify.imageset/ic_verify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_verify.imageset/ic_verify@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/ic_verify.imageset/ic_verify@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/ic_verify.imageset/ic_verify@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnAdd.imageset/icnAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnAdd.imageset/icnAdd.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnAdd.imageset/icnAdd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnAdd.imageset/icnAdd@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnAdd.imageset/icnAdd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnAdd.imageset/icnAdd@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnCheckmarkEmpty.imageset/icnCheckmarkEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnCheckmarkEmpty.imageset/icnCheckmarkEmpty.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnCheckmarkEmpty.imageset/icnCheckmarkEmpty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnCheckmarkEmpty.imageset/icnCheckmarkEmpty@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnCheckmarkEmpty.imageset/icnCheckmarkEmpty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnCheckmarkEmpty.imageset/icnCheckmarkEmpty@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnCheckmarkFull.imageset/icnCheckmarkFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnCheckmarkFull.imageset/icnCheckmarkFull.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnCheckmarkFull.imageset/icnCheckmarkFull@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnCheckmarkFull.imageset/icnCheckmarkFull@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnCheckmarkFull.imageset/icnCheckmarkFull@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnCheckmarkFull.imageset/icnCheckmarkFull@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnCloud.imageset/icnCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnCloud.imageset/icnCloud.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnCloud.imageset/icnCloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnCloud.imageset/icnCloud@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnCloud.imageset/icnCloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnCloud.imageset/icnCloud@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnEdit.imageset/icnEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnEdit.imageset/icnEdit.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnEdit.imageset/icnEdit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnEdit.imageset/icnEdit@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnEdit.imageset/icnEdit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnEdit.imageset/icnEdit@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnHelp.imageset/helpIconsCopy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnHelp.imageset/helpIconsCopy3.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnHelp.imageset/helpIconsCopy3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnHelp.imageset/helpIconsCopy3@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnHelp.imageset/helpIconsCopy3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnHelp.imageset/helpIconsCopy3@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnKeyboard.imageset/icnKeyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnKeyboard.imageset/icnKeyboard.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnKeyboard.imageset/icnKeyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnKeyboard.imageset/icnKeyboard@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnKeyboard.imageset/icnKeyboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnKeyboard.imageset/icnKeyboard@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnLaptop.imageset/icnLaptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnLaptop.imageset/icnLaptop.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnLaptop.imageset/icnLaptop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnLaptop.imageset/icnLaptop@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnLaptop.imageset/icnLaptop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnLaptop.imageset/icnLaptop@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnReceiveCanceled.imageset/icnReceiveCanceled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnReceiveCanceled.imageset/icnReceiveCanceled.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnReceiveCanceled.imageset/icnReceiveCanceled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnReceiveCanceled.imageset/icnReceiveCanceled@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnReceiveCanceled.imageset/icnReceiveCanceled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnReceiveCanceled.imageset/icnReceiveCanceled@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnSendCanceled.imageset/icnSendCanceled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnSendCanceled.imageset/icnSendCanceled.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnSendCanceled.imageset/icnSendCanceled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnSendCanceled.imageset/icnSendCanceled@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icnSendCanceled.imageset/icnSendCanceled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icnSendCanceled.imageset/icnSendCanceled@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-failed.imageset/icon-failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-failed.imageset/icon-failed.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-failed.imageset/icon-failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-failed.imageset/icon-failed@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-failed.imageset/icon-failed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-failed.imageset/icon-failed@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-icon-sending-public.imageset/icon-icon-sending-public@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-icon-sending-public.imageset/icon-icon-sending-public@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-icon-sending.imageset/icon-icon-sending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-icon-sending.imageset/icon-icon-sending.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-icon-sending.imageset/icon-icon-sending@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-icon-sending.imageset/icon-icon-sending@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-icon-sending.imageset/icon-icon-sending@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-icon-sending.imageset/icon-icon-sending@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-offline-receive-failed.imageset/icon-notifictions-offline-receive-failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-offline-receive-failed.imageset/icon-notifictions-offline-receive-failed.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-offline-receive-failed.imageset/icon-notifictions-offline-receive-failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-offline-receive-failed.imageset/icon-notifictions-offline-receive-failed@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-offline-receive-failed.imageset/icon-notifictions-offline-receive-failed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-offline-receive-failed.imageset/icon-notifictions-offline-receive-failed@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-offline-send-failed.imageset/icon-notifictions-offline-send-failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-offline-send-failed.imageset/icon-notifictions-offline-send-failed.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-offline-send-failed.imageset/icon-notifictions-offline-send-failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-offline-send-failed.imageset/icon-notifictions-offline-send-failed@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-offline-send-failed.imageset/icon-notifictions-offline-send-failed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-offline-send-failed.imageset/icon-notifictions-offline-send-failed@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-received-offline.imageset/icon-notifictions-received-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-received-offline.imageset/icon-notifictions-received-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-received-offline.imageset/icon-notifictions-received-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-received-offline.imageset/icon-notifictions-received-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-received-offline.imageset/icon-notifictions-received-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-received-offline.imageset/icon-notifictions-received-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-send-offline.imageset/icon-notifictions-send-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-send-offline.imageset/icon-notifictions-send-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-send-offline.imageset/icon-notifictions-send-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-send-offline.imageset/icon-notifictions-send-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-notifictions-send-offline.imageset/icon-notifictions-send-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-notifictions-send-offline.imageset/icon-notifictions-send-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-received-failed.imageset/icon-send-canceled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-received-failed.imageset/icon-send-canceled@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-received-failed.imageset/icon-send-canceled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-received-failed.imageset/icon-send-canceled@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-received.imageset/icon-received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-received.imageset/icon-received.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-received.imageset/icon-received@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-received.imageset/icon-received@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-received.imageset/icon-received@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-received.imageset/icon-received@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-receiving.imageset/icon-receiving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-receiving.imageset/icon-receiving.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-receiving.imageset/icon-receiving@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-receiving.imageset/icon-receiving@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-receiving.imageset/icon-receiving@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-receiving.imageset/icon-receiving@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-seding-max-privacy-own.imageset/icon-seding-max-privacy-own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-seding-max-privacy-own.imageset/icon-seding-max-privacy-own.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-seding-max-privacy-own.imageset/icon-seding-max-privacy-own@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-seding-max-privacy-own.imageset/icon-seding-max-privacy-own@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-seding-max-privacy-own.imageset/icon-seding-max-privacy-own@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-seding-max-privacy-own.imageset/icon-seding-max-privacy-own@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-send-failed.imageset/icon-send-canceled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-send-failed.imageset/icon-send-canceled.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-send-failed.imageset/icon-send-canceled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-send-failed.imageset/icon-send-canceled@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-send-failed.imageset/icon-send-canceled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-send-failed.imageset/icon-send-canceled@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-send-own-offline.imageset/icon-send-own-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-send-own-offline.imageset/icon-send-own-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-send-own-offline.imageset/icon-send-own-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-send-own-offline.imageset/icon-send-own-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-send-own-offline.imageset/icon-send-own-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-send-own-offline.imageset/icon-send-own-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sending-own.imageset/icon-sending-own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sending-own.imageset/icon-sending-own.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sending-own.imageset/icon-sending-own@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sending-own.imageset/icon-sending-own@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sending-own.imageset/icon-sending-own@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sending-own.imageset/icon-sending-own@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent-max-privacy-own.imageset/icon-sent-max-privacy-own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent-max-privacy-own.imageset/icon-sent-max-privacy-own.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent-max-privacy-own.imageset/icon-sent-max-privacy-own@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent-max-privacy-own.imageset/icon-sent-max-privacy-own@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent-max-privacy-own.imageset/icon-sent-max-privacy-own@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent-max-privacy-own.imageset/icon-sent-max-privacy-own@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent-own-offline.imageset/icon-sent-own-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent-own-offline.imageset/icon-sent-own-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent-own-offline.imageset/icon-sent-own-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent-own-offline.imageset/icon-sent-own-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent-own-offline.imageset/icon-sent-own-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent-own-offline.imageset/icon-sent-own-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent-own.imageset/icon-sent-own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent-own.imageset/icon-sent-own.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent-own.imageset/icon-sent-own@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent-own.imageset/icon-sent-own@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent-own.imageset/icon-sent-own@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent-own.imageset/icon-sent-own@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent.imageset/icon-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent.imageset/icon-sent.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent.imageset/icon-sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent.imageset/icon-sent@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon-sent.imageset/icon-sent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon-sent.imageset/icon-sent@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddBlue.imageset/iconAddBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddBlue.imageset/iconAddBlue.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddBlue.imageset/iconAddBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddBlue.imageset/iconAddBlue@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddBlue.imageset/iconAddBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddBlue.imageset/iconAddBlue@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddressBookSmall.imageset/iconAddressbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddressBookSmall.imageset/iconAddressbook.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddressBookSmall.imageset/iconAddressbook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddressBookSmall.imageset/iconAddressbook@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddressBookSmall.imageset/iconAddressbook@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddressBookSmall.imageset/iconAddressbook@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddressbookEmptyState.imageset/iconAddressbookEmptyState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddressbookEmptyState.imageset/iconAddressbookEmptyState.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddressbookEmptyState.imageset/iconAddressbookEmptyState@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddressbookEmptyState.imageset/iconAddressbookEmptyState@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddressbookEmptyState.imageset/iconAddressbookEmptyState@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddressbookEmptyState.imageset/iconAddressbookEmptyState@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddresses.imageset/iconAddressbookActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddresses.imageset/iconAddressbookActive.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddresses.imageset/iconAddressbookActive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddresses.imageset/iconAddressbookActive@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconAddresses.imageset/iconAddressbookActive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconAddresses.imageset/iconAddressbookActive@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconBack.imageset/iconBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconBack.imageset/iconBack@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconBeam.imageset/icon-beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconBeam.imageset/icon-beam.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconBeam.imageset/icon-beam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconBeam.imageset/icon-beam@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconBeam.imageset/icon-beam@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconBeam.imageset/icon-beam@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconBuyLogo.imageset/groupCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconBuyLogo.imageset/groupCopy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconBuyLogo.imageset/groupCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconBuyLogo.imageset/groupCopy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconBuyLogo.imageset/groupCopy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconBuyLogo.imageset/groupCopy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCancel.imageset/iconCancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCancel.imageset/iconCancel.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCancel.imageset/iconCancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCancel.imageset/iconCancel@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCancel.imageset/iconCancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCancel.imageset/iconCancel@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCancelBig.imageset/iconCancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCancelBig.imageset/iconCancel.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCancelBig.imageset/iconCancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCancelBig.imageset/iconCancel@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCancelBig.imageset/iconCancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCancelBig.imageset/iconCancel@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconChange.imageset/iconChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconChange.imageset/iconChange.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconChange.imageset/iconChange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconChange.imageset/iconChange@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconChange.imageset/iconChange@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconChange.imageset/iconChange@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconComment.imageset/iconComment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconComment.imageset/iconComment.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconComment.imageset/iconComment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconComment.imageset/iconComment@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconComment.imageset/iconComment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconComment.imageset/iconComment@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContact.imageset/icnContact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContact.imageset/icnContact.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContact.imageset/icnContact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContact.imageset/icnContact@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContact.imageset/icnContact@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContact.imageset/icnContact@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContractCompleted.imageset/iconContractCompleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContractCompleted.imageset/iconContractCompleted.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContractCompleted.imageset/iconContractCompleted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContractCompleted.imageset/iconContractCompleted@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContractCompleted.imageset/iconContractCompleted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContractCompleted.imageset/iconContractCompleted@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContractExpired.imageset/iconContractExpired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContractExpired.imageset/iconContractExpired.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContractExpired.imageset/iconContractExpired@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContractExpired.imageset/iconContractExpired@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContractExpired.imageset/iconContractExpired@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContractExpired.imageset/iconContractExpired@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContractFailed.imageset/iconContractFailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContractFailed.imageset/iconContractFailed.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContractFailed.imageset/iconContractFailed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContractFailed.imageset/iconContractFailed@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconContractFailed.imageset/iconContractFailed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconContractFailed.imageset/iconContractFailed@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopy.imageset/iconCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopy.imageset/iconCopy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopy.imageset/iconCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopy.imageset/iconCopy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopy.imageset/iconCopy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopy.imageset/iconCopy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopyBlue.imageset/iconCopyBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopyBlue.imageset/iconCopyBlue.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopyBlue.imageset/iconCopyBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopyBlue.imageset/iconCopyBlue@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopyBlue.imageset/iconCopyBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopyBlue.imageset/iconCopyBlue@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopyWhite.imageset/iconCopyWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopyWhite.imageset/iconCopyWhite@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopyWhite.imageset/iconCopyWhite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopyWhite.imageset/iconCopyWhite@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopyWhite24.imageset/iconCopyWhite24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopyWhite24.imageset/iconCopyWhite24-1.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopyWhite24.imageset/iconCopyWhite24-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopyWhite24.imageset/iconCopyWhite24-2.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconCopyWhite24.imageset/iconCopyWhite24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconCopyWhite24.imageset/iconCopyWhite24.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDao.imageset/iconDao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDao.imageset/iconDao.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDao.imageset/iconDao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDao.imageset/iconDao@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDao.imageset/iconDao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDao.imageset/iconDao@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDaoVote.imageset/iconDaoVote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDaoVote.imageset/iconDaoVote@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDaoVote.imageset/iconDaoVote@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDaoVote.imageset/iconDaoVote@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDapps.imageset/iconDapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDapps.imageset/iconDapps.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDapps.imageset/iconDapps@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDapps.imageset/iconDapps@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDapps.imageset/iconDapps@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDapps.imageset/iconDapps@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDeleteBlue.imageset/iconDeleteBlueCopy5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDeleteBlue.imageset/iconDeleteBlueCopy5.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDeleteBlue.imageset/iconDeleteBlueCopy5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDeleteBlue.imageset/iconDeleteBlueCopy5@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDeleteBlue.imageset/iconDeleteBlueCopy5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDeleteBlue.imageset/iconDeleteBlueCopy5@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDoneBlue.imageset/icnDone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDoneBlue.imageset/icnDone.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDoneBlue.imageset/icnDone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDoneBlue.imageset/icnDone@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDoneBlue.imageset/icnDone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDoneBlue.imageset/icnDone@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDownArrow.imageset/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDownArrow.imageset/arrow.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDownArrow.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDownArrow.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconDownArrow.imageset/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconDownArrow.imageset/arrow@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExpired.imageset/iconExpired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExpired.imageset/iconExpired.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExpired.imageset/iconExpired@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExpired.imageset/iconExpired@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExpired.imageset/iconExpired@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExpired.imageset/iconExpired@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExpires.imageset/iconExp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExpires.imageset/iconExp.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExpires.imageset/iconExp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExpires.imageset/iconExp@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExpires.imageset/iconExp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExpires.imageset/iconExp@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExport.imageset/iconExport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExport.imageset/iconExport.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExport.imageset/iconExport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExport.imageset/iconExport@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExport.imageset/iconExport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExport.imageset/iconExport@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExternalLinkGray.imageset/icnExternalLinkCopy4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExternalLinkGray.imageset/icnExternalLinkCopy4.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExternalLinkGray.imageset/icnExternalLinkCopy4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExternalLinkGray.imageset/icnExternalLinkCopy4@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExternalLinkGray.imageset/icnExternalLinkCopy4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExternalLinkGray.imageset/icnExternalLinkCopy4@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExternalLinkGreen.imageset/icn_external_link-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExternalLinkGreen.imageset/icn_external_link-1.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconExternalLinkGreen.imageset/icn_external_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconExternalLinkGreen.imageset/icn_external_link.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEye.imageset/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEye.imageset/eye.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEye.imageset/eye@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEye.imageset/eye@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEye.imageset/eye@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEye.imageset/eye@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEyePass1.imageset/icnEyeCrossed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEyePass1.imageset/icnEyeCrossed.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEyePass1.imageset/icnEyeCrossed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEyePass1.imageset/icnEyeCrossed@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEyePass1.imageset/icnEyeCrossed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEyePass1.imageset/icnEyeCrossed@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEyePass2.imageset/icnEyeCrossed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEyePass2.imageset/icnEyeCrossed.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEyePass2.imageset/icnEyeCrossed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEyePass2.imageset/icnEyeCrossed@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEyePass2.imageset/icnEyeCrossed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEyePass2.imageset/icnEyeCrossed@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEyeWhite.imageset/icon_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEyeWhite.imageset/icon_details.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconEyeWhite.imageset/icon_details@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconEyeWhite.imageset/icon_details@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconFaceId.imageset/icnFaceidWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconFaceId.imageset/icnFaceidWhite.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconFaceId.imageset/icnFaceidWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconFaceId.imageset/icnFaceidWhite@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconFaceId.imageset/icnFaceidWhite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconFaceId.imageset/icnFaceidWhite@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconHideBalance.imageset/icEye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconHideBalance.imageset/icEye.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconHideBalance.imageset/icEye@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconHideBalance.imageset/icEye@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconHideBalance.imageset/icEye@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconHideBalance.imageset/icEye@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconInfinity.imageset/iconInfinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconInfinity.imageset/iconInfinity.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconInfinity.imageset/iconInfinity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconInfinity.imageset/iconInfinity@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconInfinity.imageset/iconInfinity@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconInfinity.imageset/iconInfinity@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconLeftMenu.imageset/icBurger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconLeftMenu.imageset/icBurger.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconLeftMenu.imageset/icBurger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconLeftMenu.imageset/icBurger@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconLeftMenu.imageset/icBurger@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconLeftMenu.imageset/icBurger@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconLogout.imageset/icLogout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconLogout.imageset/icLogout.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconLogout.imageset/icLogout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconLogout.imageset/icLogout@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconLogout.imageset/icLogout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconLogout.imageset/icLogout@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconMobbileNode.imageset/iconMobbileNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconMobbileNode.imageset/iconMobbileNode.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconMobbileNode.imageset/iconMobbileNode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconMobbileNode.imageset/iconMobbileNode@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconMobbileNode.imageset/iconMobbileNode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconMobbileNode.imageset/iconMobbileNode@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconMore.imageset/icMore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconMore.imageset/icMore.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconMore.imageset/icMore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconMore.imageset/icMore@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconMore.imageset/icMore@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconMore.imageset/icMore@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextArrow.imageset/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextArrow.imageset/arrow.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextArrow.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextArrow.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextArrow.imageset/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextArrow.imageset/arrow@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextBlue.imageset/icSendBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextBlue.imageset/icSendBlue.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextBlue.imageset/icSendBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextBlue.imageset/icSendBlue@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextBlue.imageset/icSendBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextBlue.imageset/icSendBlue@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextLightBlue.imageset/icSendBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextLightBlue.imageset/icSendBlue.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextLightBlue.imageset/icSendBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextLightBlue.imageset/icSendBlue@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextLightBlue.imageset/icSendBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextLightBlue.imageset/icSendBlue@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextPink.imageset/icSendBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextPink.imageset/icSendBlue.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextPink.imageset/icSendBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextPink.imageset/icSendBlue@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextPink.imageset/icSendBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextPink.imageset/icSendBlue@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextWhite.imageset/iconNextWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextWhite.imageset/iconNextWhite.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextWhite.imageset/iconNextWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextWhite.imageset/iconNextWhite@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNextWhite.imageset/iconNextWhite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNextWhite.imageset/iconNextWhite@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNode.imageset/iconNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNode.imageset/iconNode.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNode.imageset/iconNode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNode.imageset/iconNode@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNode.imageset/iconNode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNode.imageset/iconNode@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotificationEmpty.imageset/iconNotification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotificationEmpty.imageset/iconNotification.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotificationEmpty.imageset/iconNotification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotificationEmpty.imageset/iconNotification@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotificationEmpty.imageset/iconNotification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotificationEmpty.imageset/iconNotification@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotificationMenu.imageset/iconNotification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotificationMenu.imageset/iconNotification.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotificationMenu.imageset/iconNotification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotificationMenu.imageset/iconNotification@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotificationMenu.imageset/iconNotification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotificationMenu.imageset/iconNotification@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsExpired.imageset/iconNotifictionsExpiredCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsExpired.imageset/iconNotifictionsExpiredCopy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsExpired.imageset/iconNotifictionsExpiredCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsExpired.imageset/iconNotifictionsExpiredCopy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsExpired.imageset/iconNotifictionsExpiredCopy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsExpired.imageset/iconNotifictionsExpiredCopy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailed.imageset/iconNotifictionsFailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailed.imageset/iconNotifictionsFailed.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailed.imageset/iconNotifictionsFailed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailed.imageset/iconNotifictionsFailed@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailed.imageset/iconNotifictionsFailed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailed.imageset/iconNotifictionsFailed@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailedReceived.imageset/iconNotifictionsFailedCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailedReceived.imageset/iconNotifictionsFailedCopy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailedReceived.imageset/iconNotifictionsFailedCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailedReceived.imageset/iconNotifictionsFailedCopy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailedReceived.imageset/iconNotifictionsFailedCopy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailedReceived.imageset/iconNotifictionsFailedCopy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailedSentMaxPrivacy.imageset/iconNotifictionsFailedSentMaxPrivacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailedSentMaxPrivacy.imageset/iconNotifictionsFailedSentMaxPrivacy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailedSentMaxPrivacy.imageset/iconNotifictionsFailedSentMaxPrivacy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailedSentMaxPrivacy.imageset/iconNotifictionsFailedSentMaxPrivacy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailedSentMaxPrivacy.imageset/iconNotifictionsFailedSentMaxPrivacy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailedSentMaxPrivacy.imageset/iconNotifictionsFailedSentMaxPrivacy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailedSentOffline.imageset/icon-notifictions-offline-send-failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailedSentOffline.imageset/icon-notifictions-offline-send-failed.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailedSentOffline.imageset/icon-notifictions-offline-send-failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailedSentOffline.imageset/icon-notifictions-offline-send-failed@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsFailedSentOffline.imageset/icon-notifictions-offline-send-failed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsFailedSentOffline.imageset/icon-notifictions-offline-send-failed@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsReceived.imageset/iconNotifictionsReceivedCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsReceived.imageset/iconNotifictionsReceivedCopy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsReceived.imageset/iconNotifictionsReceivedCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsReceived.imageset/iconNotifictionsReceivedCopy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsReceived.imageset/iconNotifictionsReceivedCopy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsReceived.imageset/iconNotifictionsReceivedCopy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsReceivedMaxPrivacy.imageset/iconNotifictionsReceivedMaxPrivacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsReceivedMaxPrivacy.imageset/iconNotifictionsReceivedMaxPrivacy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsReceivedMaxPrivacy.imageset/iconNotifictionsReceivedMaxPrivacy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsReceivedMaxPrivacy.imageset/iconNotifictionsReceivedMaxPrivacy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsReceivedMaxPrivacy.imageset/iconNotifictionsReceivedMaxPrivacy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsReceivedMaxPrivacy.imageset/iconNotifictionsReceivedMaxPrivacy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsReceivedOffline.imageset/icon-notifictions-received-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsReceivedOffline.imageset/icon-notifictions-received-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsReceivedOffline.imageset/icon-notifictions-received-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsReceivedOffline.imageset/icon-notifictions-received-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsReceivedOffline.imageset/icon-notifictions-received-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsReceivedOffline.imageset/icon-notifictions-received-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsSendedOffline.imageset/icon-notifictions-send-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsSendedOffline.imageset/icon-notifictions-send-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsSendedOffline.imageset/icon-notifictions-send-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsSendedOffline.imageset/icon-notifictions-send-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsSendedOffline.imageset/icon-notifictions-send-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsSendedOffline.imageset/icon-notifictions-send-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsSent.imageset/iconNotifictionsSent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsSent.imageset/iconNotifictionsSent.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsSent.imageset/iconNotifictionsSent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsSent.imageset/iconNotifictionsSent@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsSent.imageset/iconNotifictionsSent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsSent.imageset/iconNotifictionsSent@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsSentMaxPrivacy.imageset/iconNotifictionsSentMaxPrivacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsSentMaxPrivacy.imageset/iconNotifictionsSentMaxPrivacy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsSentMaxPrivacy.imageset/iconNotifictionsSentMaxPrivacy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsSentMaxPrivacy.imageset/iconNotifictionsSentMaxPrivacy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsSentMaxPrivacy.imageset/iconNotifictionsSentMaxPrivacy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsSentMaxPrivacy.imageset/iconNotifictionsSentMaxPrivacy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsUpdate.imageset/iconNotifictionsUpdateCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsUpdate.imageset/iconNotifictionsUpdateCopy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsUpdate.imageset/iconNotifictionsUpdateCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsUpdate.imageset/iconNotifictionsUpdateCopy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconNotifictionsUpdate.imageset/iconNotifictionsUpdateCopy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconNotifictionsUpdate.imageset/iconNotifictionsUpdateCopy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconPassword.imageset/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconPassword.imageset/password.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconPassword.imageset/password@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconPassword.imageset/password@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconPassword.imageset/password@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconPassword.imageset/password@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconQr.imageset/iconQr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconQr.imageset/iconQr.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconQr.imageset/iconQr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconQr.imageset/iconQr@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconQr.imageset/iconQr@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconQr.imageset/iconQr@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRandomNode.imageset/iconRandomNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRandomNode.imageset/iconRandomNode.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRandomNode.imageset/iconRandomNode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRandomNode.imageset/iconRandomNode@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRandomNode.imageset/iconRandomNode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRandomNode.imageset/iconRandomNode@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconReceiveAddress.imageset/iconReceiveAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconReceiveAddress.imageset/iconReceiveAddress.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconReceiveAddress.imageset/iconReceiveAddress@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconReceiveAddress.imageset/iconReceiveAddress@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconReceiveAddress.imageset/iconReceiveAddress@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconReceiveAddress.imageset/iconReceiveAddress@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconReceiveBlue.imageset/icReceiveBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconReceiveBlue.imageset/icReceiveBlue.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconReceiveBlue.imageset/icReceiveBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconReceiveBlue.imageset/icReceiveBlue@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconReceiveBlue.imageset/icReceiveBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconReceiveBlue.imageset/icReceiveBlue@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconReceiveLightBlue.imageset/iconReceiveBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconReceiveLightBlue.imageset/iconReceiveBlue.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconReceiveLightBlue.imageset/iconReceiveBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconReceiveLightBlue.imageset/iconReceiveBlue@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconReceiveLightBlue.imageset/iconReceiveBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconReceiveLightBlue.imageset/iconReceiveBlue@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRecovery.imageset/iconRecovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRecovery.imageset/iconRecovery.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRecovery.imageset/iconRecovery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRecovery.imageset/iconRecovery@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRecovery.imageset/iconRecovery@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRecovery.imageset/iconRecovery@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRepeatGreen.imageset/iconRepeatCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRepeatGreen.imageset/iconRepeatCopy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRepeatGreen.imageset/iconRepeatCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRepeatGreen.imageset/iconRepeatCopy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRepeatGreen.imageset/iconRepeatCopy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRepeatGreen.imageset/iconRepeatCopy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowCancel.imageset/icCancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowCancel.imageset/icCancel.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowCancel.imageset/icCancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowCancel.imageset/icCancel@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowCancel.imageset/icCancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowCancel.imageset/icCancel@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowCopy.imageset/icCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowCopy.imageset/icCopy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowCopy.imageset/icCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowCopy.imageset/icCopy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowCopy.imageset/icCopy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowCopy.imageset/icCopy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowDelete.imageset/icDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowDelete.imageset/icDelete.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowDelete.imageset/icDelete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowDelete.imageset/icDelete@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowDelete.imageset/icDelete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowDelete.imageset/icDelete@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowEdit.imageset/icFloatingStartChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowEdit.imageset/icFloatingStartChat.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowEdit.imageset/icFloatingStartChat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowEdit.imageset/icFloatingStartChat@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowEdit.imageset/icFloatingStartChat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowEdit.imageset/icFloatingStartChat@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowRepeat.imageset/iconCancelCopy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowRepeat.imageset/iconCancelCopy2.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowRepeat.imageset/iconCancelCopy2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowRepeat.imageset/iconCancelCopy2@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconRowRepeat.imageset/iconCancelCopy2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconRowRepeat.imageset/iconCancelCopy2@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconScanQr.imageset/iconQr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconScanQr.imageset/iconQr.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconScanQr.imageset/iconQr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconScanQr.imageset/iconQr@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconScanQr.imageset/iconQr@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconScanQr.imageset/iconQr@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSearchSmall.imageset/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSearchSmall.imageset/search.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSearchSmall.imageset/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSearchSmall.imageset/search@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSeedPhrase.imageset/iconSeedPhrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSeedPhrase.imageset/iconSeedPhrase.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSeedPhrase.imageset/iconSeedPhrase@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSeedPhrase.imageset/iconSeedPhrase@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSeedPhrase.imageset/iconSeedPhrase@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSeedPhrase.imageset/iconSeedPhrase@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSendAddress.imageset/iconSendAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSendAddress.imageset/iconSendAddress.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSendAddress.imageset/iconSendAddress@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSendAddress.imageset/iconSendAddress@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSendAddress.imageset/iconSendAddress@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSendAddress.imageset/iconSendAddress@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSendBlue.imageset/icSendBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSendBlue.imageset/icSendBlue.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSendBlue.imageset/icSendBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSendBlue.imageset/icSendBlue@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSendBlue.imageset/icSendBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSendBlue.imageset/icSendBlue@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSendPink.imageset/icSend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSendPink.imageset/icSend.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSendPink.imageset/icSend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSendPink.imageset/icSend@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSendPink.imageset/icSend@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSendPink.imageset/icSend@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettings.imageset/iconSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettings.imageset/iconSettings.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettings.imageset/iconSettings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettings.imageset/iconSettings@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettings.imageset/iconSettings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettings.imageset/iconSettings@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsGeneral.imageset/iconSettingsGeneral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsGeneral.imageset/iconSettingsGeneral.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsGeneral.imageset/iconSettingsGeneral@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsGeneral.imageset/iconSettingsGeneral@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsGeneral.imageset/iconSettingsGeneral@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsGeneral.imageset/iconSettingsGeneral@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsPrivacy.imageset/iconSettingsPrivacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsPrivacy.imageset/iconSettingsPrivacy.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsPrivacy.imageset/iconSettingsPrivacy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsPrivacy.imageset/iconSettingsPrivacy@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsPrivacy.imageset/iconSettingsPrivacy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsPrivacy.imageset/iconSettingsPrivacy@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsRate.imageset/iconSettingsRate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsRate.imageset/iconSettingsRate.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsRate.imageset/iconSettingsRate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsRate.imageset/iconSettingsRate@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsRate.imageset/iconSettingsRate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsRate.imageset/iconSettingsRate@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsRemove.imageset/iconSettingsRemove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsRemove.imageset/iconSettingsRemove.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsRemove.imageset/iconSettingsRemove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsRemove.imageset/iconSettingsRemove@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsRemove.imageset/iconSettingsRemove@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsRemove.imageset/iconSettingsRemove@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsReport.imageset/iconSettingsReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsReport.imageset/iconSettingsReport.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsReport.imageset/iconSettingsReport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsReport.imageset/iconSettingsReport@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsReport.imageset/iconSettingsReport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsReport.imageset/iconSettingsReport@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsTags.imageset/iconSettingsTags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsTags.imageset/iconSettingsTags.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsTags.imageset/iconSettingsTags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsTags.imageset/iconSettingsTags@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsTags.imageset/iconSettingsTags@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsTags.imageset/iconSettingsTags@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsUtilities.imageset/iconSettingsUtilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsUtilities.imageset/iconSettingsUtilities.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsUtilities.imageset/iconSettingsUtilities@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsUtilities.imageset/iconSettingsUtilities@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSettingsUtilities.imageset/iconSettingsUtilities@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSettingsUtilities.imageset/iconSettingsUtilities@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShareNew.imageset/iconExportCopy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShareNew.imageset/iconExportCopy2.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShareNew.imageset/iconExportCopy2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShareNew.imageset/iconExportCopy2@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShareNew.imageset/iconExportCopy2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShareNew.imageset/iconExportCopy2@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShowBalance.imageset/icEyeCrossed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShowBalance.imageset/icEyeCrossed.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShowBalance.imageset/icEyeCrossed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShowBalance.imageset/icEyeCrossed@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShowBalance.imageset/icEyeCrossed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShowBalance.imageset/icEyeCrossed@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShuffle.imageset/shuffle-arrows-hand-drawn-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShuffle.imageset/shuffle-arrows-hand-drawn-symbol.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShuffle.imageset/shuffle-arrows-hand-drawn-symbol@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShuffle.imageset/shuffle-arrows-hand-drawn-symbol@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShuffle.imageset/shuffle-arrows-hand-drawn-symbol@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShuffle.imageset/shuffle-arrows-hand-drawn-symbol@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShufflePink.imageset/icnChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShufflePink.imageset/icnChange.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShufflePink.imageset/icnChange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShufflePink.imageset/icnChange@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconShufflePink.imageset/icnChange@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconShufflePink.imageset/icnChange@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSpecificNode.imageset/iconSpecificNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSpecificNode.imageset/iconSpecificNode.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSpecificNode.imageset/iconSpecificNode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSpecificNode.imageset/iconSpecificNode@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSpecificNode.imageset/iconSpecificNode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSpecificNode.imageset/iconSpecificNode@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconStopUnlinking.imageset/iconStopUnlinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconStopUnlinking.imageset/iconStopUnlinking.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconStopUnlinking.imageset/iconStopUnlinking@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconStopUnlinking.imageset/iconStopUnlinking@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconStopUnlinking.imageset/iconStopUnlinking@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconStopUnlinking.imageset/iconStopUnlinking@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSymbol.imageset/iconSymbol@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSymbol.imageset/iconSymbol@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconSymbol.imageset/iconSymbol@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconSymbol.imageset/iconSymbol@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconTouchid.imageset/icnTouchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconTouchid.imageset/icnTouchid.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconTouchid.imageset/icnTouchid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconTouchid.imageset/icnTouchid@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconTouchid.imageset/icnTouchid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconTouchid.imageset/icnTouchid@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconTouchidSmall.imageset/icnTouchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconTouchidSmall.imageset/icnTouchid.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconTouchidSmall.imageset/icnTouchid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconTouchidSmall.imageset/icnTouchid@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconTouchidSmall.imageset/icnTouchid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconTouchidSmall.imageset/icnTouchid@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUnlinkSmall.imageset/iconUnlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUnlinkSmall.imageset/iconUnlink.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUnlinkSmall.imageset/iconUnlink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUnlinkSmall.imageset/iconUnlink@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUnlinkSmall.imageset/iconUnlink@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUnlinkSmall.imageset/iconUnlink@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUnlinkedTransaction.imageset/iconUnlinkedCopy6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUnlinkedTransaction.imageset/iconUnlinkedCopy6.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUnlinkedTransaction.imageset/iconUnlinkedCopy6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUnlinkedTransaction.imageset/iconUnlinkedCopy6@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUnlinkedTransaction.imageset/iconUnlinkedCopy6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUnlinkedTransaction.imageset/iconUnlinkedCopy6@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUtxo.imageset/iconUtxo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUtxo.imageset/iconUtxo.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUtxo.imageset/iconUtxo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUtxo.imageset/iconUtxo@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUtxo.imageset/iconUtxo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUtxo.imageset/iconUtxo@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUtxoEmptyState.imageset/iconUtxoEmptyState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUtxoEmptyState.imageset/iconUtxoEmptyState.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUtxoEmptyState.imageset/iconUtxoEmptyState@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUtxoEmptyState.imageset/iconUtxoEmptyState@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconUtxoEmptyState.imageset/iconUtxoEmptyState@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconUtxoEmptyState.imageset/iconUtxoEmptyState@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconWallet.imageset/iconWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconWallet.imageset/iconWallet.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconWallet.imageset/iconWallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconWallet.imageset/iconWallet@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconWallet.imageset/iconWallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconWallet.imageset/iconWallet@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconWalletEmpty.imageset/iconWalletEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconWalletEmpty.imageset/iconWalletEmpty.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconWalletEmpty.imageset/iconWalletEmpty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconWalletEmpty.imageset/iconWalletEmpty@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconWalletEmpty.imageset/iconWalletEmpty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconWalletEmpty.imageset/iconWalletEmpty@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconWalletSmall.imageset/iconWalletSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconWalletSmall.imageset/iconWalletSmall.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconWalletSmall.imageset/iconWalletSmall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconWalletSmall.imageset/iconWalletSmall@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/iconWalletSmall.imageset/iconWalletSmall@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/iconWalletSmall.imageset/iconWalletSmall@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon_faucet.imageset/icon_faucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon_faucet.imageset/icon_faucet.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon_faucet.imageset/icon_faucet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon_faucet.imageset/icon_faucet@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/icon_faucet.imageset/icon_faucet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/icon_faucet.imageset/icon_faucet@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/initial_background.imageset/bgNewTriangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/initial_background.imageset/bgNewTriangles.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/initial_background.imageset/bgNewTriangles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/initial_background.imageset/bgNewTriangles@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/initial_background.imageset/bgNewTriangles@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/initial_background.imageset/bgNewTriangles@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/lock.imageset/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/lock.imageset/lock.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/lock.imageset/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/lock.imageset/lock@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/lock.imageset/lock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/lock.imageset/lock@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/logo.imageset/logoNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/logo.imageset/logoNew.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/logo.imageset/logoNew@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/logo.imageset/logoNew@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/logo.imageset/logoNew@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/logo.imageset/logoNew@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/logoNew.imageset/logoNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/logoNew.imageset/logoNew.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/logoNew.imageset/logoNew@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/logoNew.imageset/logoNew@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/logoNew.imageset/logoNew@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/logoNew.imageset/logoNew@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/logo_small.imageset/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/logo_small.imageset/logo_small.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/logo_small.imageset/logo_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/logo_small.imageset/logo_small@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/logo_small.imageset/logo_small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/logo_small.imageset/logo_small@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-canceled-max-offline.imageset/icon-send-canceled-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-canceled-max-offline.imageset/icon-send-canceled-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-canceled-max-offline.imageset/icon-send-canceled-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-canceled-max-offline.imageset/icon-send-canceled-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-canceled-max-offline.imageset/icon-send-canceled-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-canceled-max-offline.imageset/icon-send-canceled-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-canceled-max-online.imageset/icon-icon-canceled-max-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-canceled-max-online.imageset/icon-icon-canceled-max-online.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-canceled-max-online.imageset/icon-icon-canceled-max-online@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-canceled-max-online.imageset/icon-icon-canceled-max-online@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-canceled-max-online.imageset/icon-icon-canceled-max-online@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-canceled-max-online.imageset/icon-icon-canceled-max-online@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-failed-max-offline.imageset/icon-send-failed-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-failed-max-offline.imageset/icon-send-failed-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-failed-max-offline.imageset/icon-send-failed-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-failed-max-offline.imageset/icon-send-failed-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-failed-max-offline.imageset/icon-send-failed-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-failed-max-offline.imageset/icon-send-failed-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-failed-max-online.imageset/icon-icon-failed-max-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-failed-max-online.imageset/icon-icon-failed-max-online.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-failed-max-online.imageset/icon-icon-failed-max-online@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-failed-max-online.imageset/icon-icon-failed-max-online@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-failed-max-online.imageset/icon-icon-failed-max-online@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-failed-max-online.imageset/icon-icon-failed-max-online@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-max-offline.imageset/icon-icon-sending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-max-offline.imageset/icon-icon-sending.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-max-offline.imageset/icon-icon-sending@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-max-offline.imageset/icon-icon-sending@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-max-offline.imageset/icon-icon-sending@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-max-offline.imageset/icon-icon-sending@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-max-online.imageset/icon-icon-in-progress-max-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-max-online.imageset/icon-icon-in-progress-max-online.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-max-online.imageset/icon-icon-in-progress-max-online@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-max-online.imageset/icon-icon-in-progress-max-online@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-max-online.imageset/icon-icon-in-progress-max-online@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-max-online.imageset/icon-icon-in-progress-max-online@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-offline.imageset/icon-iprogress-receive-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-offline.imageset/icon-iprogress-receive-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-offline.imageset/icon-iprogress-receive-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-offline.imageset/icon-iprogress-receive-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-offline.imageset/icon-iprogress-receive-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-offline.imageset/icon-iprogress-receive-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-online.imageset/icon-icon-in-progress-receive-max-privacy-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-online.imageset/icon-icon-in-progress-receive-max-privacy-online.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-online.imageset/icon-icon-in-progress-receive-max-privacy-online@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-online.imageset/icon-icon-in-progress-receive-max-privacy-online@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-online.imageset/icon-icon-in-progress-receive-max-privacy-online@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-in-progress-receive-max-privacy-online.imageset/icon-icon-in-progress-receive-max-privacy-online@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-offline.imageset/icon-receive-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-offline.imageset/icon-receive-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-offline.imageset/icon-receive-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-offline.imageset/icon-receive-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-offline.imageset/icon-receive-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-offline.imageset/icon-receive-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-online.imageset/icon-icon-received-max-privacy-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-online.imageset/icon-icon-received-max-privacy-online.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-online.imageset/icon-icon-received-max-privacy-online@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-online.imageset/icon-icon-received-max-privacy-online@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-online.imageset/icon-icon-received-max-privacy-online@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-received-max-privacy-online.imageset/icon-icon-received-max-privacy-online@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-send-max-offline.imageset/icon-sent-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-send-max-offline.imageset/icon-sent-offline.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-send-max-offline.imageset/icon-sent-offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-send-max-offline.imageset/icon-sent-offline@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-send-max-offline.imageset/icon-sent-offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-send-max-offline.imageset/icon-sent-offline@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-send-max-online.imageset/icon-icon-sending-max-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-send-max-online.imageset/icon-icon-sending-max-online.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-send-max-online.imageset/icon-icon-sending-max-online@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-send-max-online.imageset/icon-icon-sending-max-online@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/max_privacy/icon-send-max-online.imageset/icon-icon-sending-max-online@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/max_privacy/icon-send-max-online.imageset/icon-icon-sending-max-online@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/rateLogo.imageset/rate_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/rateLogo.imageset/rate_logo.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/rateLogo.imageset/rate_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/rateLogo.imageset/rate_logo@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/rateLogo.imageset/rate_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/rateLogo.imageset/rate_logo@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/sliderDot.imageset/sliderDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/sliderDot.imageset/sliderDot.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/sliderDot.imageset/sliderDot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/sliderDot.imageset/sliderDot@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/sliderDot.imageset/sliderDot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/sliderDot.imageset/sliderDot@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/sliderDotGreen.imageset/sliderDotGreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/sliderDotGreen.imageset/sliderDotGreen@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/sliderDotGreen.imageset/sliderDotGreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/sliderDotGreen.imageset/sliderDotGreen@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/tick.imageset/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/tick.imageset/tick.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/tick.imageset/tick@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Assets.xcassets/tick.imageset/tick@2x.png -------------------------------------------------------------------------------- /Resources/Fonts/ProximaNova-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/ProximaNova-Bold.ttf -------------------------------------------------------------------------------- /Resources/Fonts/ProximaNova-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/ProximaNova-Regular.ttf -------------------------------------------------------------------------------- /Resources/Fonts/SF-Pro-Display-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/SF-Pro-Display-Bold.otf -------------------------------------------------------------------------------- /Resources/Fonts/SF-Pro-Display-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/SF-Pro-Display-Light.otf -------------------------------------------------------------------------------- /Resources/Fonts/SF-Pro-Display-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/SF-Pro-Display-LightItalic.otf -------------------------------------------------------------------------------- /Resources/Fonts/SF-Pro-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/SF-Pro-Display-Regular.otf -------------------------------------------------------------------------------- /Resources/Fonts/SF-Pro-Display-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/SF-Pro-Display-RegularItalic.otf -------------------------------------------------------------------------------- /Resources/Fonts/SF-Pro-Display-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/SF-Pro-Display-Semibold.otf -------------------------------------------------------------------------------- /Resources/Fonts/SFProText-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/SFProText-Medium.ttf -------------------------------------------------------------------------------- /Resources/Fonts/SFProText-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/SFProText-Regular.ttf -------------------------------------------------------------------------------- /Resources/Fonts/SFProText-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Fonts/SFProText-Semibold.otf -------------------------------------------------------------------------------- /Resources/Images/bgBlack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Images/bgBlack.jpg -------------------------------------------------------------------------------- /Resources/Images/bgMasternet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Images/bgMasternet.jpg -------------------------------------------------------------------------------- /Resources/Images/bgTestnet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamMW/ios-wallet/85c5f95dd85a35334d8e6bc84140abdabe09e5ca/Resources/Images/bgTestnet.jpg -------------------------------------------------------------------------------- /Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Uložit podrobnosti transakce a naskenovat QR kódy ze snímků"; 2 | "NSPhotoLibraryUsageDescription" = "Poskytnout přístup k galerii pro výběr QR kódu"; 3 | "NSFaceIDUsageDescription" = "Tato aplikace vyžaduje oprávnění Face ID k ověření pomocí rozpoznávání obličeje"; 4 | "NSCameraUsageDescription" = "K načtení QR kódů je potřeba fotokamera"; 5 | -------------------------------------------------------------------------------- /Resources/cs.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Confidential DeFi Platform and\nCryptocurrency"; ObjectID = "fyw-0i-IbL"; */ 3 | "fyw-0i-IbL.text" = "Confidential DeFi Platform and\nCryptocurrency"; 4 | -------------------------------------------------------------------------------- /Resources/cs.lproj/LaunchScreenMasterNet.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Confidential DeFi Platform and\nCryptocurrency"; ObjectID = "fyw-0i-IbL"; */ 3 | "fyw-0i-IbL.text" = "Confidential DeFi Platform and\nCryptocurrency"; 4 | -------------------------------------------------------------------------------- /Resources/cs.lproj/LaunchScreenTestNet.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Confidential DeFi Platform and\nCryptocurrency"; ObjectID = "fyw-0i-IbL"; */ 3 | "fyw-0i-IbL.text" = "Confidential DeFi Platform and\nCryptocurrency"; 4 | -------------------------------------------------------------------------------- /Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Save transaction details and scan QR-codes from the photos"; 2 | "NSPhotoLibraryUsageDescription" = "Provide gallery access to select QR code"; 3 | "NSFaceIDUsageDescription" = "This app requires Face ID permission to authenticate using Face recognition"; 4 | "NSCameraUsageDescription" = "The camera is needed to scan QR codes"; 5 | -------------------------------------------------------------------------------- /Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Save transaction details and scan QR-codes from the photos"; 2 | "NSPhotoLibraryUsageDescription" = "Provide gallery access to select QR code"; 3 | "NSFaceIDUsageDescription" = "This app requires Face ID permission to authenticate using Face recognition"; 4 | "NSCameraUsageDescription" = "The camera is needed to scan QR codes"; 5 | -------------------------------------------------------------------------------- /Resources/fi-FI.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Save transaction details and scan QR-codes from the photos"; 2 | "NSPhotoLibraryUsageDescription" = "Provide gallery access to select QR code"; 3 | "NSFaceIDUsageDescription" = "This app requires Face ID permission to authenticate using Face recognition"; 4 | "NSCameraUsageDescription" = "The camera is needed to scan QR codes"; 5 | -------------------------------------------------------------------------------- /Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Save transaction details and scan QR-codes from the photos"; 2 | "NSPhotoLibraryUsageDescription" = "Provide gallery access to select QR code"; 3 | "NSFaceIDUsageDescription" = "This app requires Face ID permission to authenticate using Face recognition"; 4 | "NSCameraUsageDescription" = "The camera is needed to scan QR codes"; 5 | -------------------------------------------------------------------------------- /Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Save transaction details and scan QR-codes from the photos"; 2 | "NSPhotoLibraryUsageDescription" = "Provide gallery access to select QR code"; 3 | "NSFaceIDUsageDescription" = "This app requires Face ID permission to authenticate using Face recognition"; 4 | "NSCameraUsageDescription" = "The camera is needed to scan QR codes"; 5 | -------------------------------------------------------------------------------- /Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Sla transactie details op en scan QR codes vanuit foto's"; 2 | "NSPhotoLibraryUsageDescription" = "Geef toegang tot fotogalerij om QR code te selecteren"; 3 | "NSFaceIDUsageDescription" = "Deze app vereist Face ID toestemming om te verifiëren met gezichtsherkenning"; 4 | "NSCameraUsageDescription" = "De camera is nodig om QR codes te scannen"; 5 | -------------------------------------------------------------------------------- /Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Save transaction details and scan QR-codes from the photos"; 2 | "NSPhotoLibraryUsageDescription" = "Provide gallery access to select QR code"; 3 | "NSFaceIDUsageDescription" = "This app requires Face ID permission to authenticate using Face recognition"; 4 | "NSCameraUsageDescription" = "The camera is needed to scan QR codes"; 5 | -------------------------------------------------------------------------------- /Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "บันทึกรายละเอียดธุรกรรมและสแกน QR Code จากรูปภาพ"; 2 | "NSPhotoLibraryUsageDescription" = "อนุญาตให้เข้าถึงแกลอรี่เพื่อเลือก QR Code"; 3 | "NSFaceIDUsageDescription" = "แอปนี้จำเป็นจะต้องใช้การอนุญาตการใช้งาน Face ID สำหรับการใช้งานสแกนใบหน้า"; 4 | "NSCameraUsageDescription" = "จำเป็นจะต้องมีกล้องสำหรับการสแกน QR Code"; 5 | -------------------------------------------------------------------------------- /Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Save transaction details and scan QR-codes from the photos"; 2 | "NSPhotoLibraryUsageDescription" = "Provide gallery access to select QR code"; 3 | "NSFaceIDUsageDescription" = "This app requires Face ID permission to authenticate using Face recognition"; 4 | "NSCameraUsageDescription" = "The camera is needed to scan QR codes"; 5 | -------------------------------------------------------------------------------- /Resources/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "Save transaction details and scan QR-codes from the photos"; 2 | "NSPhotoLibraryUsageDescription" = "Provide gallery access to select QR code"; 3 | "NSFaceIDUsageDescription" = "This app requires Face ID permission to authenticate using Face recognition"; 4 | "NSCameraUsageDescription" = "The camera is needed to scan QR codes"; 5 | -------------------------------------------------------------------------------- /Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSPhotoLibraryAddUsageDescription" = "保存交易详情并从照片库中扫描二维码"; 2 | "NSPhotoLibraryUsageDescription" = "请允许访问照片库以选择二维码"; 3 | "NSFaceIDUsageDescription" = "此APP需要获取面容ID权限,以使用面容识别验证身份"; 4 | "NSCameraUsageDescription" = "需要访问摄像头以扫描二维码"; 5 | --------------------------------------------------------------------------------