├── .all-contributorsrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .node-version ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── .xcode-version ├── AlphaWallet.xcworkspace └── xcshareddata │ └── swiftpm │ └── Package.resolved ├── AlphaWallet ├── Accounts │ ├── Coordinators │ │ └── AccountsCoordinator.swift │ ├── ViewControllers │ │ └── AccountsViewController.swift │ ├── ViewModels │ │ ├── AccountViewModel.swift │ │ ├── AccountsViewModel.swift │ │ └── WalletSummaryViewModel.swift │ └── Views │ │ ├── AccountViewCell.swift │ │ ├── AccountViewTableSectionHeader.swift │ │ ├── WalletSummaryTableViewCell.swift │ │ └── WalletSummaryView.swift ├── ActiveWalletCoordinator.swift ├── Activities │ ├── Coordinators │ │ └── ActivitiesCoordinator.swift │ ├── ViewControllers │ │ ├── ActivitiesViewController.swift │ │ └── ActivityViewController.swift │ ├── ViewModels │ │ ├── ActivitiesViewModel.swift │ │ ├── ActivityCellViewModel.swift │ │ ├── ActivityStateViewViewModel.swift │ │ ├── ActivityViewModel.swift │ │ ├── DefaultActivityCellViewModel.swift │ │ ├── DefaultActivityViewModel.swift │ │ └── GroupActivityCellViewModel.swift │ └── Views │ │ ├── ActivitiesView.swift │ │ ├── ActivityPageView.swift │ │ ├── ActivityStateView.swift │ │ ├── ActivityViewCell.swift │ │ ├── DefaultActivityItemViewCell.swift │ │ ├── DefaultActivityView.swift │ │ └── GroupActivityViewCell.swift ├── AddMultipleCustomRpc │ ├── AddMultipleCustomRpcModel.swift │ ├── AddMultipleCustomRpcPresentationController.swift │ ├── AddMultipleCustomRpcView.swift │ ├── AddMultipleCustomRpcViewController.swift │ └── AddMultipleCustomRpcViewModel.swift ├── Alerts │ ├── Coordinators │ │ └── EditPriceAlertCoordinator.swift │ ├── ViewControllers │ │ ├── EditPriceAlertViewController.swift │ │ └── PriceAlertsViewController.swift │ ├── ViewModels │ │ ├── EditPriceAlertViewModel.swift │ │ ├── PriceAlertTableViewCellViewModel.swift │ │ └── PriceAlertsPageViewModel.swift │ └── Views │ │ └── PriceAlertTableViewCell.swift ├── AlphaWallet.entitlements ├── AlphaWalletHelp │ ├── ViewControllers │ │ ├── HelpContentsViewController.swift │ │ └── WhatIsEthereumInfoViewController.swift │ └── Views │ │ └── ContactUsBannerView.swift ├── AppCoordinator.swift ├── AppDelegate.swift ├── Attestation │ ├── Attestation+Extensions.swift │ └── SmartLayerPass.swift ├── Backup │ ├── Coordinators │ │ ├── BackupCoordinator.swift │ │ └── PromptBackupCoordinator.swift │ ├── ViewModels │ │ ├── PromptBackupWalletAfterExceedingThresholdViewViewModel.swift │ │ ├── PromptBackupWalletAfterIntervalViewViewModel.swift │ │ ├── PromptBackupWalletAfterReceivingEtherViewViewModel.swift │ │ ├── PromptBackupWalletAfterWalletCreationViewViewModel.swift │ │ └── PromptBackupWalletViewViewModel.swift │ └── Views │ │ └── PromptBackupWalletView.swift ├── Browser │ ├── Coordinators │ │ ├── DappBrowserCoordinator.swift │ │ ├── DappRequestSwitchCustomChainCoordinator.swift │ │ ├── DappRequestSwitchExistingChainCoordinator.swift │ │ ├── QRCodeResolutionCoordinator.swift │ │ └── ScanQRCodeCoordinator.swift │ ├── DappRequesterDelegate.swift │ ├── ScanQRCodeResolution.swift │ ├── ViewControllers │ │ ├── BookmarksViewController.swift │ │ ├── BrowserHistoryViewController.swift │ │ ├── BrowserHomeViewController.swift │ │ ├── BrowserViewController.swift │ │ ├── EditBookmarkViewController.swift │ │ └── SwitchChainRequestViewController.swift │ ├── ViewModel │ │ ├── BookmarksViewViewModel.swift │ │ ├── BrowserHistoryCellViewModel.swift │ │ ├── BrowserHomeViewModel.swift │ │ ├── BrowserViewModel.swift │ │ ├── DappButtonViewModel.swift │ │ ├── DappViewCellViewModel.swift │ │ ├── Dapps.swift │ │ ├── DappsHomeEmptyViewModel.swift │ │ ├── DappsHomeHeaderViewModel.swift │ │ ├── DappsHomeViewControllerHeaderViewViewModel.swift │ │ ├── EditBookmarkViewModel.swift │ │ ├── HistoriesViewModel.swift │ │ ├── MyDappCellViewModel.swift │ │ └── SwitchChainRequestViewModel.swift │ └── Views │ │ ├── BookmarksHeaderView.swift │ │ ├── BrowserErrorView.swift │ │ ├── BrowserHistoryCell.swift │ │ ├── BrowserHistoryHeaderView.swift │ │ ├── BrowserHomeHeaderView.swift │ │ ├── DappBrowserNavigationBar.swift │ │ ├── DappButton.swift │ │ ├── DappViewCell.swift │ │ ├── DappsHomeEmptyView.swift │ │ ├── DappsHomeViewControllerHeaderView.swift │ │ └── MyDappCell.swift ├── BuyCrypto │ ├── BuyCryptoUsingThirdPartyCoordinator.swift │ └── SelectServiceToBuyCryptoCoordinator.swift ├── Common │ ├── Coordinators │ │ ├── CheckDeviceCoordinator.swift │ │ ├── ServerUnavailableCoordinator.swift │ │ └── WalletApiCoordinator.swift │ ├── Helpers │ │ ├── DeviceChecker.swift │ │ ├── EmailList.swift │ │ ├── FeedbackGenerator.swift │ │ ├── JailbreakChecker.swift │ │ ├── KingfisherImageFetcher.swift │ │ └── ScreenChecker.swift │ ├── Initializers │ │ ├── ConfigureApp.swift │ │ ├── ConfigureImageStorage.swift │ │ └── KeyboardInitializer.swift │ ├── Services │ │ ├── Analytics │ │ │ ├── AnalyticsService.swift │ │ │ └── MixpanelService.swift │ │ ├── Application.swift │ │ ├── DefaultLocalNotificationDeliveryService.swift │ │ ├── FirebaseReportService.swift │ │ ├── KeyboardChecker.swift │ │ ├── KingfisherImageCacheStorage.swift │ │ ├── LaunchOptionsHandler.swift │ │ ├── MediaContentDownloader.swift │ │ ├── MediaContentNetworking.swift │ │ ├── SpamTokenService.swift │ │ ├── TokenActionsService+Extensions.swift │ │ └── UserActivityService.swift │ ├── Types │ │ ├── AppStyle.swift │ │ ├── CanOpenContractWebPage.swift │ │ ├── Configuration.swift │ │ ├── Constants.swift │ │ ├── Coordinator.swift │ │ ├── Error.swift │ │ ├── InputError.swift │ │ ├── KeychainStorage.swift │ │ └── ServiceProvider.swift │ ├── ViewControllers │ │ ├── ModalViewController.swift │ │ ├── PromptViewController.swift │ │ ├── StaticHTMLViewController.swift │ │ └── TopTabBarViewController.swift │ ├── ViewModels │ │ ├── AcceptAuthRequestViewModel.swift │ │ ├── AcceptDeepLinkViewModel.swift │ │ ├── AcceptProposalViewModel.swift │ │ ├── AcceptWalletConnectSessionViewModel.swift │ │ ├── DappRequesterViewModel.swift │ │ ├── DeepLinkRequesterViewModel.swift │ │ ├── DropDownViewModel.swift │ │ ├── GasViewModel.swift │ │ └── PromptViewModel.swift │ └── Views │ │ ├── AVPlayerView.swift │ │ ├── AddressOrEnsNameLabel.swift │ │ ├── AddressTextField.swift │ │ ├── AmountTextField.swift │ │ ├── BalloonMarker.swift │ │ ├── BlockchainTagLabel.swift │ │ ├── BlockieImageView.swift │ │ ├── BoxView.swift │ │ ├── Button.swift │ │ ├── ButtonsBar │ │ ├── ButtonsBar.swift │ │ ├── ButtonsBarBackgroundView.swift │ │ ├── ToolButtonsBarView.swift │ │ └── VerticalButtonsBar.swift │ │ ├── ContainerTableViewCell.swift │ │ ├── ContainerViewWithShadow.swift │ │ ├── DateEntryField.swift │ │ ├── DropDownView.swift │ │ ├── DummySearchView.swift │ │ ├── EditableSelectAssetAmountView.swift │ │ ├── EmptyView.swift │ │ ├── EnterAssetAmountView.swift │ │ ├── GridStackView.swift │ │ ├── ImageView.swift │ │ ├── LabeledServerImageView.swift │ │ ├── LoadingIndicatorView.swift │ │ ├── LoadingView.swift │ │ ├── NavigationController.swift │ │ ├── NumberStepper.swift │ │ ├── RoundedBackground.swift │ │ ├── RoundedEnsView.swift │ │ ├── ScrollableSegmentedControl │ │ ├── ScrollableSegmentedControl.swift │ │ ├── ScrollableSegmentedControlCell.swift │ │ └── ScrollableSegmentedControlHighlightableLineView.swift │ │ ├── SelectAssetAmountView.swift │ │ ├── SelectCurrencyButton.swift │ │ ├── SelfSizingPanelLayout.swift │ │ ├── StateViewModel.swift │ │ ├── StatefulView.swift │ │ ├── SuccessOverlayView.swift │ │ ├── SvgImageView.swift │ │ ├── TableViewDiffableDataSource.swift │ │ ├── TextField.swift │ │ ├── TextView.swift │ │ ├── TimeEntryField.swift │ │ ├── TokenCardRowView.swift │ │ ├── TokenCardRowViewProtocol.swift │ │ ├── TokenImageView.swift │ │ ├── UIToolbar+Custom.swift │ │ ├── ViewModels │ │ ├── AVPlayerViewModel.swift │ │ ├── AmountTextFieldPair.swift │ │ ├── AmountTextFieldViewModel.swift │ │ ├── EditableSelectAssetAmountViewModel.swift │ │ ├── EnterAssetAmountViewModel.swift │ │ ├── LabeledServerImageViewModel.swift │ │ ├── RoundedEnsViewModel.swift │ │ ├── SelectAssetViewModel.swift │ │ ├── TokenCardRowViewModel.swift │ │ ├── TokenCardRowViewModelProtocol.swift │ │ └── WebImageViewModel.swift │ │ ├── ViewRounding.swift │ │ ├── WebImageView.swift │ │ ├── WhereIsWalletAddressFoundOverlayView.swift │ │ └── XYMarkerView.swift ├── Donations │ ├── CameraDonation.swift │ ├── Donations.swift │ └── WalletQrCodeDonation.swift ├── ErrorLocalizations.swift ├── Extensions │ ├── AlphaWalletAddress+UI.swift │ ├── Collection+UIView.swift │ ├── Control+Publishers.swift │ ├── NSLayoutConstraintExtension.swift │ ├── RPCServer+Extensions.swift │ ├── UIActivityViewController.swift │ ├── UIAlertController.swift │ ├── UIApplication+Extensions.swift │ ├── UIBarButtonItem.swift │ ├── UIButton.swift │ ├── UICollectionViewLayout+Extensions.swift │ ├── UIColor.swift │ ├── UIDevice.swift │ ├── UIGestureRecognizer+Closure.swift │ ├── UIImage.swift │ ├── UIImageAsset+Extension.swift │ ├── UIImageView+Extension.swift │ ├── UINavigationController.swift │ ├── UIResponder.swift │ ├── UISearchBar+Extensions.swift │ ├── UIStackView+Array.swift │ ├── UIStackView.swift │ ├── UITableView.swift │ ├── UITableViewCell.swift │ ├── UITextFieldAdditions.swift │ ├── UITraitCollection.swift │ ├── UIView.swift │ ├── UIViewController.swift │ └── UIViewInspectableEnhancements.swift ├── Features │ ├── FeaturesTableViewController.swift │ └── FeaturesViewController.swift ├── GoogleService-Info.plist ├── GoogleService-InfoTests.plist ├── HardwareWallet │ └── BCHardwareWallet │ │ └── BCHardwareWallet.swift ├── Info.plist ├── Localization │ ├── en.lproj │ │ ├── Localizable.strings │ │ ├── howDoIGetMyMoneyInfo.html │ │ ├── howDoITransferETHIntoMyWalletInfo.html │ │ ├── privacyPolicy.html │ │ ├── redeemInfo.html │ │ ├── sellInfo.html │ │ ├── termsOfService.html │ │ └── whatIsEthereumInfo.html │ ├── es.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ ├── Localizable.strings │ │ ├── howDoIGetMyMoneyInfo.html │ │ ├── howDoITransferETHIntoMyWalletInfo.html │ │ ├── privacyPolicy.html │ │ ├── redeemInfo.html │ │ ├── sellInfo.html │ │ ├── termsOfService.html │ │ └── whatIsEthereumInfo.html │ ├── ja.lproj │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ └── zh-Hans.lproj │ │ └── Localizable.strings ├── Lock │ ├── Coordinators │ │ └── LockCreatePasscodeCoordinator.swift │ ├── ViewControllers │ │ ├── LockCreatePasscodeViewController.swift │ │ ├── LockEnterPasscodeViewController.swift │ │ └── LockPasscodeViewController.swift │ ├── ViewModels │ │ ├── LockCreatePasscodeViewModel.swift │ │ ├── LockEnterPasscodeViewModel.swift │ │ └── LockViewModel.swift │ └── Views │ │ ├── LockView.swift │ │ └── PasscodeCharacterView.swift ├── Market │ ├── Coordinators │ │ └── ImportMagicLinkCoordinator.swift │ ├── ImportMagicLinkController.swift │ ├── ViewControllers │ │ └── ImportMagicTokenViewController.swift │ └── ViewModels │ │ ├── ImportMagicTokenCardRowViewModel.swift │ │ └── ImportMagicTokenViewControllerViewModel.swift ├── MyApp.swift ├── Protection │ ├── Coordinators │ │ ├── LockEnterPasscodeCoordinator.swift │ │ ├── ProtectionCoordinator.swift │ │ └── SplashCoordinator.swift │ └── ViewControllers │ │ └── SplashViewController.swift ├── Redeem │ ├── ViewControllers │ │ ├── RedeemTokenCardQuantitySelectionViewController.swift │ │ └── TokenCardRedemptionViewController.swift │ └── ViewModels │ │ ├── RedeemTokenCardQuantitySelectionViewModel.swift │ │ └── TokenCardRedemptionViewModel.swift ├── Resources │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 1024x1024.png │ │ │ ├── 120x120-1.png │ │ │ ├── 120x120.png │ │ │ ├── 152x152.png │ │ │ ├── 167x167.png │ │ │ ├── 180x180.png │ │ │ ├── 20x20.png │ │ │ ├── 29x29-1.png │ │ │ ├── 29x29.png │ │ │ ├── 40x40-1.png │ │ │ ├── 40x40-2.png │ │ │ ├── 40x40.png │ │ │ ├── 58x58-1.png │ │ │ ├── 58x58.png │ │ │ ├── 60x60.png │ │ │ ├── 76x76.png │ │ │ ├── 80x80-1.png │ │ │ ├── 80x80.png │ │ │ ├── 87x87.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── HT-HECO mainnet.imageset │ │ │ ├── Contents.json │ │ │ └── HT-HECO mainnet.pdf │ │ ├── HT-HECO testnet.imageset │ │ │ ├── Contents.json │ │ │ └── HT-HECO testnet.pdf │ │ ├── Klaytn-Baobab.imageset │ │ │ ├── Contents.json │ │ │ └── Klaytn-Baobab.pdf │ │ ├── Network │ │ │ ├── Contents.json │ │ │ ├── icons-network-arbitrum.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-arbitrum.pdf │ │ │ ├── icons-network-avalanche.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-avalanche.pdf │ │ │ ├── icons-network-bsc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-bsc.pdf │ │ │ ├── icons-network-callisto.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-callisto.pdf │ │ │ ├── icons-network-candle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── candle-16.png │ │ │ ├── icons-network-cronos.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Cronos.svg │ │ │ ├── icons-network-etc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-etc.pdf │ │ │ ├── icons-network-eth.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-eth.pdf │ │ │ ├── icons-network-fantom.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-fantom.pdf │ │ │ ├── icons-network-heco.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-heco.pdf │ │ │ ├── icons-network-optimism.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-optimism.pdf │ │ │ ├── icons-network-palm.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-palm.pdf │ │ │ ├── icons-network-polygon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-polygon.pdf │ │ │ └── icons-network-xdai.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons-network-gnosis.pdf │ │ ├── activities_empty_list.imageset │ │ │ ├── Contents.json │ │ │ ├── icons-illustrations-empty-2.pdf │ │ │ └── iconsIllustrationsEmptyDark.pdf │ │ ├── activityFailed.imageset │ │ │ ├── Contents.json │ │ │ └── activityFailed.pdf │ │ ├── activityPending.imageset │ │ │ ├── Contents.json │ │ │ └── activityPending.pdf │ │ ├── activityReceive.imageset │ │ │ ├── Contents.json │ │ │ └── activityReceive.pdf │ │ ├── activitySend.imageset │ │ │ ├── Contents.json │ │ │ └── activitySend.pdf │ │ ├── add_hide_tokens.imageset │ │ │ ├── Contents.json │ │ │ └── addBorderCircle.pdf │ │ ├── alabaster.colorset │ │ │ └── Contents.json │ │ ├── alerts_empty_list.imageset │ │ │ ├── Contents.json │ │ │ ├── icons-illustrations-bell-dark.pdf │ │ │ └── icons-illustrations-bell-light.pdf │ │ ├── alto.colorset │ │ │ └── Contents.json │ │ ├── arbitrum.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-arbitrum.pdf │ │ ├── awLogoSmall.imageset │ │ │ ├── Contents.json │ │ │ ├── iconsIllustrationsLogo24X24.png │ │ │ ├── iconsIllustrationsLogo24X24@2x.png │ │ │ └── iconsIllustrationsLogo24X24@3x.png │ │ ├── azure.colorset │ │ │ └── Contents.json │ │ ├── azure_hover.colorset │ │ │ └── Contents.json │ │ ├── azure_sending.colorset │ │ │ └── Contents.json │ │ ├── backWhite.imageset │ │ │ ├── Contents.json │ │ │ └── backWhite.pdf │ │ ├── backupCircle.imageset │ │ │ ├── Contents.json │ │ │ └── backupCircle.pdf │ │ ├── biometric-lock.imageset │ │ │ ├── Contents.json │ │ │ ├── icons-illustrations-biometrics-dark.pdf │ │ │ └── icons-illustrations-biometrics-light.pdf │ │ ├── biometrics.imageset │ │ │ ├── Contents.json │ │ │ └── biometrics.pdf │ │ ├── black.colorset │ │ │ └── Contents.json │ │ ├── browse.imageset │ │ │ ├── Contents.json │ │ │ └── browse.pdf │ │ ├── calendar.imageset │ │ │ ├── Contents.json │ │ │ └── calendar.pdf │ │ ├── category.imageset │ │ │ ├── Contents.json │ │ │ └── category.pdf │ │ ├── cerulean.colorset │ │ │ └── Contents.json │ │ ├── changeWallet.imageset │ │ │ ├── Contents.json │ │ │ └── changeWallet.pdf │ │ ├── cheese.colorset │ │ │ └── Contents.json │ │ ├── chevron-down.imageset │ │ │ ├── Contents.json │ │ │ └── chevron-down.png │ │ ├── chevron-right.imageset │ │ │ ├── Contents.json │ │ │ └── chevron-right.png │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ ├── close.pdf │ │ │ └── closex2.pdf │ │ ├── cod.colorset │ │ │ └── Contents.json │ │ ├── concrete.colorset │ │ │ └── Contents.json │ │ ├── conversionDaiSai.imageset │ │ │ ├── Contents.json │ │ │ ├── iconsIllustrationsSendEthDark.pdf │ │ │ └── iconsIllustrationsSendEthLight.pdf │ │ ├── cooldown.imageset │ │ │ ├── Contents.json │ │ │ └── cooldown.pdf │ │ ├── copy.imageset │ │ │ ├── Contents.json │ │ │ └── copy.pdf │ │ ├── cronos.imageset │ │ │ ├── Contents.json │ │ │ └── Cronos.svg │ │ ├── danger.colorset │ │ │ └── Contents.json │ │ ├── developerMode.imageset │ │ │ ├── Contents.json │ │ │ └── developerMode.pdf │ │ ├── dodge.colorset │ │ │ └── Contents.json │ │ ├── dove.colorset │ │ │ └── Contents.json │ │ ├── dusty.colorset │ │ │ └── Contents.json │ │ ├── emerald.colorset │ │ │ └── Contents.json │ │ ├── empty_list.imageset │ │ │ ├── Contents.json │ │ │ ├── icons-illustrations-search-results-dark.pdf │ │ │ └── icons-illustrations-search-results-light.pdf │ │ ├── error.imageset │ │ │ ├── Contents.json │ │ │ └── error.png │ │ ├── eth-small.imageset │ │ │ ├── Contents.json │ │ │ └── eth-small.pdf │ │ ├── eth.imageset │ │ │ ├── Contents.json │ │ │ └── eth.pdf │ │ ├── expand.imageset │ │ │ ├── Contents.json │ │ │ └── expand.pdf │ │ ├── expandMore.imageset │ │ │ ├── Contents.json │ │ │ └── expandMore.pdf │ │ ├── gasWarning.imageset │ │ │ ├── Contents.json │ │ │ └── gasWarning.pdf │ │ ├── generation.imageset │ │ │ ├── Contents.json │ │ │ └── generation.pdf │ │ ├── glasses.imageset │ │ │ ├── Contents.json │ │ │ └── glasses@3x.png │ │ ├── green.colorset │ │ │ └── Contents.json │ │ ├── green_hover.colorset │ │ │ └── Contents.json │ │ ├── group.imageset │ │ │ ├── Contents.json │ │ │ └── group.pdf │ │ ├── hd-introduction.imageset │ │ │ ├── Contents.json │ │ │ ├── iconsIllustrationsSeedDark.pdf │ │ │ └── iconsIllustrationsSeedLight.pdf │ │ ├── hideToken.imageset │ │ │ ├── Contents.json │ │ │ └── hideToken.pdf │ │ ├── history.imageset │ │ │ ├── Contents.json │ │ │ └── iconsTokensLargeHistory.pdf │ │ ├── icons-flags-australia.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-australia.pdf │ │ ├── icons-flags-canada.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-canada.pdf │ │ ├── icons-flags-china.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-china.pdf │ │ ├── icons-flags-euro.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-euro.pdf │ │ ├── icons-flags-japan.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-japan.pdf │ │ ├── icons-flags-newzealand.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-newzealand.pdf │ │ ├── icons-flags-poland.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-poland.pdf │ │ ├── icons-flags-singapore.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-singapore.pdf │ │ ├── icons-flags-taiwan.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-taiwan.pdf │ │ ├── icons-flags-turkey.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-turkey.pdf │ │ ├── icons-flags-uk.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-uk.pdf │ │ ├── icons-flags-ukraine.imageset │ │ │ ├── Contents.json │ │ │ └── icons-flags-ukraine.pdf │ │ ├── icons-settings-eden.imageset │ │ │ ├── Contents.json │ │ │ └── icons-settings-eden.pdf │ │ ├── icons-settings-ethermine.imageset │ │ │ ├── Contents.json │ │ │ └── icons-settings-ethermine.pdf │ │ ├── icons-system-arrow-right.imageset │ │ │ ├── Contents.json │ │ │ ├── icons-system-arrow-right-1.pdf │ │ │ ├── icons-system-arrow-right-dm.pdf │ │ │ └── icons-system-arrow-right.pdf │ │ ├── icons-system-checkbox-off.imageset │ │ │ ├── Contents.json │ │ │ ├── icons-system-checkbox-off-dm.pdf │ │ │ └── icons-system-checkbox-off.pdf │ │ ├── icons-system-checkbox-on.imageset │ │ │ ├── Contents.json │ │ │ └── icons-system-checkbox-on.pdf │ │ ├── icons-tokens-a-0-x.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-0-x.pdf │ │ ├── icons-tokens-a-aave.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-aave.pdf │ │ ├── icons-tokens-a-bat.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-bat.pdf │ │ ├── icons-tokens-a-busd.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-busd.pdf │ │ ├── icons-tokens-a-dai.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-dai.pdf │ │ ├── icons-tokens-a-enj.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-enj.pdf │ │ ├── icons-tokens-a-knc.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-knc.pdf │ │ ├── icons-tokens-a-lend.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-lend.pdf │ │ ├── icons-tokens-a-link.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-link.pdf │ │ ├── icons-tokens-a-mana.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-mana.pdf │ │ ├── icons-tokens-a-mkr.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-mkr.pdf │ │ ├── icons-tokens-a-rep.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-rep.pdf │ │ ├── icons-tokens-a-sai.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-sai.pdf │ │ ├── icons-tokens-a-snx.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-snx.pdf │ │ ├── icons-tokens-a-susd.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-susd.pdf │ │ ├── icons-tokens-a-tusd.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-tusd.pdf │ │ ├── icons-tokens-a-uni-link-eth.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-uni-link-eth.pdf │ │ ├── icons-tokens-a-usdc.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-usdc.pdf │ │ ├── icons-tokens-a-usdt.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-usdt.pdf │ │ ├── icons-tokens-a-wbtc.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-wbtc.pdf │ │ ├── icons-tokens-a-weth.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-weth.pdf │ │ ├── icons-tokens-a-yfi.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-a-yfi.pdf │ │ ├── icons-tokens-palm.imageset │ │ │ ├── Contents.json │ │ │ ├── icons-tokens-palm.png │ │ │ ├── icons-tokens-palm@2x.png │ │ │ └── icons-tokens-palm@3x.png │ │ ├── iconsCheckmark.imageset │ │ │ ├── Contents.json │ │ │ └── iconsCheckmark.pdf │ │ ├── iconsIllustrationsAnalytics.imageset │ │ │ ├── Contents.json │ │ │ ├── iconsIllustrationsAnalyticsDark.pdf │ │ │ └── iconsIllustrationsAnalyticsLight.pdf │ │ ├── iconsIllustrationsCrashReporting.imageset │ │ │ ├── Contents.json │ │ │ ├── iconsIllustrationsAnalyticsDark.pdf │ │ │ └── iconsIllustrationsAnalyticsLight.pdf │ │ ├── iconsIllustrationsEmptyWalletConnect.imageset │ │ │ ├── Contents.json │ │ │ ├── icons-illustrations-empty-wallet-connect-dark.pdf │ │ │ └── iconsIllustrationsEmptyWalletConnectLight.pdf │ │ ├── iconsSettingsDiscord.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSettingsDiscord.pdf │ │ ├── iconsSettingsDisplayedEns.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSettingsDisplayedEns.pdf │ │ ├── iconsSettingsEmail.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSettingsEmail.pdf │ │ ├── iconsSettingsGithub.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSettingsGithub.pdf │ │ ├── iconsSettingsJson.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSettingsJson.pdf │ │ ├── iconsSettingsSeed2.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSettingsSeed2.pdf │ │ ├── iconsSettingsWalletConnect.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSettingsWalletConnect.pdf │ │ ├── iconsSystemAddBorderCircle.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemAddBorderCircle.pdf │ │ ├── iconsSystemBorderCircle.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemBorderCircle.pdf │ │ ├── iconsSystemCircleMinue.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemCircleMinue.pdf │ │ ├── iconsSystemDown.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemDown.pdf │ │ ├── iconsSystemExpandMore.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemExpandMore.pdf │ │ ├── iconsSystemGrid.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemGrid.pdf │ │ ├── iconsSystemHome.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemHome.pdf │ │ ├── iconsSystemList.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemList.pdf │ │ ├── iconsSystemPlus.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemPlus.pdf │ │ ├── iconsSystemQuestionMark.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemQuestionMark.pdf │ │ ├── iconsSystemRadioOff.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemRadioOff.pdf │ │ ├── iconsSystemRadioOn.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemAdded.pdf │ │ ├── iconsSystemSwitch2.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemSwitch2.pdf │ │ ├── iconsSystemUp.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemUp.pdf │ │ ├── iconsTokensAvalanche.imageset │ │ │ ├── Contents.json │ │ │ └── iconsTokensAvalanche.pdf │ │ ├── iconsTokensCandle.imageset │ │ │ ├── Contents.json │ │ │ └── candle-74.png │ │ ├── iconsTokensEthereumTestnet.imageset │ │ │ ├── Contents.json │ │ │ └── iconsTokensEthereumTestnet.pdf │ │ ├── iconsTokensFantom.imageset │ │ │ ├── Contents.json │ │ │ └── iconsTokensFantom.pdf │ │ ├── iconsTokensOptimistic.imageset │ │ │ ├── Contents.json │ │ │ └── iconsTokensOptimistic.pdf │ │ ├── iconsTokensOptimisticKovan.imageset │ │ │ ├── Contents.json │ │ │ └── iconsTokensOptimisticKovan.pdf │ │ ├── iconsTokensPlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── iconsTokensPlaceholder.pdf │ │ ├── iconsTokensPolygon.imageset │ │ │ ├── Contents.json │ │ │ └── iconsTokensPolygon.pdf │ │ ├── import_options.imageset │ │ │ ├── Contents.json │ │ │ └── import_options.png │ │ ├── indigo.colorset │ │ │ └── Contents.json │ │ ├── info_accessory.imageset │ │ │ ├── Contents.json │ │ │ └── page1Copy.pdf │ │ ├── ioTeX.imageset │ │ │ ├── Contents.json │ │ │ └── ioTeX.svg │ │ ├── ioTeXTestnet.imageset │ │ │ ├── Contents.json │ │ │ └── ioTeXTestnet.svg │ │ ├── keystore-introduction.imageset │ │ │ ├── Contents.json │ │ │ └── keystore-introduction@3x.png │ │ ├── klaytnIcon.imageset │ │ │ ├── Contents.json │ │ │ └── Klaytn-Cypress.pdf │ │ ├── launch_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-186x132.png │ │ │ ├── icon-279x198.png │ │ │ └── icon-93x66.png │ │ ├── light.imageset │ │ │ ├── Contents.json │ │ │ └── light.pdf │ │ ├── loadingBackground.colorset │ │ │ └── Contents.json │ │ ├── location.imageset │ │ │ ├── Contents.json │ │ │ └── location.pdf │ │ ├── luckyPoint.colorset │ │ │ └── Contents.json │ │ ├── mascot_happy.imageset │ │ │ ├── Contents.json │ │ │ ├── happy_mascot-dark-113x80.png │ │ │ ├── happy_mascot-dark-226x160.png │ │ │ ├── happy_mascot-dark-339x240.png │ │ │ ├── happy_mascot-light-113x80.png │ │ │ ├── happy_mascot-light-226x160.png │ │ │ └── happy_mascot-light-339x240.png │ │ ├── mercury.colorset │ │ │ └── Contents.json │ │ ├── mike.colorset │ │ │ └── Contents.json │ │ ├── mine.colorset │ │ │ └── Contents.json │ │ ├── moreLightActive.imageset │ │ │ ├── Contents.json │ │ │ └── buttonsDotsActiveLight.pdf │ │ ├── moreLightPressed.imageset │ │ │ ├── Contents.json │ │ │ └── buttonsDotsPressedLight.pdf │ │ ├── myDapps.imageset │ │ │ ├── Contents.json │ │ │ └── iconsTokensLargeBookmarks.pdf │ │ ├── networksCircle.imageset │ │ │ ├── Contents.json │ │ │ └── networksCircle.pdf │ │ ├── not_expand.imageset │ │ │ ├── Contents.json │ │ │ └── not_expand.pdf │ │ ├── notificationsCircle.imageset │ │ │ ├── Contents.json │ │ │ └── notificationsCircle.pdf │ │ ├── ocean.colorset │ │ │ └── Contents.json │ │ ├── okc_logo.imageset │ │ │ ├── Contents.json │ │ │ └── okc_logo.png │ │ ├── onboarding_1.imageset │ │ │ ├── Contents.json │ │ │ ├── onboarding_1.jpg │ │ │ ├── onboarding_1@2x.jpg │ │ │ └── onboarding_1@3x.jpg │ │ ├── onboarding_2.imageset │ │ │ ├── Contents.json │ │ │ ├── onboarding_2.jpg │ │ │ ├── onboarding_2@2x.jpg │ │ │ └── onboarding_2@3x.jpg │ │ ├── onboarding_3.imageset │ │ │ ├── Contents.json │ │ │ ├── onboarding_3.jpg │ │ │ ├── onboarding_3@2x.jpg │ │ │ └── onboarding_3@3x.jpg │ │ ├── onboarding_complete.imageset │ │ │ ├── Contents.json │ │ │ └── onboarding_complete.pdf │ │ ├── onboarding_contact.imageset │ │ │ ├── Contents.json │ │ │ └── onboarding_contact.pdf │ │ ├── onboarding_failed.imageset │ │ │ ├── Contents.json │ │ │ └── onboarding_failed@3x.png │ │ ├── onboarding_lock.imageset │ │ │ ├── Contents.json │ │ │ └── onboarding_lock@3x.png │ │ ├── openSeaNonFungibleAttribute.imageset │ │ │ ├── Contents.json │ │ │ └── openSeaNonFungibleAttribute.pdf │ │ ├── openSeaNonFungibleButtonArrow.imageset │ │ │ ├── Contents.json │ │ │ └── openSeaNonFungibleButtonArrow.pdf │ │ ├── oval.imageset │ │ │ ├── Contents.json │ │ │ └── oval.pdf │ │ ├── pause-button.imageset │ │ │ ├── Contents.json │ │ │ └── video-pause-button.png │ │ ├── pending.imageset │ │ │ ├── Contents.json │ │ │ └── pending.pdf │ │ ├── phi.imageset │ │ │ ├── Contents.json │ │ │ └── phi.png │ │ ├── play-button.imageset │ │ │ ├── Contents.json │ │ │ └── play-button.png │ │ ├── plus.imageset │ │ │ ├── Contents.json │ │ │ └── plus.pdf │ │ ├── porcelain.colorset │ │ │ └── Contents.json │ │ ├── price_down.imageset │ │ │ ├── Contents.json │ │ │ └── price_down.pdf │ │ ├── price_up.imageset │ │ │ ├── Contents.json │ │ │ └── price_up.pdf │ │ ├── pumpkin.colorset │ │ │ └── Contents.json │ │ ├── qrRounded.imageset │ │ │ ├── Contents.json │ │ │ └── qrRounded.pdf │ │ ├── qrRoundedWhite.imageset │ │ │ ├── Contents.json │ │ │ └── qrRoundedWhite.pdf │ │ ├── qr_code_icon.imageset │ │ │ ├── Contents.json │ │ │ └── cameraScan.pdf │ │ ├── radical.colorset │ │ │ └── Contents.json │ │ ├── received.imageset │ │ │ ├── Contents.json │ │ │ └── received.pdf │ │ ├── sent.imageset │ │ │ ├── Contents.json │ │ │ └── sent.pdf │ │ ├── sepolia.imageset │ │ │ ├── Contents.json │ │ │ └── sepolia.png │ │ ├── settings-blockscan-chat.imageset │ │ │ ├── Contents.json │ │ │ └── settings-blockscan-chat.pdf │ │ ├── settings_analytics.imageset │ │ │ ├── Contents.json │ │ │ └── analytics.pdf │ │ ├── settings_clear_dapp_cache.imageset │ │ │ ├── Contents.json │ │ │ └── cachesCircle.pdf │ │ ├── settings_console.imageset │ │ │ ├── Contents.json │ │ │ └── console.pdf │ │ ├── settings_crash_reporter.imageset │ │ │ ├── Contents.json │ │ │ └── settings_crash_reporter.pdf │ │ ├── settings_currency.imageset │ │ │ ├── Contents.json │ │ │ └── currency.pdf │ │ ├── settings_facebook.imageset │ │ │ ├── Contents.json │ │ │ └── facebook.pdf │ │ ├── settings_faq.imageset │ │ │ ├── Contents.json │ │ │ └── faq.pdf │ │ ├── settings_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── settings.png │ │ │ ├── settings@2x.png │ │ │ └── settings@3x.png │ │ ├── settings_language.imageset │ │ │ ├── Contents.json │ │ │ └── language.pdf │ │ ├── settings_reddit.imageset │ │ │ ├── Contents.json │ │ │ └── reddit.pdf │ │ ├── settings_tokenscript_overrides.imageset │ │ │ ├── Contents.json │ │ │ └── overrides.pdf │ │ ├── settings_twitter.imageset │ │ │ ├── Contents.json │ │ │ └── twitter.pdf │ │ ├── settings_wallet_backup.imageset │ │ │ ├── Contents.json │ │ │ └── settings_wallet_backup.png │ │ ├── shark.colorset │ │ │ └── Contents.json │ │ ├── showSeedPhraseIntroduction.imageset │ │ │ ├── Contents.json │ │ │ ├── icons-illustrations-scammer-dark.pdf │ │ │ └── icons-illustrations-scammer-light.pdf │ │ ├── silver.colorset │ │ │ └── Contents.json │ │ ├── smart-layer-pass.imageset │ │ │ ├── Contents.json │ │ │ └── smart-layer-pass.pdf │ │ ├── solitude.colorset │ │ │ └── Contents.json │ │ ├── spam-small.imageset │ │ │ ├── Contents.json │ │ │ └── spam-small.png │ │ ├── statement.imageset │ │ │ ├── Contents.json │ │ │ └── statement.pdf │ │ ├── successOverlay.imageset │ │ │ ├── Contents.json │ │ │ └── successOverlay.pdf │ │ ├── support.imageset │ │ │ ├── Contents.json │ │ │ └── support.pdf │ │ ├── swap.imageset │ │ │ ├── Contents.json │ │ │ └── swap.pdf │ │ ├── tab_browser.imageset │ │ │ ├── Contents.json │ │ │ └── tab_browser.pdf │ │ ├── tab_settings.imageset │ │ │ ├── Contents.json │ │ │ └── tab_settings.pdf │ │ ├── tab_transactions.imageset │ │ │ ├── Contents.json │ │ │ └── tab_transactions.pdf │ │ ├── tab_wallet.imageset │ │ │ ├── Contents.json │ │ │ └── tab_wallet.pdf │ │ ├── ticket.imageset │ │ │ ├── Contents.json │ │ │ └── ticket.pdf │ │ ├── ticket_bundle_checked.imageset │ │ │ ├── Contents.json │ │ │ └── ticket_bundle_checked.pdf │ │ ├── ticket_bundle_unchecked.imageset │ │ │ ├── Contents.json │ │ │ └── ticket_bundle_unchecked.pdf │ │ ├── time.imageset │ │ │ ├── Contents.json │ │ │ └── time@3x.png │ │ ├── toggle-password.imageset │ │ │ ├── Contents.json │ │ │ └── toggle-password.pdf │ │ ├── token-bnb.imageset │ │ │ ├── Contents.json │ │ │ └── token-bnb.pdf │ │ ├── token-callisto.imageset │ │ │ ├── Contents.json │ │ │ └── token-callisto.pdf │ │ ├── token-cdai.imageset │ │ │ ├── Contents.json │ │ │ └── token-cdai.pdf │ │ ├── token-cofi.imageset │ │ │ ├── Contents.json │ │ │ └── token-cofi.pdf │ │ ├── token-cofix.imageset │ │ │ ├── Contents.json │ │ │ └── token-cofix.pdf │ │ ├── token-dai.imageset │ │ │ ├── Contents.json │ │ │ └── token-dai.pdf │ │ ├── token-eos.imageset │ │ │ ├── Contents.json │ │ │ └── token-eos.pdf │ │ ├── token-etc.imageset │ │ │ ├── Contents.json │ │ │ └── token-etc.pdf │ │ ├── token-idai.imageset │ │ │ ├── Contents.json │ │ │ └── token-idai.pdf │ │ ├── token-link.imageset │ │ │ ├── Contents.json │ │ │ └── token-link.pdf │ │ ├── token-nest.imageset │ │ │ ├── Contents.json │ │ │ └── token-nest.pdf │ │ ├── token-pbtc.imageset │ │ │ ├── Contents.json │ │ │ └── token-pbtc.pdf │ │ ├── token-pdai.imageset │ │ │ ├── Contents.json │ │ │ └── token-pdai.pdf │ │ ├── token-peos.imageset │ │ │ ├── Contents.json │ │ │ └── token-peos.pdf │ │ ├── token-peth.imageset │ │ │ ├── Contents.json │ │ │ └── token-peth.pdf │ │ ├── token-pltc.imageset │ │ │ ├── Contents.json │ │ │ └── token-pltc.pdf │ │ ├── token-psai.imageset │ │ │ ├── Contents.json │ │ │ └── icons-tokens-psai.pdf │ │ ├── token-pusdt.imageset │ │ │ ├── Contents.json │ │ │ └── token-pusdt.pdf │ │ ├── token-sada.imageset │ │ │ ├── Contents.json │ │ │ └── token-sada.pdf │ │ ├── token-saud.imageset │ │ │ ├── Contents.json │ │ │ └── token-saud.pdf │ │ ├── token-sbtc.imageset │ │ │ ├── Contents.json │ │ │ └── token-sbtc.pdf │ │ ├── token-schf.imageset │ │ │ ├── Contents.json │ │ │ └── token-schf.pdf │ │ ├── token-sdefi.imageset │ │ │ ├── Contents.json │ │ │ └── token-sdefi.pdf │ │ ├── token-seth.imageset │ │ │ ├── Contents.json │ │ │ └── token-seth.pdf │ │ ├── token-seur.imageset │ │ │ ├── Contents.json │ │ │ └── token-seur.pdf │ │ ├── token-sgbp.imageset │ │ │ ├── Contents.json │ │ │ └── token-sgbp.pdf │ │ ├── token-sjpy.imageset │ │ │ ├── Contents.json │ │ │ └── token-sjpy.pdf │ │ ├── token-slink.imageset │ │ │ ├── Contents.json │ │ │ └── token-slink.pdf │ │ ├── token-sltc.imageset │ │ │ ├── Contents.json │ │ │ └── token-sltc.pdf │ │ ├── token-snikkei.imageset │ │ │ ├── Contents.json │ │ │ └── token-snikkei.pdf │ │ ├── token-susd.imageset │ │ │ ├── Contents.json │ │ │ └── token-susd.pdf │ │ ├── token-sxau.imageset │ │ │ ├── Contents.json │ │ │ └── token-sxau.pdf │ │ ├── token-sxmr.imageset │ │ │ ├── Contents.json │ │ │ └── token-sxmr.pdf │ │ ├── token-sxtz.imageset │ │ │ ├── Contents.json │ │ │ └── token-sxtz.pdf │ │ ├── token-teo.imageset │ │ │ ├── Contents.json │ │ │ └── token-teo.pdf │ │ ├── token-usdc.imageset │ │ │ ├── Contents.json │ │ │ └── token-usdc.pdf │ │ ├── token-wbtc.imageset │ │ │ ├── Contents.json │ │ │ └── token-wbtc.pdf │ │ ├── token-weth.imageset │ │ │ ├── Contents.json │ │ │ └── token-weth.pdf │ │ ├── tokenPlaceholderLarge.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-1032x1032.png │ │ │ ├── icon-344x344.png │ │ │ └── icon-688x688.png │ │ ├── toolbar-back.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemArrowBack (1).pdf │ │ ├── toolbar-forward.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemArrowBack.pdf │ │ ├── toolbar-menu.imageset │ │ │ ├── Contents.json │ │ │ └── iconsSystemMenuIOs.pdf │ │ ├── transaction-accessory.imageset │ │ │ ├── Contents.json │ │ │ └── transaction-accessory.pdf │ │ ├── transaction_error.imageset │ │ │ ├── Contents.json │ │ │ └── transaction_error.png │ │ ├── transaction_pending.imageset │ │ │ ├── Contents.json │ │ │ └── transaction_pending.png │ │ ├── unverified.imageset │ │ │ ├── Contents.json │ │ │ └── unverified.pdf │ │ ├── usaFlag.imageset │ │ │ ├── Contents.json │ │ │ └── usaFlag.pdf │ │ ├── venus.colorset │ │ │ └── Contents.json │ │ ├── verified.imageset │ │ │ ├── Contents.json │ │ │ └── verified.pdf │ │ ├── walletAddress.imageset │ │ │ ├── Contents.json │ │ │ └── walletAddress.pdf │ │ ├── walletConnect-icon.imageset │ │ │ ├── Contents.json │ │ │ └── walletConnect.pdf │ │ ├── wallet_security_green_bar.imageset │ │ │ ├── Contents.json │ │ │ ├── wallet_security_green_bar-dark@3x.png │ │ │ └── wallet_security_green_bar@3x.png │ │ ├── wallet_security_orange_bar.imageset │ │ │ ├── Contents.json │ │ │ ├── wallet_security_orange_bar-dark@3x.png │ │ │ └── wallet_security_orange_bar@3x.png │ │ ├── wallet_security_red_bar.imageset │ │ │ ├── Contents.json │ │ │ ├── wallet_security_red_bar-dark@3x.png │ │ │ └── wallet_security_red_bar@3x.png │ │ ├── white.colorset │ │ │ └── Contents.json │ │ ├── white.imageset │ │ │ ├── Contents.json │ │ │ └── white.pdf │ │ └── xDai.imageset │ │ │ ├── Contents.json │ │ │ └── icons-network-gnosis.pdf │ ├── COMODO ECC Domain Validation Secure Server CA 2.cer │ ├── Fonts │ │ └── source-sans-pro │ │ │ ├── README.md │ │ │ ├── SIL Open Font License.txt │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-Regular.otf │ │ │ └── SourceSansPro-Semibold.otf │ ├── ImagesOutsideAssetCatalog │ │ ├── non_asset_catalog_redemption_location.png │ │ ├── non_asset_catalog_redemption_location@2x.png │ │ └── non_asset_catalog_redemption_location@3x.png │ ├── LaunchScreen.storyboard │ ├── LaunchScreen.xcassets │ │ ├── Contents.json │ │ ├── LaunchScreen.colorset │ │ │ └── Contents.json │ │ └── LaunchScreen.imageset │ │ │ ├── Contents.json │ │ │ ├── launchscreen-dark.png │ │ │ ├── launchscreen-dark@2x.png │ │ │ ├── launchscreen-dark@3x.png │ │ │ ├── launchscreen.png │ │ │ ├── launchscreen@2x.png │ │ │ └── launchscreen@3x.png │ ├── PrivacyInfo.xcprivacy │ ├── TokenScriptFiles │ │ ├── DAI.tsml │ │ ├── ERC20-TokenScript.tsml │ │ ├── ERC721-TokenScript.tsml │ │ ├── ETH.tsml │ │ ├── XDAI-bridge.tsml │ │ └── aETH.tsml │ ├── chains.zip │ ├── tokens.json │ └── tokensToImport.json ├── Sell │ ├── ViewControllers │ │ ├── EnterSellTokensCardPriceQuantityViewController.swift │ │ ├── GenerateSellMagicLinkViewController.swift │ │ └── SetSellTokensCardExpiryDateViewController.swift │ └── ViewModels │ │ ├── EnterSellTokensCardPriceQuantityViewModel.swift │ │ ├── GenerateSellMagicLinkViewModel.swift │ │ ├── GenerateTransferMagicLinkViewModel.swift │ │ └── SetSellTokensCardExpiryDateViewModel.swift ├── Settings │ ├── ChangeCurrency │ │ ├── Coordinator │ │ │ └── ChangeCurrencyCoordinator.swift │ │ ├── ViewController │ │ │ ├── ChangeCurrencyViewController.swift │ │ │ ├── CurrencyTableViewCell.swift │ │ │ └── CurrencyTableViewCellViewModel.swift │ │ └── ViewModel │ │ │ └── ChangeCurrencyViewModel.swift │ ├── ContactUsEmailResolver.swift │ ├── Coordinators │ │ ├── CheckTransactionStateCoordinator.swift │ │ ├── ClearDappBrowserCacheCoordinator.swift │ │ ├── ConsoleCoordinator.swift │ │ ├── EnabledServersCoordinator.swift │ │ ├── ExportJsonKeystoreCoordinator.swift │ │ ├── HelpUsCoordinator.swift │ │ ├── LocalesCoordinator.swift │ │ ├── PingInfuraCoordinator.swift │ │ ├── SaveCustomRpcCoordinator.swift │ │ ├── ServersCoordinator.swift │ │ ├── SettingsCoordinator.swift │ │ └── SupportCoordinator.swift │ ├── CustomRpcTableViewSection.swift │ ├── SaveCustomRpcBrowseDataController.swift │ ├── TableViewSection.swift │ ├── ViewControllers │ │ ├── AdvancedSettingsViewController.swift │ │ ├── AnalyticsViewController.swift │ │ ├── CheckTransactionStateViewController.swift │ │ ├── ChooseSendPrivateTransactionsProviderViewController.swift │ │ ├── CollectUsersEmailViewController.swift │ │ ├── ConsoleViewController.swift │ │ ├── CrashReporterViewController.swift │ │ ├── EnabledServersViewController.swift │ │ ├── ExportJsonKeystoreFileViewController.swift │ │ ├── ExportJsonKeystorePasswordViewController.swift │ │ ├── LocalesViewController.swift │ │ ├── SaveCustomRpcBrowseViewController.swift │ │ ├── SaveCustomRpcManualEntryViewController.swift │ │ ├── SaveCustomRpcOverallViewController.swift │ │ ├── ServersViewController.swift │ │ ├── SettingsViewController.swift │ │ ├── SupportViewController.swift │ │ ├── ToolsViewController.swift │ │ └── WellDoneViewController.swift │ ├── ViewModels │ │ ├── AdvancedSettingsViewModel.swift │ │ ├── AnalyticsViewModel.swift │ │ ├── CheckTransactionStateViewModel.swift │ │ ├── ChooseSendPrivateTransactionsProviderViewModel.swift │ │ ├── ConsoleViewModel.swift │ │ ├── CrashReporterViewModel.swift │ │ ├── EnabledServersViewModel.swift │ │ ├── ExportJsonKeystoreFileViewModel.swift │ │ ├── ExportJsonKeystorePasswordViewModel.swift │ │ ├── HelpUsViewModel.swift │ │ ├── LocaleViewModel.swift │ │ ├── LocalesViewModel.swift │ │ ├── ServerViewModel.swift │ │ ├── ServersViewModel.swift │ │ ├── SettingTableViewCellViewModel.swift │ │ ├── SettingViewHeaderViewModel.swift │ │ ├── SettingsViewModel.swift │ │ ├── SupportViewModel.swift │ │ ├── SwitchTableViewCellViewModel.swift │ │ └── ToolsViewModel.swift │ └── Views │ │ ├── EmptyTableView.swift │ │ ├── EnableServersHeaderView.swift │ │ ├── ExportJsonKeystoreFileView.swift │ │ ├── LocaleViewCell.swift │ │ ├── RPCDisplaySelectableTableViewCell.swift │ │ ├── SaveCustomRpcBrowseView.swift │ │ ├── SaveCustomRpcManualEntryView.swift │ │ ├── SaveCustomRpcOverallView.swift │ │ ├── SelectionTableViewCell.swift │ │ ├── ServerViewCell.swift │ │ ├── SettingTableViewCell.swift │ │ ├── SettingViewHeader.swift │ │ ├── SwitchTableViewCell.swift │ │ ├── SwitchView.swift │ │ └── WalletSecurityLevelIndicator.swift ├── Swap │ ├── SelectServiceToSwapCoordinator.swift │ ├── Swap │ │ ├── SwapTokensCoordinator.swift │ │ ├── SwapTokensViewController.swift │ │ ├── ViewModels │ │ │ ├── SwapQuoteDetailsViewModel.swift │ │ │ ├── SwapQuoteFieldViewModel.swift │ │ │ ├── SwapStepViewModel.swift │ │ │ ├── SwapStepsViewModel.swift │ │ │ └── SwapTokensViewModel.swift │ │ └── Views │ │ │ ├── SwapQuoteDetailsView.swift │ │ │ ├── SwapQuoteFieldView.swift │ │ │ ├── SwapStepView.swift │ │ │ └── SwapStepsView.swift │ ├── SwapOptions │ │ ├── Coordinator │ │ │ └── SwapOptionsCoordinator.swift │ │ ├── ViewControllers │ │ │ └── SwapOptionsViewController.swift │ │ ├── ViewModels │ │ │ ├── EditableSlippageViewModel.swift │ │ │ ├── SelectableSlippageViewModel.swift │ │ │ ├── SlippageViewModel.swift │ │ │ ├── SwapOptionsHeaderViewModel.swift │ │ │ └── SwapOptionsViewModel.swift │ │ └── Views │ │ │ ├── EditableSlippageView.swift │ │ │ ├── SelectableSlippageView.swift │ │ │ ├── SlippageView.swift │ │ │ └── SwapOptionsHeaderView.swift │ ├── SwapRoutes │ │ ├── ViewControllers │ │ │ └── SelectSwapRouteViewController.swift │ │ ├── ViewModels │ │ │ ├── SelectSwapRouteViewModel.swift │ │ │ ├── SelectableSwapRouteTableViewCellViewModel.swift │ │ │ └── SwapRouteSummaryViewModel.swift │ │ └── Views │ │ │ ├── SelectableSwapRouteTableViewCell.swift │ │ │ └── SwapRouteSummaryView.swift │ └── SwapTools │ │ ├── ViewControllers │ │ └── SelectSwapToolViewController.swift │ │ ├── ViewModels │ │ ├── SelectSwapToolViewModel.swift │ │ ├── SelectableSwapToolTableViewCellViewModel.swift │ │ ├── SelectedSwapToolsCollectionViewModel.swift │ │ └── SwapToolCollectionViewCellViewModel.swift │ │ └── Views │ │ ├── SelectableSwapToolTableViewCell.swift │ │ ├── SelectedSwapToolsCollectionView.swift │ │ └── SwapToolCollectionViewCell.swift ├── TokenScript │ ├── Coordinators │ │ └── TokenScriptOverridesCoordinator.swift │ ├── FetchTokenScriptFiles.swift │ ├── ViewControllers │ │ └── TokenScriptOverridesViewController.swift │ ├── ViewModels │ │ ├── AssetDefinitionsOverridesViewCellViewModel.swift │ │ └── TokenScriptOverridesViewModel.swift │ └── Views │ │ └── TokenScriptOverridesViewCell.swift ├── Tokens │ ├── Collectibles │ │ ├── Coordinators │ │ │ ├── NFTAssetSelectionCoordinator.swift │ │ │ └── NFTCollectionCoordinator.swift │ │ ├── ViewControllers │ │ │ ├── NFTAssetListViewController.swift │ │ │ ├── NFTAssetSelectionViewController.swift │ │ │ ├── NFTAssetViewController.swift │ │ │ └── NFTCollectionViewController.swift │ │ ├── ViewModels │ │ │ ├── Erc875NonFungibleRowViewModel.swift │ │ │ ├── FungibleTokenHeaderViewModel.swift │ │ │ ├── NFTAssetListViewModel.swift │ │ │ ├── NFTAssetSelectionViewModel.swift │ │ │ ├── NFTAssetViewModel.swift │ │ │ ├── NFTAssetsPageViewModel.swift │ │ │ ├── NFTCollectionInfoPageViewModel.swift │ │ │ ├── NFTCollectionViewModel.swift │ │ │ ├── NonFungibleRowViewModel.swift │ │ │ ├── NonFungibleTraitViewModel.swift │ │ │ ├── SelectableNFTAssetContainerViewModel.swift │ │ │ ├── SingleNFTAssetSelectionViewModel.swift │ │ │ └── TokenAttributeViewModel.swift │ │ └── Views │ │ │ ├── ContainerCollectionViewCell.swift │ │ │ ├── Erc875NonFungibleRowView.swift │ │ │ ├── FungibleTokenHeaderView.swift │ │ │ ├── NFTAssetSelectionSectionHeaderView.swift │ │ │ ├── NFTAssetsPageView.swift │ │ │ ├── NFTCollectionInfoPageView.swift │ │ │ ├── NFTPreviewView.swift │ │ │ ├── NonFungibleRowView.swift │ │ │ ├── NonFungibleTraitView.swift │ │ │ ├── SelectableNFTAssetTableViewCell.swift │ │ │ ├── SingleNFTAssetSelectionView.swift │ │ │ ├── TokenAttributeView.swift │ │ │ ├── TokenHistoryChartView.swift │ │ │ ├── TokenHistoryPeriodSelectorView.swift │ │ │ ├── TokenInfoHeaderView.swift │ │ │ └── TokenPagesContainerView.swift │ ├── Coordinators │ │ ├── AddHideTokensCoordinator.swift │ │ ├── ClaimPaidOrderCoordinator.swift │ │ ├── FungibleTokenCoordinator.swift │ │ ├── NewTokenCoordinator.swift │ │ ├── SelectTokenCoordinator.swift │ │ ├── SingleChainTokenCoordinator.swift │ │ └── TokensCoordinator.swift │ ├── NftAssetDisplayHelper.swift │ ├── NftCollectionDisplayHelper.swift │ ├── OpenSeaNonFungibleTokenDisplayHelper.swift │ ├── TokenCardTableViewCellFactory.swift │ ├── TokenScriptOverrides+Extensions.swift │ ├── UiTweaks.swift │ ├── ViewControllers │ │ ├── AddHideTokensViewController.swift │ │ ├── AttestationViewController.swift │ │ ├── AttestationsViewController.swift │ │ ├── FungibleTokenDetailsViewController.swift │ │ ├── FungibleTokenTabViewController.swift │ │ ├── NewTokenViewController.swift │ │ ├── SelectTokenViewController.swift │ │ ├── TokenCardRedemptionInfoViewController.swift │ │ ├── TokenInstanceActionViewController.swift │ │ ├── TokensViewController.swift │ │ └── VerifiableStatusViewController.swift │ ├── ViewModels │ │ ├── AddHideTokenSectionHeaderViewModel.swift │ │ ├── AddHideTokensViewModel.swift │ │ ├── AttestationViewCellViewModel.swift │ │ ├── BlockchainTagLabelViewModel.swift │ │ ├── EthTokenViewCellViewModel.swift │ │ ├── FungibleTokenDetailsViewModel.swift │ │ ├── FungibleTokenTabViewModel.swift │ │ ├── FungibleTokenViewCellViewModel.swift │ │ ├── NewTokenViewModel.swift │ │ ├── NonFungibleTokenViewCellViewModel.swift │ │ ├── OpenSea │ │ │ ├── OpenSeaNonFungibleTokenAttributeCellViewModel.swift │ │ │ ├── OpenSeaNonFungibleTokenCardRowViewModel.swift │ │ │ └── OpenSeaNonFungibleTokenViewCellViewModel.swift │ │ ├── PopularTokenViewCellViewModel.swift │ │ ├── SelectTokenViewModel.swift │ │ ├── ShowAddHideTokensViewModel.swift │ │ ├── TokenCardWebViewModel.swift │ │ ├── TokenHistoryChartViewModel.swift │ │ ├── TokenInstanceActionButton.swift │ │ ├── TokensViewModel.swift │ │ └── WalletTokenViewCellViewModel.swift │ └── Views │ │ ├── ActiveWalletSessionView.swift │ │ ├── AddHideTokenSectionHeaderView.swift │ │ ├── AddHideTokensView.swift │ │ ├── AttestationViewCell.swift │ │ ├── EthTokenViewCell.swift │ │ ├── FungibleTokenViewCell.swift │ │ ├── NonFungibleTokenViewCell.swift │ │ ├── OpenSea │ │ ├── OpenSeaNonFungibleTokenCardRowView.swift │ │ ├── OpenSeaNonFungibleTokenTraitCell.swift │ │ └── OpenSeaNonFungibleTokenViewCell.swift │ │ ├── PopularTokenViewCell.swift │ │ ├── RequestSignMessageDelegate.swift │ │ ├── TestnetTokenInfoView.swift │ │ ├── TokenCardWebView.swift │ │ ├── TokenRowView.swift │ │ ├── TokensCardViewControllerTitleHeader.swift │ │ ├── TokensViewControllerTableViewHeader.swift │ │ ├── TokensViewControllerTableViewSectionHeader.swift │ │ └── WalletTokenViewCell.swift ├── Transactions │ ├── Coordinators │ │ ├── ReplaceTransactionCoordinator.swift │ │ └── TransactionsCoordinator.swift │ ├── ViewControllers │ │ ├── TransactionDetailsViewController.swift │ │ └── TransactionsViewController.swift │ ├── ViewModels │ │ ├── TransactionDetailsViewModel.swift │ │ ├── TransactionRowCellViewModel.swift │ │ ├── TransactionRowViewModel.swift │ │ ├── TransactionViewModel.swift │ │ └── TransactionsViewModel.swift │ └── Views │ │ ├── TransactionFieldView.swift │ │ ├── TransactionHeaderView.swift │ │ ├── TransactionSectionHeaderView.swift │ │ └── TransactionTableViewCell.swift ├── Transfer │ ├── Collectibles │ │ ├── Coordinators │ │ │ └── TransferCollectiblesCoordinator.swift │ │ ├── ViewControllers │ │ │ └── SendSemiFungibleTokenViewController.swift │ │ └── ViewModels │ │ │ └── SendSemiFungibleTokenViewModel.swift │ ├── Coordinators │ │ ├── NoViewCardTokenScriptActionCoordinator.swift │ │ ├── PaymentCoordinator.swift │ │ ├── RequestCoordinator.swift │ │ ├── SendCoordinator.swift │ │ ├── SignMessageCoordinator.swift │ │ ├── TransactionConfirmationCoordinator.swift │ │ ├── TransactionInProgressCoordinator.swift │ │ └── TransferNFTCoordinator.swift │ ├── ViewControllers │ │ ├── ChooseTokenCardTransferModeViewController.swift │ │ ├── ConfigureTransactionViewController.swift │ │ ├── EditTransactionViewController.swift │ │ ├── GenerateTransferMagicLinkViewController.swift │ │ ├── RequestViewController.swift │ │ ├── SendTransactionErrorViewController.swift │ │ ├── SendViewController.swift │ │ ├── SetTransferTokensCardExpiryDateViewController.swift │ │ ├── SignatureConfirmationDetailsViewController.swift │ │ ├── SignatureConfirmationViewController.swift │ │ ├── TransactionConfirmationViewController.swift │ │ ├── TransactionInProgressViewController.swift │ │ └── TransferTokensCardQuantitySelectionViewController.swift │ ├── ViewModels │ │ ├── ChooseTokenCardTransferModeViewModel.swift │ │ ├── ConfigureTransactionViewModel.swift │ │ ├── ConfirmButtonViewModel.swift │ │ ├── ConfirmSignMessageTableViewCellViewModel.swift │ │ ├── ConfirmationHeaderViewModel.swift │ │ ├── EditEip1559GasFeeViewModel.swift │ │ ├── EditLegacyGasPriceViewModel.swift │ │ ├── EditTransactionViewModel.swift │ │ ├── Eip1559GasSpeedViewModel.swift │ │ ├── GasSpeedTableViewHeaderViewModel.swift │ │ ├── GasSpeedViewModelType.swift │ │ ├── LegacyGasSpeedViewModel.swift │ │ ├── RequestViewModel.swift │ │ ├── SendTransactionErrorViewModel.swift │ │ ├── SendViewModel.swift │ │ ├── SendViewSectionHeaderViewModel.swift │ │ ├── SetTransferTokensCardExpiryDateViewModel.swift │ │ ├── SignatureConfirmationConfirmationViewModel.swift │ │ ├── SignatureConfirmationDetailsViewModel.swift │ │ ├── SlidableTextFieldViewModel.swift │ │ ├── TextFieldViewModel.swift │ │ ├── TransactionConfirmation │ │ │ ├── CancelTransactionViewModel.swift │ │ │ ├── ClaimPaidErc875MagicLinkViewModel.swift │ │ │ ├── DappOrWalletConnectTransactionViewModel.swift │ │ │ ├── SectionProtocol.swift │ │ │ ├── SendFungiblesTransactionViewModel.swift │ │ │ ├── SendNftTransactionViewModel.swift │ │ │ ├── SpeedupTransactionViewModel.swift │ │ │ ├── SwapTransactionViewModel.swift │ │ │ └── TokenScriptTransactionViewModel.swift │ │ ├── TransactionConfirmationTableHeaderViewModel.swift │ │ ├── TransactionConfirmationViewModel.swift │ │ ├── TransactionInProgressViewModel.swift │ │ ├── TransferTokensCardQuantitySelectionViewModel.swift │ │ ├── TypedDataViewModel.swift │ │ └── UpdateInViewModel.swift │ └── Views │ │ ├── ActivityIndicatorControl.swift │ │ ├── ConfirmSignMessageTableViewCell.swift │ │ ├── ConfirmationHeaderView.swift │ │ ├── EditEip1559GasFeeView.swift │ │ ├── EditLegacyGasPriceView.swift │ │ ├── GasSpeedTableViewHeaderView.swift │ │ ├── GasSpeedView.swift │ │ ├── ScrollableStackView.swift │ │ ├── SelfResizedTextView.swift │ │ ├── SendViewSectionHeader.swift │ │ ├── SlidableTextField.swift │ │ ├── TransactionConfirmationHeaderView.swift │ │ ├── TransactionConfirmationRowDescriptionView.swift │ │ ├── TransactionConfirmationRowInfoView.swift │ │ ├── TransitionButton.swift │ │ ├── TypedDataView.swift │ │ └── UpdateInView.swift ├── Types │ └── ImportedTypes.swift ├── Wallet │ ├── Coordinators │ │ ├── BackupSeedPhraseCoordinator.swift │ │ ├── ElevateWalletSecurityCoordinator.swift │ │ ├── EnterPasswordCoordinator.swift │ │ ├── InitialWalletCreationCoordinator.swift │ │ ├── ShowSeedPhraseCoordinator.swift │ │ └── WalletCoordinator.swift │ ├── Models │ │ ├── ActiveWalletViewModel.swift │ │ └── InitialNetworkSelectionCollectionModel.swift │ ├── Types │ │ ├── ImportSelectionType.swift │ │ ├── ImportWalletTab.swift │ │ └── WalletEntryPoint.swift │ ├── ViewControllers │ │ ├── CreateInitialWalletViewController.swift │ │ ├── ElevateWalletSecurityViewController.swift │ │ ├── EnterKeystorePasswordViewController.swift │ │ ├── ImportWalletViewController.swift │ │ ├── KeystoreBackupIntroductionViewController.swift │ │ ├── RenameWalletViewController.swift │ │ ├── SeedPhraseBackupIntroductionViewController.swift │ │ ├── ShowSeedPhraseIntroductionViewController.swift │ │ ├── ShowSeedPhraseViewController.swift │ │ └── VerifySeedPhraseViewController.swift │ ├── ViewModels │ │ ├── CreateInitialWalletViewModel.swift │ │ ├── ElevateWalletSecurityViewModel.swift │ │ ├── EnterKeystorePasswordViewModel.swift │ │ ├── EnterPasswordViewModel.swift │ │ ├── ImportWalletViewModel.swift │ │ ├── KeystoreBackupIntroductionViewModel.swift │ │ ├── RenameWalletViewModel.swift │ │ ├── SeedPhraseBackupIntroductionViewModel.swift │ │ ├── SeedPhraseCellViewModel.swift │ │ ├── SeedPhraseCollectionViewModel.swift │ │ ├── ShowSeedPhraseIntroductionViewModel.swift │ │ ├── ShowSeedPhraseViewModel.swift │ │ └── VerifySeedPhraseViewModel.swift │ └── Views │ │ ├── CollectionViewLeftAlignedFlowLayout.swift │ │ ├── SeedPhraseCell.swift │ │ ├── SeedPhraseCollectionView.swift │ │ ├── SeedPhraseSuggestionViewCell.swift │ │ ├── WordCollectionViewCell.swift │ │ └── WordCollectionViewCell.xib ├── WalletConnect │ ├── CAIP10AccountProvidable.swift │ ├── Controllers │ │ ├── AcceptAuthRequestViewController.swift │ │ ├── AcceptProposalViewController.swift │ │ ├── SignMessageCoordinatorBridgeToPromise.swift │ │ ├── TransactionConfirmationCoordinatorBridgeToPromise.swift │ │ └── TransactionInProgressCoordinatorBridgeToPromise.swift │ ├── Coordinator │ │ ├── AcceptAuthRequestCoordinator.swift │ │ ├── AcceptAuthRequestCoordinatorBridgeToPromise.swift │ │ ├── AcceptProposalCoordinator.swift │ │ ├── AcceptProposalCoordinatorBridgeToPromise.swift │ │ ├── WalletConnectCoordinator.swift │ │ └── WalletConnectSessionCoordinator.swift │ ├── Providers │ │ ├── v1 │ │ │ ├── Types │ │ │ │ └── WalletConnectV1Session.swift │ │ │ ├── WalletConnectV1Client.swift │ │ │ ├── WalletConnectV1Provider.swift │ │ │ └── WalletConnectV1Storage.swift │ │ └── v2 │ │ │ ├── WalletConnectV2Client.swift │ │ │ ├── WalletConnectV2Provider.swift │ │ │ ├── WalletConnectV2Storage.swift │ │ │ ├── WalletConnectV2Types.swift │ │ │ └── WalletConnectV2URI.swift │ ├── Types │ │ ├── JSONRPC_2_0.swift │ │ ├── RequestHandlerToAvoidMemoryLeak.swift │ │ ├── WalletConnect.swift │ │ ├── WalletConnectActionType.swift │ │ ├── WalletConnectEip712v3And4Validator.swift │ │ ├── WalletConnectRequestConverter.swift │ │ └── WalletConnectServerRequest.swift │ ├── View │ │ ├── TransactionConfirmationRPCServerInfoView.swift │ │ └── WalletConnectSessionCell.swift │ ├── ViewController │ │ ├── WalletConnectConnectionTimeoutViewController.swift │ │ ├── WalletConnectSessionViewController.swift │ │ └── WalletConnectSessionsViewController.swift │ ├── ViewModel │ │ ├── WalletConnectSessionCellViewModel.swift │ │ ├── WalletConnectSessionDetailsViewModel.swift │ │ └── WalletConnectSessionsViewModel.swift │ ├── WalletConnectProvider.swift │ └── WalletConnectServer.swift ├── WalletPupup │ ├── HighlightableView.swift │ ├── PupupAction.swift │ ├── WalletPupupCoordinator.swift │ ├── WalletPupupItemViewModel.swift │ ├── WalletPupupViewController.swift │ └── WalletPupupViewModel.swift └── WhatsNew │ ├── Coordinators │ ├── WhatsNewExperimentCoordinator.swift │ └── WhatsNewListingCoordinator.swift │ ├── Models │ └── WhatsNew.swift │ ├── ViewControllers │ └── WhatsNewListingViewController.swift │ ├── ViewModels │ └── WhatsNewViewModels.swift │ └── Views │ └── WhatsNewViews.swift ├── AlphaWalletABI.podspec ├── AlphaWalletAddress.podspec ├── AlphaWalletAttestation.podspec ├── AlphaWalletBrowser.podspec ├── AlphaWalletCore.podspec ├── AlphaWalletENS.podspec ├── AlphaWalletFoundation.podspec ├── AlphaWalletGoBack.podspec ├── AlphaWalletHardwareWallet.podspec ├── AlphaWalletLogger.podspec ├── AlphaWalletNotifications.podspec ├── AlphaWalletOpenSea.podspec ├── AlphaWalletSafariExtension ├── AlphaWalletSafariExtension.entitlements ├── Info.plist ├── Resources │ ├── BrowserStorageSubscription.js │ ├── _locales │ │ └── en │ │ │ └── messages.json │ ├── background.js │ ├── config.js │ ├── content.js │ ├── helpers.js │ ├── images │ │ ├── icon-128.png │ │ ├── icon-256.png │ │ ├── icon-48.png │ │ ├── icon-512.png │ │ ├── icon-64.png │ │ ├── icon-96.png │ │ ├── toolbar-icon-16.png │ │ ├── toolbar-icon-19.png │ │ ├── toolbar-icon-32.png │ │ └── toolbar-icon-38.png │ ├── manifest.json │ ├── popup.css │ ├── popup.html │ └── popup.js └── SafariWebExtensionHandler.swift ├── AlphaWalletShare ├── AlphaWalletShare.entitlements ├── Info.plist ├── ItemProviderValueResolver.swift ├── ItemType.swift └── ShareContextHandler.swift ├── AlphaWalletShareExtensionCore.podspec ├── AlphaWalletTests ├── Activitities │ └── FakeActivitiesService.swift ├── Browser │ └── Types │ │ └── BrowserURLParserTests.swift ├── Common │ └── Types │ │ └── ErrorTests.swift ├── Coordinators │ ├── ActiveWalletViewTests.swift │ ├── AppCoordinatorTests.swift │ ├── BackupCoordinatorTests.swift │ ├── ClaimOrderCoordinatorTests.swift │ ├── InitialWalletCreationCoordinatorTests.swift │ ├── LockCreatePasscodeCoordinatorTest.swift │ ├── LockEnterPasscodeCoordinatorTest.swift │ ├── MixpanelCoordinatorTests.swift │ ├── RequestCoordinatorTests.swift │ ├── SendCoordinatorTests.swift │ ├── SplashCoordinatorTests.swift │ ├── TokensCoordinatorTests.swift │ ├── TransactionCoordinatorTests.swift │ └── WalletCoordinatorTests.swift ├── Core │ ├── Base64DecoderTests.swift │ ├── Coordinators │ │ └── CheckDeviceCoordinatorTests.swift │ ├── Ethereum │ │ └── ABI │ │ │ └── DecodedFunctionCall+DecodeTests.swift │ ├── FakeDomainResolutionService.swift │ ├── Helpers │ │ ├── FakeBlockiesGenerator.swift │ │ ├── LogLargeNftJsonFilesTests.swift │ │ └── base64_image_example.txt │ ├── HostBasedTokenUriMapperTests.swift │ ├── PublisherToAsyncTests.swift │ ├── Types │ │ ├── AddressStorageTests.swift │ │ ├── AppTrackerTests.swift │ │ ├── Constants+CredentialsTests.swift │ │ ├── EIP712TypedDataTests.swift │ │ ├── EnvironmentTestCase.swift │ │ ├── FeaturesTestCase.swift │ │ ├── FunctionCallArgumentTests.swift │ │ ├── HDWalletTest.swift │ │ ├── RetryPublisherTests.swift │ │ ├── SessionTests.swift │ │ ├── TickerIdsFetcherTests.swift │ │ ├── TokenViewModelTests.swift │ │ ├── ValidatorsTests.swift │ │ └── tikersForTest.json │ └── ViewModels │ │ ├── ActiveWalletViewModelTests.swift │ │ └── ChainIdTests.swift ├── Ens │ ├── EnsRecordsStorageTests.swift │ └── EnsResolverTests.swift ├── EtherClient │ ├── EtherKeystoreTests.swift │ ├── KeysTests.swift │ ├── PasswordGeneratorTests.swift │ ├── RLPTests.swift │ └── TransactionSigningTests.swift ├── Extensions │ ├── IntExtensionsTests.swift │ ├── StringExtensionTests.swift │ ├── StringInsertSpaceBeforeCapitalsTestCase.swift │ └── UIColorExtensionTests.swift ├── Factories │ ├── Address.swift │ ├── ChainState.swift │ ├── Config.swift │ ├── DataTests.swift │ ├── FakeClaimOrderCoordinator.swift │ ├── FakeCoinTickersFetcher.swift │ ├── FakeEnsRecordsStorage.swift │ ├── FakeEtherKeystore.swift │ ├── FakeJailbreakChecker.swift │ ├── FakeLockProtocol.swift │ ├── FakeMultiWalletBalanceService.swift │ ├── FakeNavigationController.swift │ ├── FakeNftProvider.swift │ ├── FakeNotificationService.swift │ ├── FakeSessionsProvider.swift │ ├── FakeTokenGroupIdentifier.swift │ ├── FakeTokenScriptOverridesFileManager.swift │ ├── FakeTokenSwapper.swift │ ├── FakeTokenSwapperNetworkProvider.swift │ ├── FakeTokensDataStore.swift │ ├── FakeTransactionsStorage.swift │ ├── FakeUniversalLinkCoordinator.swift │ ├── FakeWalletAddressStore.swift │ ├── TestKeyStore.swift │ ├── Transaction.swift │ ├── UnconfirmedTransaction.swift │ ├── UserDefaults.swift │ ├── Wallet.swift │ └── WalletSession.swift ├── Foundation │ ├── EtherNumberFormatterTests.swift │ ├── FormatterTests.swift │ ├── QRCodeValueParserTests.swift │ ├── RepeatTests.swift │ └── StringFormatterTest.swift ├── HardwareWallet │ └── BCHardwareWalletTests.swift ├── Info.plist ├── Market │ ├── OrderSigningTests.swift │ ├── UniversalLinkHandlerTests.swift │ └── ViewControllers │ │ └── ImportTokenViewControllerTests.swift ├── Misc │ └── ScheduledToDoTest.swift ├── Models │ └── EtherTests.swift ├── Redeem │ ├── CreateRedeemTests.swift │ └── EventsRestTest.swift ├── Rpc Network │ └── RpcNetworkTestCase.swift ├── Sell │ └── ViewControllers │ │ └── EnterSellTokensCardPriceQuantityViewControllerTests.swift ├── Settings │ ├── ConfigTests.swift │ └── Coordinators │ │ ├── ServersCoordinatorTests.swift │ │ └── SettingsCoordinatorTests.swift ├── Snapshots │ └── ReferenceImage_64 │ │ ├── AlphaWalletTests.EnterSellTokensCardPriceQuantityViewControllerTests │ │ ├── testSellTokensCardPriceQuantityViewControllerDisplay_iPhone11_3_320x568@2x.png │ │ ├── testSellTokensCardPriceQuantityViewControllerDisplay_iPhone11_3_375x812@3x.png │ │ ├── testSellTokensCardPriceQuantityViewControllerDisplay_iPhone12_1_375x812@3x.png │ │ ├── testSellTokensCardPriceQuantityViewControllerShowsFiatEquivalentWhenUnitFiatPriceIsMoreThanOneThousand_iPhone11_3_320x568@2x.png │ │ └── testSellTokensCardPriceQuantityViewControllerShowsFiatEquivalentWhenUnitFiatPriceIsMoreThanOneThousand_iPhone11_3_375x812@3x.png │ │ ├── AlphaWalletTests.ImportTokenViewControllerTests │ │ ├── testImportTokenViewControllerDisplay_iPhone11_3_320x568@2x.png │ │ ├── testImportTokenViewControllerDisplay_iPhone11_3_375x812@3x.png │ │ └── testImportTokenViewControllerDisplay_iPhone12_1_375x812@3x.png │ │ └── AlphaWalletTests.TransferTokensCardQuantitySelectionViewControllerTests │ │ ├── testTransferTokensCardQuantitySelectionViewControllerCanBeCreated_iPhone11_3_320x568@2x.png │ │ ├── testTransferTokensCardQuantitySelectionViewControllerCanBeCreated_iPhone11_3_375x812@3x.png │ │ └── testTransferTokensCardQuantitySelectionViewControllerCanBeCreated_iPhone12_1_375x812@3x.png ├── TokenScriptClient │ ├── AssetDefinitionDiskBackingStoreWithOverridesTests.swift │ ├── AssetDefinitionStoreTests.swift │ ├── FakeEventsDataStore.swift │ ├── TokenScriptFilterParserTests.swift │ ├── TokenScriptSignatureVerifierTest.swift │ └── XMLHandlerTest.swift ├── Tokens │ ├── AddressAndRPCServerTests.swift │ ├── CachedERC1155ContractDictionaryTestCase.swift │ ├── Coordinators │ │ └── GetIsERC1155ContractCoordinatorTestCase.swift │ ├── Helpers │ │ ├── SmartContractHelperTests.swift │ │ ├── TokenAdaptorTest.swift │ │ └── TokenObjectTest.swift │ ├── RPCServerComparableTest.swift │ ├── TokenBalanceTests.swift │ ├── TokenGroupIdentifierTest.swift │ ├── TokensDataStoreTest.swift │ └── WalletFilterTest.swift ├── Transactions │ ├── Storage │ │ └── TransactionsStorageTests.swift │ └── ViewModels │ │ └── TransactionViewModelTests.swift ├── Transfer │ ├── Controllers │ │ └── TransactionConfiguratorTests.swift │ ├── TransactionConfiguratorTransactionsTests.swift │ ├── Types │ │ ├── GasPriceConfigurationTests.swift │ │ ├── TransactionTypeFromQrCodeTests.swift │ │ └── UnconfirmedTransactionTests.swift │ ├── ViewControllers │ │ ├── SendViewControllerTests.swift │ │ └── TransferTokensCardQuantitySelectionViewControllerTests.swift │ └── ViewModels │ │ └── RequestViewModelTests.swift ├── Utilities │ ├── Repeat.swift │ └── urlUtilities.swift ├── Verifications │ ├── StringValidatorRuleTestCases.swift │ └── StringValidatorTestCases.swift ├── ViewControllers │ ├── PaymentCoordinatorTests.swift │ └── SeedPhraseBackupIntroductionViewControllerTests.swift ├── Wallet │ ├── Coordinators │ │ └── EnterPasswordCoordinatorTests.swift │ └── Models │ │ └── InitialNetworkSelectionCollectionModelTestCase.swift └── modules │ ├── AlphaWalletAddress │ └── AlphaWalletAddressTests.swift │ ├── AlphaWalletAttestation │ └── AttestationTest.swift │ ├── AlphaWalletCore │ ├── StringTests.swift │ ├── URLTests.swift │ └── WebImageUrlTests.swift │ └── AlphaWalletFoundation │ ├── Browser │ └── Types │ │ └── DappCommandTests.swift │ ├── CoinTicker │ └── TickerIdsFetcher │ │ └── FileTokenEntriesProviderTests.swift │ ├── LocalPopularTokensCollectionTests.swift │ ├── Oneinch │ └── OneinchTests.swift │ ├── RPC │ └── CallSmartContractFunctionTests.swift │ ├── Ramp │ └── RampTests.swift │ ├── Tokens │ └── Logic │ │ └── Erc1155TokenIdsFetcherTests.swift │ └── Types │ ├── DeepLinkTests.swift │ └── RPCServerTests.swift ├── AlphaWalletTokenScript.podspec ├── AlphaWalletTrackAPICalls.podspec ├── AlphaWalletTrustWalletCoreExtensions.podspec ├── AlphaWalletWeb3.podspec ├── CONTRIBUTING.md ├── FUNDING.json ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── NotificationSubscribersStorage.swift ├── Podfile ├── Podfile.lock ├── README.md ├── crowdin.yml ├── dangerfile.js ├── docs ├── INTRODUCTION-CODE.md ├── data-source-chains.md ├── deep-link-wallet-api.md └── high-level-blocks.md ├── fastlane ├── Appfile ├── Deliverfile ├── Fastfile ├── Matchfile ├── Pluginfile ├── README.md ├── Snapfile ├── metadata │ ├── app_icon.jpg │ ├── copyright.txt │ ├── en-US │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── es-ES │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── review_information │ │ ├── demo_password.txt │ │ ├── demo_user.txt │ │ ├── email_address.txt │ │ ├── first_name.txt │ │ ├── last_name.txt │ │ ├── notes.txt │ │ └── phone_number.txt │ ├── ru │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ ├── secondary_second_sub_category.txt │ └── trade_representative_contact_information │ │ ├── address_line1.txt │ │ ├── city_name.txt │ │ ├── country.txt │ │ ├── is_displayed_on_app_store.txt │ │ ├── postal_code.txt │ │ ├── state.txt │ │ └── trade_name.txt └── screenshots │ ├── Framefile.json │ └── background.jpg ├── modules ├── AlphaWalletABI │ ├── AlphaWalletABI │ │ ├── ABI │ │ │ ├── ABI.swift │ │ │ ├── ERC1155.swift │ │ │ ├── ERC165.swift │ │ │ ├── ERC20.swift │ │ │ ├── ERC721.swift │ │ │ ├── ERC721Metadata.swift │ │ │ └── ERC875.swift │ │ ├── ABIEncoder.swift │ │ ├── AlphaWalletABI.h │ │ └── Types │ │ │ ├── ABIError.swift │ │ │ ├── ABIType.swift │ │ │ ├── ABIValue.swift │ │ │ ├── EIP712TypedData.swift │ │ │ ├── EthTypedData.swift │ │ │ └── Function.swift │ └── LICENSE ├── AlphaWalletAddress │ ├── .gitignore │ ├── AlphaWalletAddress │ │ ├── AddressStorage.swift │ │ ├── AddressStorageResolver.swift │ │ ├── AlphaWalletAddress.h │ │ ├── AlphaWalletAddress.swift │ │ ├── Extensions │ │ │ ├── Data+Extensions.swift │ │ │ └── EthereumAddress_fromEthereumAddressPod.swift │ │ └── ThirdPartyAddress+Extension.swift │ └── LICENSE ├── AlphaWalletAttestation │ ├── AlphaWalletAttestation │ │ ├── AlphaWalletAttestation.h │ │ ├── Attestation.swift │ │ ├── AttestationAttribute.swift │ │ ├── AttestationsStore.swift │ │ ├── EasAttestation.swift │ │ └── Logger.swift │ └── LICENSE ├── AlphaWalletBrowser │ ├── AlphaWalletBrowser │ │ ├── AlphaWalletBrowser.h │ │ ├── ScriptMessageProxy.swift │ │ ├── Types │ │ │ ├── BrowserMessageType.swift │ │ │ ├── DappCommand.swift │ │ │ ├── Method.swift │ │ │ ├── SetProperties.swift │ │ │ └── WithInjectableRpcUrl.swift │ │ └── WKWebViewConfiguration.swift │ └── LICENSE ├── AlphaWalletCore │ ├── .gitignore │ ├── AlphaWalletCore │ │ ├── AlphaWalletCore.h │ │ ├── Base64Decoder.swift │ │ ├── CryptoAddressValidator.swift │ │ ├── Extensions │ │ │ ├── Alamofire+Publishers.swift │ │ │ ├── Array+Extensions.swift │ │ │ ├── Collection+Extensions.swift │ │ │ ├── Data+Extensions.swift │ │ │ ├── Date+Extensions.swift │ │ │ ├── Dictionary+Extensions.swift │ │ │ ├── Int+Extensions.swift │ │ │ ├── PromiseKit+Extensions.swift │ │ │ ├── Publisher+Extensions.swift │ │ │ ├── RetryIf.swift │ │ │ ├── Sequence+Extensions.swift │ │ │ ├── String+Extensions.swift │ │ │ ├── StringProtocol+Extensions.swift │ │ │ ├── URL+Extensions.swift │ │ │ ├── UserDefaults+Extensions.swift │ │ │ └── View+Constraints.swift │ │ ├── Networking │ │ │ ├── NetworkService.swift │ │ │ └── ReachabilityManager.swift │ │ ├── Storage.swift │ │ ├── StorageType.swift │ │ ├── Storages │ │ │ ├── FileAddressStorage.swift │ │ │ └── InMemoryAddressStorage.swift │ │ ├── Types │ │ │ ├── AddressAndRPCServer.swift │ │ │ ├── AddressOrDomainName.swift │ │ │ ├── AtomicDictionary.swift │ │ │ ├── CastError.swift │ │ │ ├── Currency.swift │ │ │ ├── CustomRPC.swift │ │ │ ├── DecodeError.swift │ │ │ ├── FungibleAmount.swift │ │ │ ├── JsonRpcError.swift │ │ │ ├── Loadable.swift │ │ │ ├── RPCServer.swift │ │ │ ├── ServerDictionary.swift │ │ │ ├── Subscribable.swift │ │ │ ├── TokenId.swift │ │ │ ├── TokenInterfaceType.swift │ │ │ ├── TokenType.swift │ │ │ ├── WalletType.swift │ │ │ └── WebImageURL.swift │ │ └── Utils │ │ │ ├── attempt.swift │ │ │ ├── isRunningTests.swift │ │ │ └── tap.swift │ └── LICENSE ├── AlphaWalletENS │ ├── AlphaWalletENS │ │ ├── ABIs.swift │ │ ├── AlphaWalletENS.h │ │ ├── ENS.swift │ │ ├── Extensions │ │ │ ├── Address+Extensions.swift │ │ │ ├── Data+Extensions.swift │ │ │ └── String+Extensions.swift │ │ ├── Logger.swift │ │ └── Types │ │ │ ├── DomainNameLookupKey.swift │ │ │ ├── DomainNameRecord.swift │ │ │ ├── ENSError.swift │ │ │ └── ENSTextRecordKey.swift │ └── LICENSE ├── AlphaWalletFoundation │ ├── AlphaWalletFoundation │ │ ├── Activities │ │ │ ├── ActivitiesGenerator.swift │ │ │ ├── ActivitiesPipeLine.swift │ │ │ ├── ActivitiesService.swift │ │ │ ├── ActivityCollection.swift │ │ │ ├── ActivityRowModel.swift │ │ │ └── Types │ │ │ │ ├── ActivitiesFilterStrategy.swift │ │ │ │ └── ActivityOrTransactionInstance.swift │ │ ├── Alerts │ │ │ ├── PriceAlertDataStore.swift │ │ │ ├── PriceAlertService.swift │ │ │ └── Types │ │ │ │ └── PriceAlert.swift │ │ ├── Analytics │ │ │ ├── AnalyticsEventPropertyValue.swift │ │ │ ├── AnalyticsLogger.swift │ │ │ ├── AnalyticsServiceType.swift │ │ │ └── AnalyticsTypes.swift │ │ ├── Backup │ │ │ └── PromptBackup.swift │ │ ├── Blockies │ │ │ ├── BlockieGenerator.swift │ │ │ └── BlockiesImage.swift │ │ ├── BlockscanChat │ │ │ ├── BlockscanChat.swift │ │ │ └── BlockscanChatService.swift │ │ ├── Browser │ │ │ ├── Models │ │ │ │ ├── CheckEIP681Error.swift │ │ │ │ ├── Dapp.swift │ │ │ │ ├── EmptyDapps.swift │ │ │ │ └── SwitchChainRequestConfiguration.swift │ │ │ ├── Storage │ │ │ │ ├── BookmarksStore.swift │ │ │ │ └── HistoryStore.swift │ │ │ └── Types │ │ │ │ ├── Bookmark.swift │ │ │ │ ├── BrowserURLParser.swift │ │ │ │ ├── DappAction.swift │ │ │ │ ├── Favicon.swift │ │ │ │ ├── History.swift │ │ │ │ └── RequesterViewModel.swift │ │ ├── BuyToken │ │ │ ├── BuyTokenService.swift │ │ │ ├── CoinBase │ │ │ │ └── Coinbase.swift │ │ │ └── Ramp │ │ │ │ ├── Ramp.swift │ │ │ │ ├── RampAssetsResponse.swift │ │ │ │ └── RampNetworking.swift │ │ ├── CoinTicker │ │ │ ├── BaseCoinTickersFetcher.swift │ │ │ ├── CoinGecko │ │ │ │ ├── CoinGeckoCoinTickerNetworking.swift │ │ │ │ ├── CoinGeckoTickerIdsFetcher.swift │ │ │ │ └── CoinGeckoTickersFetcher.swift │ │ │ ├── CoinTickerNetworking.swift │ │ │ ├── CoinTickers.swift │ │ │ ├── CoinTickersStorage.swift │ │ │ ├── CurrencyService.swift │ │ │ ├── TickerIdsFetcher │ │ │ │ ├── AlphaWalletRemoteTickerIdsFetcher.swift │ │ │ │ ├── FileTokenEntriesProvider.swift │ │ │ │ ├── InMemoryTickerIdsFetcher.swift │ │ │ │ ├── RemoteTokenEntriesProvider.swift │ │ │ │ ├── TickerIdsFetcher.swift │ │ │ │ └── TokenEntriesProvider.swift │ │ │ ├── Types │ │ │ │ ├── AssignedCoinTickerIdObject.swift │ │ │ │ ├── CoinTicker.swift │ │ │ │ ├── CoinTickerObject.swift │ │ │ │ ├── CoinTickersFetcher.swift │ │ │ │ ├── CoinTickersProvider.swift │ │ │ │ ├── ContractAddressObject.swift │ │ │ │ ├── KnownTickerIdObject.swift │ │ │ │ ├── TickerId.swift │ │ │ │ ├── TickerIdFilter.swift │ │ │ │ ├── TickerIdObject.swift │ │ │ │ └── TokenMappedToTicker.swift │ │ │ └── tokens_2.json │ │ ├── ENS │ │ │ ├── DomainResolutionService.swift │ │ │ ├── ENSDelegateImpl.swift │ │ │ ├── EnsResolver.swift │ │ │ ├── EnsReverseResolver.swift │ │ │ ├── GetEnsTextRecord.swift │ │ │ ├── Storage │ │ │ │ └── DomainNameRecordsStorage.swift │ │ │ ├── Types │ │ │ │ ├── AddressOrDomainNameResolution.swift │ │ │ │ ├── DomainNameResolutionServiceType.swift │ │ │ │ └── EnsRecordObject.swift │ │ │ └── UnstoppableDomains │ │ │ │ ├── UnstoppableDomainsNetworkProvider.swift │ │ │ │ └── UnstoppableDomainsResolver.swift │ │ ├── EtherClient │ │ │ ├── BlockchainParams.swift │ │ │ ├── ChainState.swift │ │ │ ├── ChainStateSchedulerProvider.swift │ │ │ ├── EtherServiceRequest.swift │ │ │ ├── KeyStoreError.swift │ │ │ ├── Models │ │ │ │ ├── GetErc20Allowance.swift │ │ │ │ └── WaitTillTransactionCompleted.swift │ │ │ ├── PasswordGenerator.swift │ │ │ ├── RLP.swift │ │ │ ├── TransactionSigning.swift │ │ │ ├── Wallet.swift │ │ │ ├── Web3.swift │ │ │ └── bignumber.min.js │ │ ├── Ethereum │ │ │ ├── ContractMethod.swift │ │ │ └── Methods │ │ │ │ ├── AnyContractMethod.swift │ │ │ │ ├── Erc1155SafeBatchTransferFrom.swift │ │ │ │ ├── Erc1155SafeTransferFrom.swift │ │ │ │ ├── Erc20Approve.swift │ │ │ │ ├── Erc20Transfer.swift │ │ │ │ ├── Erc721SafeTransferFrom.swift │ │ │ │ ├── Erc875DropCurrency.swift │ │ │ │ ├── Erc875SpawnPassTo.swift │ │ │ │ ├── Erc875Trade.swift │ │ │ │ └── Erc875Transfer.swift │ │ ├── Export │ │ │ └── BackupState.swift │ │ ├── Extensions │ │ │ ├── Array.swift │ │ │ ├── Bundle.swift │ │ │ ├── Data.swift │ │ │ ├── Decimal.swift │ │ │ ├── Double.swift │ │ │ ├── MimeType+Extension.swift │ │ │ ├── NSAttributedString.swift │ │ │ ├── NSObject.swift │ │ │ ├── Publishers │ │ │ │ ├── AnyCancellable.swift │ │ │ │ ├── NotificationCenter+Publishers.swift │ │ │ │ ├── Promise+Publishers.swift │ │ │ │ └── Session+Publishers.swift │ │ │ ├── Session+PromiseKit.swift │ │ │ ├── String.swift │ │ │ ├── Task.swift │ │ │ ├── UIImage+tokenSymbolBackgroundImage.swift │ │ │ └── WKWebViewExtension.swift │ │ ├── Features │ │ │ └── Features.swift │ │ ├── Foundation │ │ │ ├── Eip681Parser.swift │ │ │ ├── Formatter.swift │ │ │ ├── QRCodeValueParser.swift │ │ │ ├── Repeat.swift │ │ │ ├── ServersProvidable.swift │ │ │ └── StringFormatter.swift │ │ ├── GasPriceEstimator │ │ │ ├── Eip1559GasPriceEstimator.swift │ │ │ ├── GasPriceEstimator.swift │ │ │ ├── LegacyGasPriceEstimator.swift │ │ │ └── Models │ │ │ │ ├── GasEstimates.swift │ │ │ │ ├── GasPriceEstimates.swift │ │ │ │ └── UnitConfiguration.swift │ │ ├── Helpers │ │ │ ├── Core.swift │ │ │ ├── CrashlyticsService.swift │ │ │ ├── Device.swift │ │ │ ├── Environment.swift │ │ │ ├── ExecuteOnceOnly.swift │ │ │ ├── RemoteLogger.swift │ │ │ ├── RestartQueueHandler.swift │ │ │ ├── StringValidator.swift │ │ │ ├── Validators │ │ │ │ ├── EthereumAddressValidator.swift │ │ │ │ ├── MnemonicInWordListValidator.swift │ │ │ │ ├── MnemonicLengthValidator.swift │ │ │ │ └── PrivateKeyValidator.swift │ │ │ └── WalletStorage.swift │ │ ├── Initializers │ │ │ ├── CleanupPasscode.swift │ │ │ ├── CleanupWallets.swift │ │ │ ├── DatabaseMigration.swift │ │ │ ├── Initializer.swift │ │ │ ├── MigrateToSupportEip1559Transactions.swift │ │ │ ├── MigrationInitializerForOneChainPerDatabase.swift │ │ │ ├── ReportUsersActiveChains.swift │ │ │ ├── ReportUsersWalletAddresses.swift │ │ │ └── SkipBackupFiles.swift │ │ ├── KeyManagement │ │ │ ├── DefaultsWalletAddressesStore.swift │ │ │ ├── EtherKeystore.swift │ │ │ ├── EthereumSigner.swift │ │ │ ├── JsonWalletAddressesStore.swift │ │ │ ├── Keystore.swift │ │ │ ├── LegacyFileBasedKeystore.swift │ │ │ ├── SecureEnclave.swift │ │ │ └── WalletAddressesStore.swift │ │ ├── Lock │ │ │ └── Lock.swift │ │ ├── Market │ │ │ ├── OrderHandler.swift │ │ │ └── UniversalLinkHandler.swift │ │ ├── NFT │ │ │ ├── Enjin │ │ │ │ ├── API.swift │ │ │ │ ├── Enjin.swift │ │ │ │ ├── EnjinBalance.swift │ │ │ │ ├── EnjinBalances.graphql │ │ │ │ ├── EnjinNetworking.swift │ │ │ │ ├── EnjinOauth.graphql │ │ │ │ ├── EnjinStorage.swift │ │ │ │ ├── EnjinToken.graphql │ │ │ │ ├── EnjinUserManagementInterceptor.swift │ │ │ │ └── schema.json │ │ │ ├── NFTProvider.swift │ │ │ └── OpenSea │ │ │ │ ├── OpenSea.swift │ │ │ │ └── Types │ │ │ │ ├── NonFungibleFromJson+Extension.swift │ │ │ │ ├── NonFungibleFromJsonTokenType+Extension.swift │ │ │ │ ├── OpenSeaNonFungible+Extension.swift │ │ │ │ └── OpenSeaNonFungibleTokenHandling.swift │ │ ├── RPC │ │ │ ├── BlockchainProvider.swift │ │ │ ├── BlockchainsProviderImplementation.swift │ │ │ └── CallSmartContractFunction.swift │ │ ├── Redeem │ │ │ ├── CreateRedeem.swift │ │ │ ├── Models │ │ │ │ ├── Arguments.swift │ │ │ │ └── Event.swift │ │ │ └── SignatureHelper.swift │ │ ├── Rpc Network │ │ │ ├── AvailableRpcNetwork.swift │ │ │ └── SaveCustomRpcManualEntryViewModel.swift │ │ ├── SendPrivateTransactions │ │ │ └── SendPrivateTransactionsProvider.swift │ │ ├── Services │ │ │ ├── Service.swift │ │ │ └── TickerIdsMatchLog.swift │ │ ├── Settings │ │ │ ├── Models │ │ │ │ ├── AddCustomChain.swift │ │ │ │ ├── AddCustomChainNetworking.swift │ │ │ │ ├── EnableChain.swift │ │ │ │ ├── LiveLocaleSwitcherBundle.swift │ │ │ │ ├── SaveCustomRpcOverallModel.swift │ │ │ │ └── SaveOperationType.swift │ │ │ └── Types │ │ │ │ ├── AppLocale.swift │ │ │ │ ├── BiometryAuthenticationType.swift │ │ │ │ ├── Config.swift │ │ │ │ ├── ConfigExplorer.swift │ │ │ │ ├── Constants+Credentials.swift │ │ │ │ ├── Constants.swift │ │ │ │ ├── RPCServerWithEnhancedSupport.swift │ │ │ │ ├── SearchEngine.swift │ │ │ │ └── SendInputErrors.swift │ │ ├── SwapToken │ │ │ ├── ArbitrumBridge.swift │ │ │ ├── HoneySwap │ │ │ │ ├── HoneySwap.swift │ │ │ │ └── HoneySwapERC20Token.swift │ │ │ ├── NativeSwap │ │ │ │ ├── Helpers │ │ │ │ │ ├── ApproveSwapProvider.swift │ │ │ │ │ ├── SwapOptionsConfigurator.swift │ │ │ │ │ ├── SwapTokenSelectionProvider.swift │ │ │ │ │ ├── TokenSwapperNetworking.swift │ │ │ │ │ └── TokenSwapperStore.swift │ │ │ │ ├── Swap.swift │ │ │ │ ├── SwapEstimate.swift │ │ │ │ ├── SwapPairs.swift │ │ │ │ ├── SwapQuote.swift │ │ │ │ ├── SwappableToken.swift │ │ │ │ ├── TokenSwapper.swift │ │ │ │ ├── Types │ │ │ │ │ ├── FromAndToTokens.swift │ │ │ │ │ ├── SwapError.swift │ │ │ │ │ ├── SwapPair.swift │ │ │ │ │ ├── SwapProvider.swift │ │ │ │ │ ├── SwapQuoteState.swift │ │ │ │ │ ├── SwapRoute.swift │ │ │ │ │ ├── SwapSlippage.swift │ │ │ │ │ ├── SwapTool.swift │ │ │ │ │ ├── TokenSelection.swift │ │ │ │ │ ├── TokenSwapperError.swift │ │ │ │ │ ├── TokenSwapperLoadingState.swift │ │ │ │ │ └── TokenToSwap.swift │ │ │ │ └── UnsignedSwapTransaction.swift │ │ │ ├── Oneinch │ │ │ │ ├── Oneinch.swift │ │ │ │ ├── OneinchAsset.swift │ │ │ │ └── OneinchNetworking.swift │ │ │ ├── QuickSwap │ │ │ │ └── QuickSwap.swift │ │ │ ├── SwapTokenUsing.swift │ │ │ ├── Uniswap │ │ │ │ ├── Uniswap.swift │ │ │ │ └── UniswapERC20Token.swift │ │ │ └── xDaiBridge.swift │ │ ├── TokenActions │ │ │ ├── SwapTokenNativeProvider.swift │ │ │ ├── SwapTokenProvider.swift │ │ │ ├── SwapTokenViaUrlProvider.swift │ │ │ └── TokenActionsService.swift │ │ ├── TokenScriptClient │ │ │ ├── EventFetcher.swift │ │ │ ├── EventForActivitiesFetcher.swift │ │ │ ├── EventSource.swift │ │ │ ├── EventSourceForActivities.swift │ │ │ ├── FetchTokenScriptFiles.swift │ │ │ ├── Models │ │ │ │ ├── Activity.swift │ │ │ │ ├── ActivityRowType.swift │ │ │ │ ├── EventsActivityDataStore.swift │ │ │ │ ├── NonActivityEventsDataStore.swift │ │ │ │ └── TokenScriptSupportable.swift │ │ │ ├── TokenScript+UI.swift │ │ │ └── TokenScriptOverridesFileManager.swift │ │ ├── Tokens │ │ │ ├── AlphaWalletTokensService.swift │ │ │ ├── ClientSideTokenSourceProvider.swift │ │ │ ├── Eip681UrlResolver.swift │ │ │ ├── EthCurrencyHelper.swift │ │ │ ├── Helpers │ │ │ │ ├── CachedERC1155ContractDictionary.swift │ │ │ │ ├── GetTokenType.swift │ │ │ │ ├── JsonFromTokenUri.swift │ │ │ │ ├── NonFungibleErc1155JsonBalanceFetcher.swift │ │ │ │ ├── TokenAdaptor.swift │ │ │ │ └── TokenInstanceActionAdapter.swift │ │ │ ├── JSON │ │ │ │ └── TokenGroupIdentifier.swift │ │ │ ├── Lists │ │ │ │ └── SpamTokens.swift │ │ │ ├── Logic │ │ │ │ ├── ContractDataDetector.swift │ │ │ │ ├── Erc1155BalanceFetcher.swift │ │ │ │ ├── Erc1155TokenIdsFetcher.swift │ │ │ │ ├── EtherscanCompatibleBlockchainExplorer.swift │ │ │ │ ├── GetContractDecimals.swift │ │ │ │ ├── GetContractName.swift │ │ │ │ ├── GetContractSymbol.swift │ │ │ │ ├── GetErc20Balance.swift │ │ │ │ ├── GetErc721Balance.swift │ │ │ │ ├── GetErc721ForTicketsBalance.swift │ │ │ │ ├── GetErc875Balance.swift │ │ │ │ ├── GetWalletName.swift │ │ │ │ ├── HistoryHelper.swift │ │ │ │ ├── IsErc1155Contract.swift │ │ │ │ ├── IsErc721Contract.swift │ │ │ │ ├── IsErc721ForTicketsContract.swift │ │ │ │ ├── IsErc875Contract.swift │ │ │ │ └── IsInterfaceSupported165.swift │ │ │ ├── Models │ │ │ │ └── NonFungibleContract.swift │ │ │ ├── PopularTokens │ │ │ │ ├── PopularTokensCollection.swift │ │ │ │ └── known_contract.json │ │ │ ├── TokenImageFetcher.swift │ │ │ ├── TokenRepairService.swift │ │ │ ├── TokenSourceProvider.swift │ │ │ ├── TokensAutodetector │ │ │ │ ├── ContractToImportStorage.swift │ │ │ │ ├── ImportToken.swift │ │ │ │ ├── PartnerTokensAutodetector.swift │ │ │ │ ├── TokensAutodetector.swift │ │ │ │ └── TransactedTokensAutodetector.swift │ │ │ ├── TokensFilter.swift │ │ │ ├── TokensProcessingPipeline.swift │ │ │ ├── TokensService.swift │ │ │ ├── Types │ │ │ │ ├── ChartHistory.swift │ │ │ │ ├── DelegateContract.swift │ │ │ │ ├── DeletedContract.swift │ │ │ │ ├── ErcToken.swift │ │ │ │ ├── EventActivity.swift │ │ │ │ ├── EventInstance.swift │ │ │ │ ├── HiddenContract.swift │ │ │ │ ├── NonFungibleFromTokenUri.swift │ │ │ │ ├── Token.swift │ │ │ │ ├── TokenBalance.swift │ │ │ │ ├── TokenHolder.swift │ │ │ │ ├── TokenInfo.swift │ │ │ │ ├── TokenInfoObject.swift │ │ │ │ ├── TokenObject.swift │ │ │ │ ├── TokenViewModel.swift │ │ │ │ ├── TokensDataStore.swift │ │ │ │ └── WalletFilter.swift │ │ │ ├── UniqueNonEmptyContracts.swift │ │ │ └── wrapWithCurrentValueSubject.swift │ │ ├── Transactions │ │ │ ├── ApiTransporter.swift │ │ │ ├── BlockchainExplorer.swift │ │ │ ├── BlockscoutBlockchainExplorer.swift │ │ │ ├── CombineTimer.swift │ │ │ ├── Covalent │ │ │ │ ├── Covalent.swift │ │ │ │ ├── CovalentBlockchainExplorer.swift │ │ │ │ └── CovalentToNativeTransactionMapper.swift │ │ │ ├── ErcTokenDetector.swift │ │ │ ├── EtherscanSingleChainTransactionProvider.swift │ │ │ ├── FallbackBlockchainExplorer.swift │ │ │ ├── Oklink │ │ │ │ ├── Oklink.swift │ │ │ │ └── OklinkNetworking.swift │ │ │ ├── PendingTransaction │ │ │ │ ├── PendingTransactionProvider.swift │ │ │ │ └── PendingTransactionSchedulerProvider.swift │ │ │ ├── Scheduler.swift │ │ │ ├── SingleChainTransactionProvider.swift │ │ │ ├── Storage │ │ │ │ ├── GasPriceObject.swift │ │ │ │ ├── PaginationStorage.swift │ │ │ │ ├── Transaction.swift │ │ │ │ └── TransactionsStorage.swift │ │ │ ├── TransactionBuilder.swift │ │ │ ├── TransactionProvider │ │ │ │ ├── TransactionPaginationFilter.swift │ │ │ │ ├── TransactionProvider.swift │ │ │ │ └── TransactionsPaginationStorage.swift │ │ │ ├── TransactionsService.swift │ │ │ └── Types │ │ │ │ ├── ArrayResponse.swift │ │ │ │ ├── Erc1155TokenTransferTransaction.swift │ │ │ │ ├── Erc20TokenTransferTransaction.swift │ │ │ │ ├── Erc721TokenIdsFetcher.swift │ │ │ │ ├── Erc721TokenTransferTransaction.swift │ │ │ │ ├── GetTransactionsRequest.swift │ │ │ │ ├── LocalizedOperation.swift │ │ │ │ ├── LocalizedOperationObject.swift │ │ │ │ ├── NormalTransaction.swift │ │ │ │ ├── OperationType.swift │ │ │ │ ├── TransactionDirection.swift │ │ │ │ ├── TransactionItemState.swift │ │ │ │ ├── TransactionRow.swift │ │ │ │ ├── TransactionValue.swift │ │ │ │ ├── TransactionsFilterStrategy.swift │ │ │ │ ├── TransactionsTracker.swift │ │ │ │ └── WalletDependencies.swift │ │ ├── Transfer │ │ │ ├── SignMaySendTransaction.swift │ │ │ ├── TransactionConfigurator.swift │ │ │ ├── Types │ │ │ │ ├── ConfigureTransaction.swift │ │ │ │ ├── ConfigureTransactionError.swift │ │ │ │ ├── ConfirmResult.swift │ │ │ │ ├── DAppRequster.swift │ │ │ │ ├── FungiblesTransactionAmount.swift │ │ │ │ ├── GasFeeWarning.swift │ │ │ │ ├── GasLimitConfiguration.swift │ │ │ │ ├── GasLimitWarning.swift │ │ │ │ ├── GasPriceConfiguration.swift │ │ │ │ ├── GasPriceWarning.swift │ │ │ │ ├── GasSpeed.swift │ │ │ │ ├── PaymentFlow.swift │ │ │ │ ├── RecipientResolver.swift │ │ │ │ ├── SendTransactionError.swift │ │ │ │ ├── SentTransaction.swift │ │ │ │ ├── TransactionType.swift │ │ │ │ └── UnconfirmedTransaction.swift │ │ │ └── eip1559 │ │ │ │ ├── Eip1559FeeOracle.swift │ │ │ │ ├── FeeHistory.swift │ │ │ │ ├── GetFeeHistory.swift │ │ │ │ └── SuggestEip1559.swift │ │ ├── Types │ │ │ ├── AlphaWalletAddress.swift │ │ │ ├── AppErrors.swift │ │ │ ├── AppTracker.swift │ │ │ ├── BalanceViewModel.swift │ │ │ ├── ChangeSet.swift │ │ │ ├── ConnectionUrl.swift │ │ │ ├── DeepLink.swift │ │ │ ├── DevelopmentForcedError.swift │ │ │ ├── Erc20BalanceViewModel.swift │ │ │ ├── Ether.swift │ │ │ ├── ImageOrWebImageUrl.swift │ │ │ ├── ImportedTypes.swift │ │ │ ├── NFTBalanceViewModel.swift │ │ │ ├── NativecryptoBalanceViewModel.swift │ │ │ ├── RPCServerOrAuto.swift │ │ │ ├── RPCServers.swift │ │ │ ├── RateLimiter.swift │ │ │ ├── RealmConfiguration.swift │ │ │ ├── RealmStore.swift │ │ │ ├── Requester.swift │ │ │ ├── RestartTaskQueue.swift │ │ │ ├── RunLoopThread.swift │ │ │ ├── Session.swift │ │ │ ├── SessionsProvider.swift │ │ │ ├── SignMessageValidator.swift │ │ │ ├── SortTokensParam.swift │ │ │ ├── TokenProviderType.swift │ │ │ ├── TokenUriMapSupportable.swift │ │ │ ├── UnsignedTransaction.swift │ │ │ ├── WalletBalance.swift │ │ │ ├── WalletConnectTransaction.swift │ │ │ ├── WalletSummary.swift │ │ │ ├── WeakRef.swift │ │ │ └── eip155URLDecoder.swift │ │ ├── UniversalLink │ │ │ ├── ImportMagicLinkNetworkService.swift │ │ │ ├── MagicLinkGenerator.swift │ │ │ ├── UniversalLinkInPasteboardService.swift │ │ │ └── UniversalLinkService.swift │ │ └── WalletBalance │ │ │ ├── TokenBalanceFetcher.swift │ │ │ ├── WalletBalanceFetcher.swift │ │ │ └── WalletBalanceService.swift │ └── LICENSE ├── AlphaWalletGoBack │ ├── AlphaWalletGoBack │ │ ├── AlphaWalletGoBack.h │ │ ├── GoBack.h │ │ └── GoBack.m │ └── LICENSE ├── AlphaWalletHardwareWallet │ ├── AlphaWalletHardwareWallet │ │ ├── AlphaWalletHardwareWallet.h │ │ ├── Error.swift │ │ ├── HardwareWallet.swift │ │ └── HardwareWalletFactory.swift │ └── LICENSE ├── AlphaWalletLogger │ ├── .gitignore │ ├── AlphaWalletLogger │ │ ├── AlphaWalletLogger.h │ │ └── Logger.swift │ └── LICENSE ├── AlphaWalletNotifications │ ├── AlphaWalletNotifications │ │ └── Notifications │ │ │ ├── BackgroundTaskService.swift │ │ │ ├── LocalNotification.swift │ │ │ ├── LocalNotificationDeliveryService.swift │ │ │ ├── LocalNotificationSource.swift │ │ │ ├── NotificationHandler.swift │ │ │ ├── NotificationSubscribersStorage.swift │ │ │ ├── PushNotificationsNetworking.swift │ │ │ ├── PushNotificationsService.swift │ │ │ ├── TransactionNotificationSource.swift │ │ │ ├── Types │ │ │ ├── Erc20TransferNotification.swift │ │ │ └── RemoteNotification.swift │ │ │ └── UNUserNotificationsService.swift │ └── LICENSE ├── AlphaWalletOpenSea │ ├── AlphaWalletOpenSea │ │ ├── CollectionKey.swift │ │ ├── Decoders │ │ │ └── OpenSeaAssetDecoder.swift │ │ ├── Logger.swift │ │ ├── NonFungibleFromJson.swift │ │ ├── NonFungibleFromJsonTokenType.swift │ │ ├── OpenSea.h │ │ ├── OpenSea.swift │ │ ├── OpenSeaNonFungible.swift │ │ ├── OpenSeaNonFungibleTrait.swift │ │ ├── Response.swift │ │ ├── Stats.swift │ │ └── Types │ │ │ ├── AssetCreator.swift │ │ │ └── Collection.swift │ └── LICENSE ├── AlphaWalletShareExtensionCore │ ├── AlphaWalletShareExtensionCore │ │ ├── AlphaWalletShareExtensionCore.h │ │ └── ShareContentAction.swift │ └── LICENSE ├── AlphaWalletTokenScript │ ├── AlphaWalletTokenScript │ │ ├── AlphaWalletTokenScript.h │ │ ├── AssetAttributeMethodCall.swift │ │ ├── AttestationVerificationStatus.swift │ │ ├── Extensions │ │ │ └── Address+Extensions.swift │ │ ├── Models │ │ │ ├── AssetAttribute.swift │ │ │ ├── AssetAttributeMapping.swift │ │ │ ├── AssetAttributeSyntax.swift │ │ │ ├── AssetAttributeSyntaxValue.swift │ │ │ ├── AssetAttributeToJavaScriptConvertor.swift │ │ │ ├── AssetAttributeToUserinterfaceConvertor.swift │ │ │ ├── AssetAttributeValueUsableAsFunctionArguments.swift │ │ │ ├── AssetAttributeValues.swift │ │ │ ├── AssetDefinitionBackingStore.swift │ │ │ ├── AssetDefinitionDiskBackingStore.swift │ │ │ ├── AssetDefinitionDiskBackingStoreWithOverrides.swift │ │ │ ├── AssetDefinitionInMemoryBackingStore.swift │ │ │ ├── AssetDefinitionNetworking.swift │ │ │ ├── AssetDefinitionStore.swift │ │ │ ├── AssetImplicitAttributes.swift │ │ │ ├── AssetInternalValue.swift │ │ │ ├── AttestationTypeValuePairToJavaScriptConvertor.swift │ │ │ ├── BaseTokenScriptFiles.swift │ │ │ ├── CallForAssetAttribute.swift │ │ │ ├── CallForAssetAttributeProvider.swift │ │ │ ├── Constants.swift │ │ │ ├── DirectoryContentsWatcher.swift │ │ │ ├── EventInstanceValue.swift │ │ │ ├── EventOrigin.swift │ │ │ ├── FunctionOrigin.swift │ │ │ ├── LaunchpadScriptURIChecker.swift │ │ │ ├── Origin.swift │ │ │ ├── ScriptUri.swift │ │ │ ├── TokenIdOrigin.swift │ │ │ ├── TokenInstanceAction.swift │ │ │ ├── TokenScript.swift │ │ │ ├── TokenScriptCard.swift │ │ │ ├── TokenScriptFileIndices.swift │ │ │ ├── TokenScriptFilterParser.swift │ │ │ ├── TokenScriptSelection.swift │ │ │ ├── TokenScriptSignatureVerifier.swift │ │ │ ├── TokenScriptToken.swift │ │ │ ├── Types │ │ │ │ ├── AddressAndOptionalRPCServer.swift │ │ │ │ ├── AssetFunctionCall.swift │ │ │ │ ├── FileContentsHash.swift │ │ │ │ ├── Filename.swift │ │ │ │ ├── GeneralisedTime.swift │ │ │ │ ├── RPCServerOrAny.swift │ │ │ │ ├── SchemaCheckError.swift │ │ │ │ ├── SolidityType.swift │ │ │ │ ├── TokenHolderProtocol.swift │ │ │ │ ├── TokenIdOrEvent.swift │ │ │ │ ├── TokenScriptFeatures.swift │ │ │ │ ├── TokenScriptLocalRefsSource.swift │ │ │ │ ├── TokenScriptResolver.swift │ │ │ │ ├── TokenScriptStatusResolver.swift │ │ │ │ ├── TokenScriptUnconfirmedTransaction.swift │ │ │ │ ├── TokenSelection.swift │ │ │ │ └── Web3Error.swift │ │ │ ├── UserEntryOrigin.swift │ │ │ ├── Web3.swift │ │ │ ├── XMLHandler+XPaths.swift │ │ │ ├── XMLHandler.swift │ │ │ └── XmlContext.swift │ │ └── Views │ │ │ └── TokenScriptWebView.swift │ └── LICENSE ├── AlphaWalletTrackAPICalls │ ├── .gitignore │ ├── AlphaWalletTrackAPICalls │ │ ├── AlphaWalletTrackAPICalls.h │ │ ├── Logger.swift │ │ └── TrackApiCalls.swift │ └── LICENSE ├── AlphaWalletTrustWalletCoreExtensions │ ├── AlphaWalletTrustWalletCoreExtensions │ │ ├── AlphaWalletTrustWalletCoreExtensions.h │ │ └── Extensions │ │ │ └── HDWallet+Extensions.swift │ └── LICENSE └── AlphaWalletWeb3 │ ├── AlphaWalletWeb3 │ ├── ABI │ │ ├── ABIDecoder.swift │ │ ├── ABIEncoder.swift │ │ ├── ABIRecordParser.swift │ │ ├── ABITypes.swift │ │ ├── RLP.swift │ │ └── TypesEncoder.swift │ ├── ABIv2 │ │ ├── ABIv2.swift │ │ ├── ABIv2Decoding.swift │ │ ├── ABIv2Elements.swift │ │ ├── ABIv2Encoding.swift │ │ ├── ABIv2ParameterTypes.swift │ │ ├── ABIv2Parsing.swift │ │ └── ABIv2TypeParser.swift │ ├── BlockchainCallable.swift │ ├── BlockchainsProvider.swift │ ├── Contract │ │ ├── ComparisonExtensions.swift │ │ ├── ContractABIv1.swift │ │ ├── ContractABIv2.swift │ │ ├── ContractProtocol.swift │ │ ├── EthereumFilterEncodingExtensions.swift │ │ └── EventFiltering.swift │ ├── ContractMethodCalls │ │ ├── AnyContractMethodCall.swift │ │ ├── ContractMethodCall.swift │ │ ├── Erc1155BalanceOfBatchMethodCall.swift │ │ ├── Erc20AllowanceMethodCall.swift │ │ ├── Erc20BalanceOfMethodCall.swift │ │ ├── Erc20DecimalsMethodCall.swift │ │ ├── Erc20NameMethodCall.swift │ │ ├── Erc20SymbolMethodCall.swift │ │ ├── Erc721BalanceOfMethodCall.swift │ │ ├── Erc721GetBalancesMethodCall.swift │ │ ├── Erc721TokenUriMethodCall.swift │ │ ├── Erc875BalanceOfMethodCall.swift │ │ ├── Erc875IsStormBirdContractMethodCall.swift │ │ ├── ScriptUriMethodCall.swift │ │ ├── ScriptUrisMethodCall.swift │ │ └── SupportsInterfaceMethodCall.swift │ ├── Extensions │ │ ├── Address+EthereumAddress.swift │ │ ├── Array+Extension.swift │ │ ├── CryptoExtensions.swift │ │ ├── Data+Extension.swift │ │ ├── Dictionary+Extension.swift │ │ ├── LibSecp256k1Extension.swift │ │ ├── NSRegularExpressionExtension.swift │ │ ├── NativeTypesEncoding+Extensions.swift │ │ └── String+Extension.swift │ ├── Promises │ │ ├── Promise+Batching.swift │ │ ├── Promise+Web3+Eth+Call.swift │ │ ├── Promise+Web3+Eth+EstimateGas.swift │ │ ├── Promise+Web3+Eth+GetAccounts.swift │ │ ├── Promise+Web3+Eth+GetBalance.swift │ │ ├── Promise+Web3+Eth+GetBlockByHash.swift │ │ ├── Promise+Web3+Eth+GetBlockByNumber.swift │ │ ├── Promise+Web3+Eth+GetBlockNumber.swift │ │ ├── Promise+Web3+Eth+GetGasPrice.swift │ │ ├── Promise+Web3+Eth+GetTransactionCount.swift │ │ ├── Promise+Web3+Eth+GetTransactionDetails.swift │ │ ├── Promise+Web3+Eth+GetTransactionReceipt.swift │ │ └── Promise+Web3+Eth+SendRawTransaction.swift │ ├── Requests │ │ ├── BalanceRequest.swift │ │ ├── BlockByNumberRequest.swift │ │ ├── BlockNumber.swift │ │ ├── ChainIdRequest.swift │ │ ├── EstimateGasRequest.swift │ │ ├── EthCalllRequest.swift │ │ ├── GasPriceRequest.swift │ │ ├── GetTransactionCountRequest.swift │ │ ├── GetTransactionRequest.swift │ │ ├── SendRawTransactionRequest.swift │ │ └── TransactionReceiptRequest.swift │ ├── Transaction │ │ ├── BloomFilter.swift │ │ └── Transaction.swift │ ├── Types │ │ ├── Balance.swift │ │ ├── Config.swift │ │ ├── DecodedFunctionCall+Decode.swift │ │ ├── DecodedFunctionCall.swift │ │ ├── EtherNumberFormatter.swift │ │ ├── EthereumTransaction.swift │ │ ├── EthereumUnit.swift │ │ ├── GasPrice.swift │ │ └── SignMessageType.swift │ ├── Utils │ │ ├── CcipRead.swift │ │ ├── EthereumAddress.swift │ │ └── Web3+Utils.swift │ └── Web3 │ │ ├── BlockParameter.swift │ │ ├── Web3+Contract.swift │ │ ├── Web3+EventParser.swift │ │ ├── Web3+HttpProvider.swift │ │ ├── Web3+JSONRPC.swift │ │ ├── Web3+Methods.swift │ │ ├── Web3+Options.swift │ │ ├── Web3+Personal.swift │ │ ├── Web3+Protocols.swift │ │ ├── Web3+Structures.swift │ │ ├── Web3+TransactionIntermediate.swift │ │ └── Web3.swift │ └── LICENSE ├── package.json ├── project.yml ├── resources ├── SwiftFormatFiles.xcfilelist ├── alphawallet-open-source-ethereum-wallet.jpg ├── app-store-badge.png ├── download-app-store-button.svg ├── iphone_cover.png ├── screens.png ├── share_facebook-btn.svg ├── share_linkedin-btn.svg ├── share_mail-btn.svg ├── share_reddit-btn.svg ├── share_telegram-btn.svg └── share_tweet-btn.svg ├── scripts └── compress_chains └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16.0.0 2 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.xcode-version: -------------------------------------------------------------------------------- 1 | 14.3 2 | -------------------------------------------------------------------------------- /AlphaWallet.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /AlphaWallet/Accounts/Coordinators/AccountsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Accounts/Coordinators/AccountsCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Accounts/ViewModels/AccountViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Accounts/ViewModels/AccountViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Accounts/ViewModels/AccountsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Accounts/ViewModels/AccountsViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Accounts/ViewModels/WalletSummaryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Accounts/ViewModels/WalletSummaryViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Accounts/Views/AccountViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Accounts/Views/AccountViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Accounts/Views/AccountViewTableSectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Accounts/Views/AccountViewTableSectionHeader.swift -------------------------------------------------------------------------------- /AlphaWallet/Accounts/Views/WalletSummaryTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Accounts/Views/WalletSummaryTableViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Accounts/Views/WalletSummaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Accounts/Views/WalletSummaryView.swift -------------------------------------------------------------------------------- /AlphaWallet/ActiveWalletCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/ActiveWalletCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/Coordinators/ActivitiesCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/Coordinators/ActivitiesCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/ViewModels/ActivitiesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/ViewModels/ActivitiesViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/ViewModels/ActivityCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/ViewModels/ActivityCellViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/ViewModels/ActivityViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/ViewModels/ActivityViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/ViewModels/DefaultActivityViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/ViewModels/DefaultActivityViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/Views/ActivitiesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/Views/ActivitiesView.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/Views/ActivityPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/Views/ActivityPageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/Views/ActivityStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/Views/ActivityStateView.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/Views/ActivityViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/Views/ActivityViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/Views/DefaultActivityItemViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/Views/DefaultActivityItemViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/Views/DefaultActivityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/Views/DefaultActivityView.swift -------------------------------------------------------------------------------- /AlphaWallet/Activities/Views/GroupActivityViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Activities/Views/GroupActivityViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/AddMultipleCustomRpc/AddMultipleCustomRpcModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/AddMultipleCustomRpc/AddMultipleCustomRpcModel.swift -------------------------------------------------------------------------------- /AlphaWallet/AddMultipleCustomRpc/AddMultipleCustomRpcView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/AddMultipleCustomRpc/AddMultipleCustomRpcView.swift -------------------------------------------------------------------------------- /AlphaWallet/Alerts/Coordinators/EditPriceAlertCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Alerts/Coordinators/EditPriceAlertCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Alerts/ViewModels/EditPriceAlertViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Alerts/ViewModels/EditPriceAlertViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Alerts/ViewModels/PriceAlertsPageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Alerts/ViewModels/PriceAlertsPageViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Alerts/Views/PriceAlertTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Alerts/Views/PriceAlertTableViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/AlphaWallet.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/AlphaWallet.entitlements -------------------------------------------------------------------------------- /AlphaWallet/AlphaWalletHelp/Views/ContactUsBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/AlphaWalletHelp/Views/ContactUsBannerView.swift -------------------------------------------------------------------------------- /AlphaWallet/AppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/AppCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/AppDelegate.swift -------------------------------------------------------------------------------- /AlphaWallet/Attestation/Attestation+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Attestation/Attestation+Extensions.swift -------------------------------------------------------------------------------- /AlphaWallet/Attestation/SmartLayerPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Attestation/SmartLayerPass.swift -------------------------------------------------------------------------------- /AlphaWallet/Backup/Coordinators/BackupCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Backup/Coordinators/BackupCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Backup/Coordinators/PromptBackupCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Backup/Coordinators/PromptBackupCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Backup/Views/PromptBackupWalletView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Backup/Views/PromptBackupWalletView.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Coordinators/DappBrowserCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Coordinators/DappBrowserCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Coordinators/ScanQRCodeCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Coordinators/ScanQRCodeCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/DappRequesterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/DappRequesterDelegate.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ScanQRCodeResolution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ScanQRCodeResolution.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewControllers/BrowserViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewControllers/BrowserViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/BookmarksViewViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/BookmarksViewViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/BrowserHistoryCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/BrowserHistoryCellViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/BrowserHomeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/BrowserHomeViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/BrowserViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/BrowserViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/DappButtonViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/DappButtonViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/DappViewCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/DappViewCellViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/Dapps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/Dapps.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/DappsHomeEmptyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/DappsHomeEmptyViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/DappsHomeHeaderViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/DappsHomeHeaderViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/EditBookmarkViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/EditBookmarkViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/HistoriesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/HistoriesViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/MyDappCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/MyDappCellViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/ViewModel/SwitchChainRequestViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/ViewModel/SwitchChainRequestViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/BookmarksHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/BookmarksHeaderView.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/BrowserErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/BrowserErrorView.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/BrowserHistoryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/BrowserHistoryCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/BrowserHistoryHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/BrowserHistoryHeaderView.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/BrowserHomeHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/BrowserHomeHeaderView.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/DappBrowserNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/DappBrowserNavigationBar.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/DappButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/DappButton.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/DappViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/DappViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/DappsHomeEmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/DappsHomeEmptyView.swift -------------------------------------------------------------------------------- /AlphaWallet/Browser/Views/MyDappCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Browser/Views/MyDappCell.swift -------------------------------------------------------------------------------- /AlphaWallet/BuyCrypto/BuyCryptoUsingThirdPartyCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/BuyCrypto/BuyCryptoUsingThirdPartyCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/BuyCrypto/SelectServiceToBuyCryptoCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/BuyCrypto/SelectServiceToBuyCryptoCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Coordinators/CheckDeviceCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Coordinators/CheckDeviceCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Coordinators/WalletApiCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Coordinators/WalletApiCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Helpers/DeviceChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Helpers/DeviceChecker.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Helpers/EmailList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Helpers/EmailList.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Helpers/FeedbackGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Helpers/FeedbackGenerator.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Helpers/JailbreakChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Helpers/JailbreakChecker.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Helpers/KingfisherImageFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Helpers/KingfisherImageFetcher.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Helpers/ScreenChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Helpers/ScreenChecker.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Initializers/ConfigureApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Initializers/ConfigureApp.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Initializers/ConfigureImageStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Initializers/ConfigureImageStorage.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Initializers/KeyboardInitializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Initializers/KeyboardInitializer.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/Analytics/AnalyticsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/Analytics/AnalyticsService.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/Analytics/MixpanelService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/Analytics/MixpanelService.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/Application.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/FirebaseReportService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/FirebaseReportService.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/KeyboardChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/KeyboardChecker.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/KingfisherImageCacheStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/KingfisherImageCacheStorage.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/LaunchOptionsHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/LaunchOptionsHandler.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/MediaContentDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/MediaContentDownloader.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/MediaContentNetworking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/MediaContentNetworking.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/SpamTokenService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/SpamTokenService.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/TokenActionsService+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/TokenActionsService+Extensions.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Services/UserActivityService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Services/UserActivityService.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Types/AppStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Types/AppStyle.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Types/CanOpenContractWebPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Types/CanOpenContractWebPage.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Types/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Types/Configuration.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Types/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Types/Constants.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Types/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Types/Coordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Types/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Types/Error.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Types/InputError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Types/InputError.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Types/KeychainStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Types/KeychainStorage.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Types/ServiceProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Types/ServiceProvider.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewControllers/ModalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewControllers/ModalViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewControllers/PromptViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewControllers/PromptViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewControllers/TopTabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewControllers/TopTabBarViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewModels/AcceptAuthRequestViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewModels/AcceptAuthRequestViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewModels/AcceptDeepLinkViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewModels/AcceptDeepLinkViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewModels/AcceptProposalViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewModels/AcceptProposalViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewModels/DappRequesterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewModels/DappRequesterViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewModels/DeepLinkRequesterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewModels/DeepLinkRequesterViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewModels/DropDownViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewModels/DropDownViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewModels/GasViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewModels/GasViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/ViewModels/PromptViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/ViewModels/PromptViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/AVPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/AVPlayerView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/AddressOrEnsNameLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/AddressOrEnsNameLabel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/AddressTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/AddressTextField.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/AmountTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/AmountTextField.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/BalloonMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/BalloonMarker.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/BlockchainTagLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/BlockchainTagLabel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/BlockieImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/BlockieImageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/BoxView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/BoxView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/Button.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ButtonsBar/ButtonsBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ButtonsBar/ButtonsBar.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ButtonsBar/ToolButtonsBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ButtonsBar/ToolButtonsBarView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ButtonsBar/VerticalButtonsBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ButtonsBar/VerticalButtonsBar.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ContainerTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ContainerTableViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ContainerViewWithShadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ContainerViewWithShadow.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/DateEntryField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/DateEntryField.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/DropDownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/DropDownView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/DummySearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/DummySearchView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/EditableSelectAssetAmountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/EditableSelectAssetAmountView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/EmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/EmptyView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/EnterAssetAmountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/EnterAssetAmountView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/GridStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/GridStackView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ImageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/LabeledServerImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/LabeledServerImageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/LoadingIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/LoadingIndicatorView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/LoadingView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/NavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/NavigationController.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/NumberStepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/NumberStepper.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/RoundedBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/RoundedBackground.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/RoundedEnsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/RoundedEnsView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/SelectAssetAmountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/SelectAssetAmountView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/SelectCurrencyButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/SelectCurrencyButton.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/SelfSizingPanelLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/SelfSizingPanelLayout.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/StateViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/StateViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/StatefulView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/StatefulView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/SuccessOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/SuccessOverlayView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/SvgImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/SvgImageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/TableViewDiffableDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/TableViewDiffableDataSource.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/TextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/TextField.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/TextView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/TimeEntryField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/TimeEntryField.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/TokenCardRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/TokenCardRowView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/TokenCardRowViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/TokenCardRowViewProtocol.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/TokenImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/TokenImageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/UIToolbar+Custom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/UIToolbar+Custom.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ViewModels/AVPlayerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ViewModels/AVPlayerViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ViewModels/AmountTextFieldPair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ViewModels/AmountTextFieldPair.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ViewModels/RoundedEnsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ViewModels/RoundedEnsViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ViewModels/SelectAssetViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ViewModels/SelectAssetViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ViewModels/TokenCardRowViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ViewModels/TokenCardRowViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ViewModels/WebImageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ViewModels/WebImageViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/ViewRounding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/ViewRounding.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/WebImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/WebImageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Common/Views/XYMarkerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Common/Views/XYMarkerView.swift -------------------------------------------------------------------------------- /AlphaWallet/Donations/CameraDonation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Donations/CameraDonation.swift -------------------------------------------------------------------------------- /AlphaWallet/Donations/Donations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Donations/Donations.swift -------------------------------------------------------------------------------- /AlphaWallet/Donations/WalletQrCodeDonation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Donations/WalletQrCodeDonation.swift -------------------------------------------------------------------------------- /AlphaWallet/ErrorLocalizations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/ErrorLocalizations.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/AlphaWalletAddress+UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/AlphaWalletAddress+UI.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/Collection+UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/Collection+UIView.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/Control+Publishers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/Control+Publishers.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/NSLayoutConstraintExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/NSLayoutConstraintExtension.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/RPCServer+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/RPCServer+Extensions.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIActivityViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIActivityViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIAlertController.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIApplication+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIApplication+Extensions.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIBarButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIBarButtonItem.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIButton.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UICollectionViewLayout+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UICollectionViewLayout+Extensions.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIColor.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIDevice.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIGestureRecognizer+Closure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIGestureRecognizer+Closure.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIImage.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIImageAsset+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIImageAsset+Extension.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIImageView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIImageView+Extension.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UINavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UINavigationController.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIResponder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIResponder.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UISearchBar+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UISearchBar+Extensions.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIStackView+Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIStackView+Array.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIStackView.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UITableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UITableView.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UITableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UITableViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UITextFieldAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UITextFieldAdditions.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UITraitCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UITraitCollection.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIView.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Extensions/UIViewInspectableEnhancements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Extensions/UIViewInspectableEnhancements.swift -------------------------------------------------------------------------------- /AlphaWallet/Features/FeaturesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Features/FeaturesTableViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Features/FeaturesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Features/FeaturesViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/GoogleService-Info.plist -------------------------------------------------------------------------------- /AlphaWallet/GoogleService-InfoTests.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/GoogleService-InfoTests.plist -------------------------------------------------------------------------------- /AlphaWallet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Info.plist -------------------------------------------------------------------------------- /AlphaWallet/Localization/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /AlphaWallet/Localization/en.lproj/howDoIGetMyMoneyInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/en.lproj/howDoIGetMyMoneyInfo.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/en.lproj/privacyPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/en.lproj/privacyPolicy.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/en.lproj/redeemInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/en.lproj/redeemInfo.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/en.lproj/sellInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/en.lproj/sellInfo.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/en.lproj/termsOfService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/en.lproj/termsOfService.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/en.lproj/whatIsEthereumInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/en.lproj/whatIsEthereumInfo.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /AlphaWallet/Localization/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /AlphaWallet/Localization/fi.lproj/howDoIGetMyMoneyInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/fi.lproj/howDoIGetMyMoneyInfo.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/fi.lproj/privacyPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/fi.lproj/privacyPolicy.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/fi.lproj/redeemInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/fi.lproj/redeemInfo.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/fi.lproj/sellInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/fi.lproj/sellInfo.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/fi.lproj/termsOfService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/fi.lproj/termsOfService.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/fi.lproj/whatIsEthereumInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/fi.lproj/whatIsEthereumInfo.html -------------------------------------------------------------------------------- /AlphaWallet/Localization/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /AlphaWallet/Localization/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /AlphaWallet/Localization/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Localization/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /AlphaWallet/Lock/ViewModels/LockCreatePasscodeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Lock/ViewModels/LockCreatePasscodeViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Lock/ViewModels/LockEnterPasscodeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Lock/ViewModels/LockEnterPasscodeViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Lock/ViewModels/LockViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Lock/ViewModels/LockViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Lock/Views/LockView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Lock/Views/LockView.swift -------------------------------------------------------------------------------- /AlphaWallet/Lock/Views/PasscodeCharacterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Lock/Views/PasscodeCharacterView.swift -------------------------------------------------------------------------------- /AlphaWallet/Market/Coordinators/ImportMagicLinkCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Market/Coordinators/ImportMagicLinkCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Market/ImportMagicLinkController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Market/ImportMagicLinkController.swift -------------------------------------------------------------------------------- /AlphaWallet/MyApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/MyApp.swift -------------------------------------------------------------------------------- /AlphaWallet/Protection/Coordinators/ProtectionCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Protection/Coordinators/ProtectionCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Protection/Coordinators/SplashCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Protection/Coordinators/SplashCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Redeem/ViewModels/TokenCardRedemptionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Redeem/ViewModels/TokenCardRedemptionViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/Network/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/Network/Contents.json -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/browse.imageset/browse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/browse.imageset/browse.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/close.imageset/close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/close.imageset/close.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/close.imageset/closex2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/close.imageset/closex2.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/cod.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/cod.colorset/Contents.json -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/copy.imageset/copy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/copy.imageset/copy.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/cronos.imageset/Cronos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/cronos.imageset/Cronos.svg -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/error.imageset/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/error.imageset/error.png -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/eth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/eth.imageset/Contents.json -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/eth.imageset/eth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/eth.imageset/eth.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/expand.imageset/expand.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/expand.imageset/expand.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/group.imageset/group.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/group.imageset/group.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/ioTeX.imageset/ioTeX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/ioTeX.imageset/ioTeX.svg -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/light.imageset/light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/light.imageset/light.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/oval.imageset/oval.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/oval.imageset/oval.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/phi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/phi.imageset/Contents.json -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/phi.imageset/phi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/phi.imageset/phi.png -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/plus.imageset/plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/plus.imageset/plus.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/sent.imageset/sent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/sent.imageset/sent.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/swap.imageset/swap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/swap.imageset/swap.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/ticket.imageset/ticket.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/ticket.imageset/ticket.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/time.imageset/time@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/time.imageset/time@3x.png -------------------------------------------------------------------------------- /AlphaWallet/Resources/Assets.xcassets/white.imageset/white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Assets.xcassets/white.imageset/white.pdf -------------------------------------------------------------------------------- /AlphaWallet/Resources/Fonts/source-sans-pro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/Fonts/source-sans-pro/README.md -------------------------------------------------------------------------------- /AlphaWallet/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AlphaWallet/Resources/LaunchScreen.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/LaunchScreen.xcassets/Contents.json -------------------------------------------------------------------------------- /AlphaWallet/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /AlphaWallet/Resources/TokenScriptFiles/DAI.tsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/TokenScriptFiles/DAI.tsml -------------------------------------------------------------------------------- /AlphaWallet/Resources/TokenScriptFiles/ERC20-TokenScript.tsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/TokenScriptFiles/ERC20-TokenScript.tsml -------------------------------------------------------------------------------- /AlphaWallet/Resources/TokenScriptFiles/ERC721-TokenScript.tsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/TokenScriptFiles/ERC721-TokenScript.tsml -------------------------------------------------------------------------------- /AlphaWallet/Resources/TokenScriptFiles/ETH.tsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/TokenScriptFiles/ETH.tsml -------------------------------------------------------------------------------- /AlphaWallet/Resources/TokenScriptFiles/XDAI-bridge.tsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/TokenScriptFiles/XDAI-bridge.tsml -------------------------------------------------------------------------------- /AlphaWallet/Resources/TokenScriptFiles/aETH.tsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/TokenScriptFiles/aETH.tsml -------------------------------------------------------------------------------- /AlphaWallet/Resources/chains.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/chains.zip -------------------------------------------------------------------------------- /AlphaWallet/Resources/tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/tokens.json -------------------------------------------------------------------------------- /AlphaWallet/Resources/tokensToImport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Resources/tokensToImport.json -------------------------------------------------------------------------------- /AlphaWallet/Sell/ViewModels/GenerateSellMagicLinkViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Sell/ViewModels/GenerateSellMagicLinkViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ContactUsEmailResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ContactUsEmailResolver.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Coordinators/ConsoleCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Coordinators/ConsoleCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Coordinators/HelpUsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Coordinators/HelpUsCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Coordinators/LocalesCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Coordinators/LocalesCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Coordinators/PingInfuraCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Coordinators/PingInfuraCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Coordinators/SaveCustomRpcCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Coordinators/SaveCustomRpcCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Coordinators/ServersCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Coordinators/ServersCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Coordinators/SettingsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Coordinators/SettingsCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Coordinators/SupportCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Coordinators/SupportCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/CustomRpcTableViewSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/CustomRpcTableViewSection.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/SaveCustomRpcBrowseDataController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/SaveCustomRpcBrowseDataController.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/TableViewSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/TableViewSection.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewControllers/ConsoleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewControllers/ConsoleViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewControllers/LocalesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewControllers/LocalesViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewControllers/ServersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewControllers/ServersViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewControllers/SupportViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewControllers/SupportViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewControllers/ToolsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewControllers/ToolsViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/AdvancedSettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/AdvancedSettingsViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/AnalyticsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/AnalyticsViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/ConsoleViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/ConsoleViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/CrashReporterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/CrashReporterViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/EnabledServersViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/EnabledServersViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/HelpUsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/HelpUsViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/LocaleViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/LocaleViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/LocalesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/LocalesViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/ServerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/ServerViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/ServersViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/ServersViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/SettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/SettingsViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/SupportViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/SupportViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/ViewModels/ToolsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/ViewModels/ToolsViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/EmptyTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/EmptyTableView.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/EnableServersHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/EnableServersHeaderView.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/ExportJsonKeystoreFileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/ExportJsonKeystoreFileView.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/LocaleViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/LocaleViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/SaveCustomRpcBrowseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/SaveCustomRpcBrowseView.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/SaveCustomRpcManualEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/SaveCustomRpcManualEntryView.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/SaveCustomRpcOverallView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/SaveCustomRpcOverallView.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/SelectionTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/SelectionTableViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/ServerViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/ServerViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/SettingTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/SettingTableViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/SettingViewHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/SettingViewHeader.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/SwitchTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/SwitchTableViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/SwitchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/SwitchView.swift -------------------------------------------------------------------------------- /AlphaWallet/Settings/Views/WalletSecurityLevelIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Settings/Views/WalletSecurityLevelIndicator.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/SelectServiceToSwapCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/SelectServiceToSwapCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/SwapTokensCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/SwapTokensCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/SwapTokensViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/SwapTokensViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/ViewModels/SwapQuoteFieldViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/ViewModels/SwapQuoteFieldViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/ViewModels/SwapStepViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/ViewModels/SwapStepViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/ViewModels/SwapStepsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/ViewModels/SwapStepsViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/ViewModels/SwapTokensViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/ViewModels/SwapTokensViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/Views/SwapQuoteDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/Views/SwapQuoteDetailsView.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/Views/SwapQuoteFieldView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/Views/SwapQuoteFieldView.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/Views/SwapStepView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/Views/SwapStepView.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/Swap/Views/SwapStepsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/Swap/Views/SwapStepsView.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/SwapOptions/Views/EditableSlippageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/SwapOptions/Views/EditableSlippageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/SwapOptions/Views/SlippageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/SwapOptions/Views/SlippageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/SwapOptions/Views/SwapOptionsHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/SwapOptions/Views/SwapOptionsHeaderView.swift -------------------------------------------------------------------------------- /AlphaWallet/Swap/SwapRoutes/Views/SwapRouteSummaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Swap/SwapRoutes/Views/SwapRouteSummaryView.swift -------------------------------------------------------------------------------- /AlphaWallet/TokenScript/FetchTokenScriptFiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/TokenScript/FetchTokenScriptFiles.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Collectibles/Views/NFTAssetsPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Collectibles/Views/NFTAssetsPageView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Collectibles/Views/NFTPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Collectibles/Views/NFTPreviewView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Collectibles/Views/NonFungibleRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Collectibles/Views/NonFungibleRowView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Collectibles/Views/TokenAttributeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Collectibles/Views/TokenAttributeView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Coordinators/AddHideTokensCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Coordinators/AddHideTokensCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Coordinators/FungibleTokenCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Coordinators/FungibleTokenCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Coordinators/NewTokenCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Coordinators/NewTokenCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Coordinators/SelectTokenCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Coordinators/SelectTokenCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Coordinators/TokensCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Coordinators/TokensCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/NftAssetDisplayHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/NftAssetDisplayHelper.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/NftCollectionDisplayHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/NftCollectionDisplayHelper.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/OpenSeaNonFungibleTokenDisplayHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/OpenSeaNonFungibleTokenDisplayHelper.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/TokenCardTableViewCellFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/TokenCardTableViewCellFactory.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/TokenScriptOverrides+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/TokenScriptOverrides+Extensions.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/UiTweaks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/UiTweaks.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewControllers/TokensViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewControllers/TokensViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/AddHideTokensViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/AddHideTokensViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/EthTokenViewCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/EthTokenViewCellViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/FungibleTokenTabViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/FungibleTokenTabViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/NewTokenViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/NewTokenViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/SelectTokenViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/SelectTokenViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/ShowAddHideTokensViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/ShowAddHideTokensViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/TokenCardWebViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/TokenCardWebViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/TokenHistoryChartViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/TokenHistoryChartViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/TokenInstanceActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/TokenInstanceActionButton.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/ViewModels/TokensViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/ViewModels/TokensViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/ActiveWalletSessionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/ActiveWalletSessionView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/AddHideTokenSectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/AddHideTokenSectionHeaderView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/AddHideTokensView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/AddHideTokensView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/AttestationViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/AttestationViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/EthTokenViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/EthTokenViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/FungibleTokenViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/FungibleTokenViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/NonFungibleTokenViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/NonFungibleTokenViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/PopularTokenViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/PopularTokenViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/RequestSignMessageDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/RequestSignMessageDelegate.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/TestnetTokenInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/TestnetTokenInfoView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/TokenCardWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/TokenCardWebView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/TokenRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/TokenRowView.swift -------------------------------------------------------------------------------- /AlphaWallet/Tokens/Views/WalletTokenViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Tokens/Views/WalletTokenViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Transactions/ViewModels/TransactionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transactions/ViewModels/TransactionViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transactions/Views/TransactionFieldView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transactions/Views/TransactionFieldView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transactions/Views/TransactionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transactions/Views/TransactionHeaderView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transactions/Views/TransactionTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transactions/Views/TransactionTableViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Coordinators/PaymentCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Coordinators/PaymentCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Coordinators/RequestCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Coordinators/RequestCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Coordinators/SendCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Coordinators/SendCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Coordinators/SignMessageCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Coordinators/SignMessageCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Coordinators/TransferNFTCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Coordinators/TransferNFTCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewControllers/SendViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewControllers/SendViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/ConfirmButtonViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/ConfirmButtonViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/EditTransactionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/EditTransactionViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/Eip1559GasSpeedViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/Eip1559GasSpeedViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/GasSpeedViewModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/GasSpeedViewModelType.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/LegacyGasSpeedViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/LegacyGasSpeedViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/RequestViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/RequestViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/SendViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/SendViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/TextFieldViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/TextFieldViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/TypedDataViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/TypedDataViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/ViewModels/UpdateInViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/ViewModels/UpdateInViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/ActivityIndicatorControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/ActivityIndicatorControl.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/ConfirmationHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/ConfirmationHeaderView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/EditEip1559GasFeeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/EditEip1559GasFeeView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/EditLegacyGasPriceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/EditLegacyGasPriceView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/GasSpeedTableViewHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/GasSpeedTableViewHeaderView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/GasSpeedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/GasSpeedView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/ScrollableStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/ScrollableStackView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/SelfResizedTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/SelfResizedTextView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/SendViewSectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/SendViewSectionHeader.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/SlidableTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/SlidableTextField.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/TransitionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/TransitionButton.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/TypedDataView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/TypedDataView.swift -------------------------------------------------------------------------------- /AlphaWallet/Transfer/Views/UpdateInView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Transfer/Views/UpdateInView.swift -------------------------------------------------------------------------------- /AlphaWallet/Types/ImportedTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Types/ImportedTypes.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Coordinators/EnterPasswordCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Coordinators/EnterPasswordCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Coordinators/WalletCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Coordinators/WalletCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Models/ActiveWalletViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Models/ActiveWalletViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Types/ImportSelectionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Types/ImportSelectionType.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Types/ImportWalletTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Types/ImportWalletTab.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Types/WalletEntryPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Types/WalletEntryPoint.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/ViewModels/EnterPasswordViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/ViewModels/EnterPasswordViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/ViewModels/ImportWalletViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/ViewModels/ImportWalletViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/ViewModels/RenameWalletViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/ViewModels/RenameWalletViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/ViewModels/SeedPhraseCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/ViewModels/SeedPhraseCellViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/ViewModels/ShowSeedPhraseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/ViewModels/ShowSeedPhraseViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/ViewModels/VerifySeedPhraseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/ViewModels/VerifySeedPhraseViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Views/SeedPhraseCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Views/SeedPhraseCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Views/SeedPhraseCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Views/SeedPhraseCollectionView.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Views/SeedPhraseSuggestionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Views/SeedPhraseSuggestionViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Views/WordCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Views/WordCollectionViewCell.swift -------------------------------------------------------------------------------- /AlphaWallet/Wallet/Views/WordCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/Wallet/Views/WordCollectionViewCell.xib -------------------------------------------------------------------------------- /AlphaWallet/WalletConnect/CAIP10AccountProvidable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletConnect/CAIP10AccountProvidable.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletConnect/Types/JSONRPC_2_0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletConnect/Types/JSONRPC_2_0.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletConnect/Types/WalletConnect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletConnect/Types/WalletConnect.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletConnect/Types/WalletConnectActionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletConnect/Types/WalletConnectActionType.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletConnect/View/WalletConnectSessionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletConnect/View/WalletConnectSessionCell.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletConnect/WalletConnectProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletConnect/WalletConnectProvider.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletConnect/WalletConnectServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletConnect/WalletConnectServer.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletPupup/HighlightableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletPupup/HighlightableView.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletPupup/PupupAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletPupup/PupupAction.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletPupup/WalletPupupCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletPupup/WalletPupupCoordinator.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletPupup/WalletPupupItemViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletPupup/WalletPupupItemViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletPupup/WalletPupupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletPupup/WalletPupupViewController.swift -------------------------------------------------------------------------------- /AlphaWallet/WalletPupup/WalletPupupViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WalletPupup/WalletPupupViewModel.swift -------------------------------------------------------------------------------- /AlphaWallet/WhatsNew/Models/WhatsNew.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WhatsNew/Models/WhatsNew.swift -------------------------------------------------------------------------------- /AlphaWallet/WhatsNew/ViewModels/WhatsNewViewModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WhatsNew/ViewModels/WhatsNewViewModels.swift -------------------------------------------------------------------------------- /AlphaWallet/WhatsNew/Views/WhatsNewViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWallet/WhatsNew/Views/WhatsNewViews.swift -------------------------------------------------------------------------------- /AlphaWalletABI.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletABI.podspec -------------------------------------------------------------------------------- /AlphaWalletAddress.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletAddress.podspec -------------------------------------------------------------------------------- /AlphaWalletAttestation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletAttestation.podspec -------------------------------------------------------------------------------- /AlphaWalletBrowser.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletBrowser.podspec -------------------------------------------------------------------------------- /AlphaWalletCore.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletCore.podspec -------------------------------------------------------------------------------- /AlphaWalletENS.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletENS.podspec -------------------------------------------------------------------------------- /AlphaWalletFoundation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletFoundation.podspec -------------------------------------------------------------------------------- /AlphaWalletGoBack.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletGoBack.podspec -------------------------------------------------------------------------------- /AlphaWalletHardwareWallet.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletHardwareWallet.podspec -------------------------------------------------------------------------------- /AlphaWalletLogger.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletLogger.podspec -------------------------------------------------------------------------------- /AlphaWalletNotifications.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletNotifications.podspec -------------------------------------------------------------------------------- /AlphaWalletOpenSea.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletOpenSea.podspec -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Info.plist -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/_locales/en/messages.json -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/background.js -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/config.js -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/content.js -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/helpers.js -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/images/icon-128.png -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/images/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/images/icon-256.png -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/images/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/images/icon-48.png -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/images/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/images/icon-512.png -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/images/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/images/icon-64.png -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/images/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/images/icon-96.png -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/manifest.json -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/popup.css -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/popup.html -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/Resources/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/Resources/popup.js -------------------------------------------------------------------------------- /AlphaWalletSafariExtension/SafariWebExtensionHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletSafariExtension/SafariWebExtensionHandler.swift -------------------------------------------------------------------------------- /AlphaWalletShare/AlphaWalletShare.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletShare/AlphaWalletShare.entitlements -------------------------------------------------------------------------------- /AlphaWalletShare/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletShare/Info.plist -------------------------------------------------------------------------------- /AlphaWalletShare/ItemProviderValueResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletShare/ItemProviderValueResolver.swift -------------------------------------------------------------------------------- /AlphaWalletShare/ItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletShare/ItemType.swift -------------------------------------------------------------------------------- /AlphaWalletShare/ShareContextHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletShare/ShareContextHandler.swift -------------------------------------------------------------------------------- /AlphaWalletShareExtensionCore.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletShareExtensionCore.podspec -------------------------------------------------------------------------------- /AlphaWalletTests/Activitities/FakeActivitiesService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Activitities/FakeActivitiesService.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Browser/Types/BrowserURLParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Browser/Types/BrowserURLParserTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Common/Types/ErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Common/Types/ErrorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/ActiveWalletViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/ActiveWalletViewTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/AppCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/AppCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/BackupCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/BackupCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/ClaimOrderCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/ClaimOrderCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/MixpanelCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/MixpanelCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/RequestCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/RequestCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/SendCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/SendCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/SplashCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/SplashCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/TokensCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/TokensCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Coordinators/WalletCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Coordinators/WalletCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Base64DecoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Base64DecoderTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/FakeDomainResolutionService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/FakeDomainResolutionService.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Helpers/FakeBlockiesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Helpers/FakeBlockiesGenerator.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Helpers/LogLargeNftJsonFilesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Helpers/LogLargeNftJsonFilesTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Helpers/base64_image_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Helpers/base64_image_example.txt -------------------------------------------------------------------------------- /AlphaWalletTests/Core/HostBasedTokenUriMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/HostBasedTokenUriMapperTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/PublisherToAsyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/PublisherToAsyncTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/AddressStorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/AddressStorageTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/AppTrackerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/AppTrackerTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/Constants+CredentialsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/Constants+CredentialsTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/EIP712TypedDataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/EIP712TypedDataTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/EnvironmentTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/EnvironmentTestCase.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/FeaturesTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/FeaturesTestCase.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/FunctionCallArgumentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/FunctionCallArgumentTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/HDWalletTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/HDWalletTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/RetryPublisherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/RetryPublisherTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/SessionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/SessionTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/TickerIdsFetcherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/TickerIdsFetcherTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/TokenViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/TokenViewModelTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/ValidatorsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/ValidatorsTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Core/Types/tikersForTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/Types/tikersForTest.json -------------------------------------------------------------------------------- /AlphaWalletTests/Core/ViewModels/ChainIdTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Core/ViewModels/ChainIdTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Ens/EnsRecordsStorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Ens/EnsRecordsStorageTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Ens/EnsResolverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Ens/EnsResolverTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/EtherClient/EtherKeystoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/EtherClient/EtherKeystoreTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/EtherClient/KeysTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/EtherClient/KeysTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/EtherClient/PasswordGeneratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/EtherClient/PasswordGeneratorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/EtherClient/RLPTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/EtherClient/RLPTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/EtherClient/TransactionSigningTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/EtherClient/TransactionSigningTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Extensions/IntExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Extensions/IntExtensionsTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Extensions/StringExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Extensions/StringExtensionTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Extensions/UIColorExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Extensions/UIColorExtensionTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/Address.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/Address.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/ChainState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/ChainState.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/Config.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/DataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/DataTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeClaimOrderCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeClaimOrderCoordinator.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeCoinTickersFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeCoinTickersFetcher.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeEnsRecordsStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeEnsRecordsStorage.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeEtherKeystore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeEtherKeystore.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeJailbreakChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeJailbreakChecker.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeLockProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeLockProtocol.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeMultiWalletBalanceService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeMultiWalletBalanceService.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeNavigationController.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeNftProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeNftProvider.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeNotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeNotificationService.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeSessionsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeSessionsProvider.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeTokenGroupIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeTokenGroupIdentifier.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeTokenSwapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeTokenSwapper.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeTokensDataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeTokensDataStore.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeTransactionsStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeTransactionsStorage.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeUniversalLinkCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeUniversalLinkCoordinator.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/FakeWalletAddressStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/FakeWalletAddressStore.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/TestKeyStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/TestKeyStore.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/Transaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/Transaction.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/UnconfirmedTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/UnconfirmedTransaction.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/UserDefaults.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/Wallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/Wallet.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Factories/WalletSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Factories/WalletSession.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Foundation/EtherNumberFormatterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Foundation/EtherNumberFormatterTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Foundation/FormatterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Foundation/FormatterTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Foundation/QRCodeValueParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Foundation/QRCodeValueParserTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Foundation/RepeatTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Foundation/RepeatTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Foundation/StringFormatterTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Foundation/StringFormatterTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/HardwareWallet/BCHardwareWalletTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/HardwareWallet/BCHardwareWalletTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Info.plist -------------------------------------------------------------------------------- /AlphaWalletTests/Market/OrderSigningTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Market/OrderSigningTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Market/UniversalLinkHandlerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Market/UniversalLinkHandlerTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Misc/ScheduledToDoTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Misc/ScheduledToDoTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Models/EtherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Models/EtherTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Redeem/CreateRedeemTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Redeem/CreateRedeemTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Redeem/EventsRestTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Redeem/EventsRestTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Rpc Network/RpcNetworkTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Rpc Network/RpcNetworkTestCase.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Settings/ConfigTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Settings/ConfigTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/TokenScriptClient/FakeEventsDataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/TokenScriptClient/FakeEventsDataStore.swift -------------------------------------------------------------------------------- /AlphaWalletTests/TokenScriptClient/XMLHandlerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/TokenScriptClient/XMLHandlerTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Tokens/AddressAndRPCServerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Tokens/AddressAndRPCServerTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Tokens/Helpers/SmartContractHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Tokens/Helpers/SmartContractHelperTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Tokens/Helpers/TokenAdaptorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Tokens/Helpers/TokenAdaptorTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Tokens/Helpers/TokenObjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Tokens/Helpers/TokenObjectTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Tokens/RPCServerComparableTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Tokens/RPCServerComparableTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Tokens/TokenBalanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Tokens/TokenBalanceTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Tokens/TokenGroupIdentifierTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Tokens/TokenGroupIdentifierTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Tokens/TokensDataStoreTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Tokens/TokensDataStoreTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Tokens/WalletFilterTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Tokens/WalletFilterTest.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Utilities/Repeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Utilities/Repeat.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Utilities/urlUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Utilities/urlUtilities.swift -------------------------------------------------------------------------------- /AlphaWalletTests/Verifications/StringValidatorTestCases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/Verifications/StringValidatorTestCases.swift -------------------------------------------------------------------------------- /AlphaWalletTests/ViewControllers/PaymentCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/ViewControllers/PaymentCoordinatorTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/modules/AlphaWalletCore/StringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/modules/AlphaWalletCore/StringTests.swift -------------------------------------------------------------------------------- /AlphaWalletTests/modules/AlphaWalletCore/URLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTests/modules/AlphaWalletCore/URLTests.swift -------------------------------------------------------------------------------- /AlphaWalletTokenScript.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTokenScript.podspec -------------------------------------------------------------------------------- /AlphaWalletTrackAPICalls.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTrackAPICalls.podspec -------------------------------------------------------------------------------- /AlphaWalletTrustWalletCoreExtensions.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletTrustWalletCoreExtensions.podspec -------------------------------------------------------------------------------- /AlphaWalletWeb3.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/AlphaWalletWeb3.podspec -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FUNDING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/FUNDING.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/Makefile -------------------------------------------------------------------------------- /NotificationSubscribersStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/NotificationSubscribersStorage.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/crowdin.yml -------------------------------------------------------------------------------- /dangerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/dangerfile.js -------------------------------------------------------------------------------- /docs/INTRODUCTION-CODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/docs/INTRODUCTION-CODE.md -------------------------------------------------------------------------------- /docs/data-source-chains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/docs/data-source-chains.md -------------------------------------------------------------------------------- /docs/deep-link-wallet-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/docs/deep-link-wallet-api.md -------------------------------------------------------------------------------- /docs/high-level-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/docs/high-level-blocks.md -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/Deliverfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/metadata/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/app_icon.jpg -------------------------------------------------------------------------------- /fastlane/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | Copyright Trust Wallet 2018 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/name.txt: -------------------------------------------------------------------------------- 1 | Trust - Ethereum Wallet 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://trustwalletapp.com/privacy-policy.html 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/en-US/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | Private & Secure Wallet 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/en-US/support_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/es-ES/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/es-ES/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/name.txt: -------------------------------------------------------------------------------- 1 | Trust - Etereum Cartera 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/privacy_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/es-ES/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/subtitle.txt: -------------------------------------------------------------------------------- 1 | Privado y seguro 2 | -------------------------------------------------------------------------------- /fastlane/metadata/es-ES/support_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/es-ES/support_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | MZGenre.Finance 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/demo_password.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/demo_user.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/email_address.txt: -------------------------------------------------------------------------------- 1 | thetrustwallet@gmail.com 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/first_name.txt: -------------------------------------------------------------------------------- 1 | Michael 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/last_name.txt: -------------------------------------------------------------------------------- 1 | Scoff 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/review_information/notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/review_information/phone_number.txt: -------------------------------------------------------------------------------- 1 | 16507891234 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/ru/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ru/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/ru/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/ru/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/name.txt: -------------------------------------------------------------------------------- 1 | Trust - Ethereum Кошелек 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/privacy_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ru/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/ru/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/ru/subtitle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/ru/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/ru/support_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/metadata/ru/support_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | MZGenre.Utilities 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/address_line1.txt: -------------------------------------------------------------------------------- 1 | 515 Central Ave 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/city_name.txt: -------------------------------------------------------------------------------- 1 | Mountain View 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/country.txt: -------------------------------------------------------------------------------- 1 | United States 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/is_displayed_on_app_store.txt: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/postal_code.txt: -------------------------------------------------------------------------------- 1 | 94043 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/state.txt: -------------------------------------------------------------------------------- 1 | California 2 | -------------------------------------------------------------------------------- /fastlane/metadata/trade_representative_contact_information/trade_name.txt: -------------------------------------------------------------------------------- 1 | SIX DAYS LLC 2 | -------------------------------------------------------------------------------- /fastlane/screenshots/Framefile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/screenshots/Framefile.json -------------------------------------------------------------------------------- /fastlane/screenshots/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/fastlane/screenshots/background.jpg -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/ABI/ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/ABI/ABI.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC1155.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC1155.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC165.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC165.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC20.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC20.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC721.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC721.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC721Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC721Metadata.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC875.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/ABI/ERC875.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/ABIEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/ABIEncoder.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/AlphaWalletABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/AlphaWalletABI.h -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/Types/ABIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/Types/ABIError.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/Types/ABIType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/Types/ABIType.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/Types/ABIValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/Types/ABIValue.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/Types/EthTypedData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/Types/EthTypedData.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/AlphaWalletABI/Types/Function.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/AlphaWalletABI/Types/Function.swift -------------------------------------------------------------------------------- /modules/AlphaWalletABI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletABI/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletAddress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletAddress/.gitignore -------------------------------------------------------------------------------- /modules/AlphaWalletAddress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletAddress/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletAttestation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletAttestation/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletBrowser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletBrowser/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletCore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/.gitignore -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/AlphaWalletCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/AlphaWalletCore.h -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Base64Decoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Base64Decoder.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Storage.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/StorageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/StorageType.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Types/CastError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Types/CastError.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Types/Currency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Types/Currency.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Types/CustomRPC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Types/CustomRPC.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Types/Loadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Types/Loadable.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Types/RPCServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Types/RPCServer.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Types/TokenId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Types/TokenId.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Types/TokenType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Types/TokenType.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Types/WalletType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Types/WalletType.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Utils/attempt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Utils/attempt.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/AlphaWalletCore/Utils/tap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/AlphaWalletCore/Utils/tap.swift -------------------------------------------------------------------------------- /modules/AlphaWalletCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletCore/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletENS/AlphaWalletENS/ABIs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletENS/AlphaWalletENS/ABIs.swift -------------------------------------------------------------------------------- /modules/AlphaWalletENS/AlphaWalletENS/AlphaWalletENS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletENS/AlphaWalletENS/AlphaWalletENS.h -------------------------------------------------------------------------------- /modules/AlphaWalletENS/AlphaWalletENS/ENS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletENS/AlphaWalletENS/ENS.swift -------------------------------------------------------------------------------- /modules/AlphaWalletENS/AlphaWalletENS/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletENS/AlphaWalletENS/Logger.swift -------------------------------------------------------------------------------- /modules/AlphaWalletENS/AlphaWalletENS/Types/ENSError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletENS/AlphaWalletENS/Types/ENSError.swift -------------------------------------------------------------------------------- /modules/AlphaWalletENS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletENS/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletFoundation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletFoundation/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletGoBack/AlphaWalletGoBack/GoBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletGoBack/AlphaWalletGoBack/GoBack.h -------------------------------------------------------------------------------- /modules/AlphaWalletGoBack/AlphaWalletGoBack/GoBack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletGoBack/AlphaWalletGoBack/GoBack.m -------------------------------------------------------------------------------- /modules/AlphaWalletGoBack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletGoBack/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletHardwareWallet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletHardwareWallet/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletLogger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletLogger/.gitignore -------------------------------------------------------------------------------- /modules/AlphaWalletLogger/AlphaWalletLogger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletLogger/AlphaWalletLogger/Logger.swift -------------------------------------------------------------------------------- /modules/AlphaWalletLogger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletLogger/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletNotifications/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletNotifications/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletOpenSea/AlphaWalletOpenSea/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletOpenSea/AlphaWalletOpenSea/Logger.swift -------------------------------------------------------------------------------- /modules/AlphaWalletOpenSea/AlphaWalletOpenSea/OpenSea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletOpenSea/AlphaWalletOpenSea/OpenSea.h -------------------------------------------------------------------------------- /modules/AlphaWalletOpenSea/AlphaWalletOpenSea/OpenSea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletOpenSea/AlphaWalletOpenSea/OpenSea.swift -------------------------------------------------------------------------------- /modules/AlphaWalletOpenSea/AlphaWalletOpenSea/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletOpenSea/AlphaWalletOpenSea/Response.swift -------------------------------------------------------------------------------- /modules/AlphaWalletOpenSea/AlphaWalletOpenSea/Stats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletOpenSea/AlphaWalletOpenSea/Stats.swift -------------------------------------------------------------------------------- /modules/AlphaWalletOpenSea/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletOpenSea/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletShareExtensionCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletShareExtensionCore/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletTokenScript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletTokenScript/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletTrackAPICalls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletTrackAPICalls/.gitignore -------------------------------------------------------------------------------- /modules/AlphaWalletTrackAPICalls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletTrackAPICalls/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletTrustWalletCoreExtensions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletTrustWalletCoreExtensions/LICENSE -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/ABIDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/ABIDecoder.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/ABIEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/ABIEncoder.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/ABITypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/ABITypes.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/RLP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/RLP.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/TypesEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/ABI/TypesEncoder.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/ABIv2/ABIv2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/ABIv2/ABIv2.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/Types/Balance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/Types/Balance.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/Types/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/Types/Config.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/Types/GasPrice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/Types/GasPrice.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/Utils/CcipRead.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/Utils/CcipRead.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/Utils/Web3+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/Utils/Web3+Utils.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/AlphaWalletWeb3/Web3/Web3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/AlphaWalletWeb3/Web3/Web3.swift -------------------------------------------------------------------------------- /modules/AlphaWalletWeb3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/modules/AlphaWalletWeb3/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/package.json -------------------------------------------------------------------------------- /project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/project.yml -------------------------------------------------------------------------------- /resources/SwiftFormatFiles.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/SwiftFormatFiles.xcfilelist -------------------------------------------------------------------------------- /resources/alphawallet-open-source-ethereum-wallet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/alphawallet-open-source-ethereum-wallet.jpg -------------------------------------------------------------------------------- /resources/app-store-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/app-store-badge.png -------------------------------------------------------------------------------- /resources/download-app-store-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/download-app-store-button.svg -------------------------------------------------------------------------------- /resources/iphone_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/iphone_cover.png -------------------------------------------------------------------------------- /resources/screens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/screens.png -------------------------------------------------------------------------------- /resources/share_facebook-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/share_facebook-btn.svg -------------------------------------------------------------------------------- /resources/share_linkedin-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/share_linkedin-btn.svg -------------------------------------------------------------------------------- /resources/share_mail-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/share_mail-btn.svg -------------------------------------------------------------------------------- /resources/share_reddit-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/share_reddit-btn.svg -------------------------------------------------------------------------------- /resources/share_telegram-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/share_telegram-btn.svg -------------------------------------------------------------------------------- /resources/share_tweet-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/resources/share_tweet-btn.svg -------------------------------------------------------------------------------- /scripts/compress_chains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/scripts/compress_chains -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaWallet/alpha-wallet-ios/HEAD/yarn.lock --------------------------------------------------------------------------------