Copy disabled (too large)
Showing preview only (11,287K chars total). The displayed content is truncated. Use the JSON API for full output.
Repository: Blockstream/green_ios
Branch: master
Commit: 1d6557a44654
Files: 1535
Total size: 10.4 MB
Directory structure:
gitextract_us60bn4r/
├── .github/
│ └── ISSUE_TEMPLATE.md
├── .gitignore
├── .gitlab/
│ └── issue_templates/
│ └── Bug.md
├── .gitlab-ci.yml
├── .swiftlint.yml
├── .tx/
│ └── config
├── BUILD.md
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE
├── NotificationService/
│ ├── Info.plist
│ ├── NotificationService.swift
│ ├── NotificationServiceDebug.entitlements
│ ├── NotificationServiceRelease.entitlements
│ ├── NotificationServiceStaging.entitlements
│ ├── Tasks/
│ │ ├── MeldTransactionTask.swift
│ │ ├── MeldTypes.swift
│ │ └── Swap/
│ │ ├── SwapManager.swift
│ │ ├── SwapModel.swift
│ │ └── SwapTask.swift
│ ├── cs.lproj/
│ │ └── Localizable.strings
│ ├── de.lproj/
│ │ └── Localizable.strings
│ ├── en.lproj/
│ │ └── Localizable.strings
│ ├── es.lproj/
│ │ └── Localizable.strings
│ ├── fr.lproj/
│ │ └── Localizable.strings
│ ├── he.lproj/
│ │ └── Localizable.strings
│ ├── it.lproj/
│ │ └── Localizable.strings
│ ├── ja.lproj/
│ │ └── Localizable.strings
│ ├── ko.lproj/
│ │ └── Localizable.strings
│ ├── nl.lproj/
│ │ └── Localizable.strings
│ ├── pt-BR.lproj/
│ │ └── Localizable.strings
│ ├── ro.lproj/
│ │ └── Localizable.strings
│ ├── ru.lproj/
│ │ └── Localizable.strings
│ ├── uk.lproj/
│ │ └── Localizable.strings
│ ├── vi.lproj/
│ │ └── Localizable.strings
│ └── zh.lproj/
│ └── Localizable.strings
├── README.md
├── configs/
│ ├── DevSettings.xcconfig
│ └── ProdSettings.xcconfig
├── core/
│ ├── Controllers/
│ │ └── BoltzController.swift
│ ├── Countly/
│ │ ├── AnalyticsManager/
│ │ │ ├── AMConstants.swift
│ │ │ ├── AMEvents.swift
│ │ │ ├── AMSegmentation.swift
│ │ │ ├── AMViews.swift
│ │ │ └── AnalyticsManager.swift
│ │ └── RemoteAlertManager.swift
│ ├── Extensions/
│ │ ├── AccountType.swift
│ │ ├── AssetInfo.swift
│ │ ├── Bundle.swift
│ │ ├── Lwk.swift
│ │ ├── String.swift
│ │ ├── Transaction.swift
│ │ ├── UIImage.swift
│ │ ├── Utils.swift
│ │ ├── WalletItem.swift
│ │ └── Wally.swift
│ ├── HW/
│ │ ├── CentralManager.swift
│ │ └── JadeManager.swift
│ ├── Managers/
│ │ ├── AssetsManager.swift
│ │ ├── AuthenticationTypeHandler.swift
│ │ ├── ConverterManager.swift
│ │ ├── Logger.swift
│ │ ├── MigratorManager.swift
│ │ ├── ResolverManager.swift
│ │ ├── SwapMonitor.swift
│ │ └── WalletManager.swift
│ ├── Models/
│ │ ├── Account.swift
│ │ ├── AppSettings.swift
│ │ ├── Boltz.swift
│ │ ├── BoltzDataModel.xcdatamodeld/
│ │ │ └── BoltzDataModel.xcdatamodel/
│ │ │ └── contents
│ │ ├── BoltzSwapsController.swift
│ │ ├── CountlyWidget.swift
│ │ ├── EnrichedAsset.swift
│ │ ├── GdkSettings.swift
│ │ ├── LightningCredentials.swift
│ │ ├── Notification.swift
│ │ ├── QRJade.swift
│ │ ├── Swap.swift
│ │ └── WalletListItem.swift
│ ├── Repository/
│ │ ├── AccountsRepository.swift
│ │ ├── KeychainStorage.swift
│ │ ├── LightningRepository.swift
│ │ └── WalletsRepository.swift
│ ├── SessionManagers/
│ │ ├── LightningSessionManager.swift
│ │ ├── LwkSessionManager.swift
│ │ └── SessionManager.swift
│ └── Utils/
│ └── SerialTasks.swift
├── fastlane/
│ ├── Appfile
│ ├── Fastfile
│ └── README.md
├── gaios/
│ ├── Accounts/
│ │ ├── AccountArchive/
│ │ │ ├── AccountArchiveViewController.swift
│ │ │ ├── AccountArchiveViewModel.swift
│ │ │ └── Cells/
│ │ │ ├── AccountArchiveCell.swift
│ │ │ ├── AccountArchiveCell.xib
│ │ │ └── AccountArchiveCellModel.swift
│ │ ├── AccountCreatePublicKeyViewController.swift
│ │ ├── AccountCreateRecoveryKeyViewController.swift
│ │ ├── AccountDescriptor/
│ │ │ ├── AccountDescriptorViewController.swift
│ │ │ ├── AccountDescriptorViewModel.swift
│ │ │ └── Cells/
│ │ │ ├── AccountDescriptorCell.swift
│ │ │ ├── AccountDescriptorCell.xib
│ │ │ └── AccountDescriptorCellModel.swift
│ │ ├── AccountSettings/
│ │ │ ├── AccountSettingsViewController.swift
│ │ │ ├── AccountSettingsViewModel.swift
│ │ │ └── Cells/
│ │ │ ├── AccountSettingsCell.swift
│ │ │ ├── AccountSettingsCell.xib
│ │ │ └── AccountSettingsCellModel.swift
│ │ ├── AccountSettingsViewController.swift
│ │ ├── AccountSettingsViewModel.swift
│ │ └── Accounts.storyboard
│ ├── AddressAuth/
│ │ ├── AddressAuth.storyboard
│ │ └── Controllers/
│ │ ├── AddressAuthViewController.swift
│ │ ├── AddressAuthViewModel.swift
│ │ ├── Cells/
│ │ │ ├── AddressAuthCell.swift
│ │ │ ├── AddressAuthCell.xib
│ │ │ ├── AddressAuthCellModel.swift
│ │ │ ├── AddressAuthLoaderCell.swift
│ │ │ └── AddressAuthLoaderCell.xib
│ │ ├── DialogSignViewController.swift
│ │ ├── DialogSignViewModel.swift
│ │ └── Views/
│ │ ├── AddressAuthHeader.swift
│ │ └── AddressAuthHeader.xib
│ ├── AppDelegate.swift
│ ├── AppNotifications.swift
│ ├── AppSettings/
│ │ ├── AppSettings.storyboard
│ │ ├── AppSettingsViewController.swift
│ │ ├── AppSettingsViewModel.swift
│ │ └── Cells/
│ │ ├── AppSettingsCell.swift
│ │ ├── AppSettingsCell.xib
│ │ ├── EditCell.swift
│ │ ├── EditCell.xib
│ │ ├── ElectrumCell.swift
│ │ ├── ElectrumCell.xib
│ │ ├── ElectrumCellModel.swift
│ │ ├── ProxyCell.swift
│ │ ├── ProxyCell.xib
│ │ ├── TitleCell.swift
│ │ └── TitleCell.xib
│ ├── Assets/
│ │ ├── Assets.storyboard
│ │ ├── AssetsListViewController.swift
│ │ └── TableViewCells/
│ │ └── AssetCell.swift
│ ├── Assets.xcassets/
│ │ ├── About/
│ │ │ ├── Contents.json
│ │ │ ├── ic_about.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_facebook.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_github.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_link.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_telegram.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_twitter.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_website.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── ic_youtube.imageset/
│ │ │ └── Contents.json
│ │ ├── AppIcons/
│ │ │ ├── AppIcon.appiconset/
│ │ │ │ └── Contents.json
│ │ │ ├── AppIconDev.appiconset/
│ │ │ │ └── Contents.json
│ │ │ └── Contents.json
│ │ ├── Asset Icons/
│ │ │ ├── Contents.json
│ │ │ ├── default_asset_amp_icon.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── default_asset_icon.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── default_asset_icon_old.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── default_asset_liquid_icon.imageset/
│ │ │ └── Contents.json
│ │ ├── Colors/
│ │ │ ├── Contents.json
│ │ │ ├── customBtnOff.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── customDestructiveRed.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── customGrayLight.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── customTextFieldBg.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── customTitaniumDark.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── errorRed.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccent.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccountLightBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccountOrange.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccountTestGray.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccountTestLightBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gBlackBg.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayBtn.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayCamera.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayCard.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayCardBorder.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayElement.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayPanel.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayTxt.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGreenFluo.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGreenMatrix.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGreenTx.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gLightning.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gOrangeTx.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedFluo.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedSwapErr1.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedSwapErr2.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedTx.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedWarn.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gW40.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gW60.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gWarnCardBg.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gWarnCardBgBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gWarnCardBorder.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gWarnCardBorderBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── infoBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ └── warningYellow.colorset/
│ │ │ └── Contents.json
│ │ ├── Contents.json
│ │ ├── Flags/
│ │ │ ├── AD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AQ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AX-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BB-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BQ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CX-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── Contents.json
│ │ │ ├── DE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── EC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── EE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── EG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── EH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ER-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ES-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ET-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GB-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GP-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GQ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ID-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── JE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── JM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── JO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── JP-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LB-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ME-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ML-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MP-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MQ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MX-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NP-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── OM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── QA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── RE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── RO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── RS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── RW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SB-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ST-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SX-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── US-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── WF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── WS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── XK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── YE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── YT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ZA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ZM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── ZW-flag.imageset/
│ │ │ └── Contents.json
│ │ ├── HWFlow/
│ │ │ ├── Contents.json
│ │ │ ├── _v1_v2/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── il_jade_horizontal_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_horizontal_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_load_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_load_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_logo_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_logo_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_normal_dual_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_normal_dual_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_normal_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_normal_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_ph_1_power_on.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_ph_2_follow_instructions.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_ph_3_connect_ble.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_placeholder.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_secure_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_secure_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_select_dual_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_select_dual_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_select_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── il_jade_select_v2.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_airgap_biometrics.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_airgap_faceid.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_checkbox_off.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_checkbox_on.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_cpu.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_jade.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_jade_vertical.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_shield.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_state_genuine.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_state_not_genuine.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_state_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_hww_arrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_hww_ledger.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_magnify_qr.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_other_device.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_pinserver_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_pinserver_warn_circle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_mode_mini.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_nav_back.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_scan_shield.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_scan_square.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_unlock_globe.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_unlock_keys.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_sensor.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_ble_unavailable.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_check_addr_jade.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_check_addr_ledger.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_connection_fail.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_jade_welcome_2.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_jade_welcome_3.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_jade_welcome_4.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_ledger.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── il_ledger_icon.imageset/
│ │ │ └── Contents.json
│ │ ├── OnBoard/
│ │ │ ├── Contents.json
│ │ │ ├── ic_arrow_square_out.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_arrows_out_line.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_ble.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_electrum.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_eye.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_help.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_help_old.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_how_secure_sw.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_hww.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_info_home.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_info_shield.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_info_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_keys.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_keys_invert.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_migrate.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_multiserver.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_onboard_app_access.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_onboard_app_pin.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_onboard_mini_face.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_onboard_mini_pin.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_plus.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_printer.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_proxy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_recovery_phrase.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_restore.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_restore_wallet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_text.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tor.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_check.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── main_connect.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── main_connect_old.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ntw_btc.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ntw_liquid.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ntw_testnet.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── ntw_testnet_liquid.imageset/
│ │ │ └── Contents.json
│ │ ├── Wallet/
│ │ │ ├── Contents.json
│ │ │ ├── Dialog/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_dialog_archive.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_arrow_down.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_arrow_down_square.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_chevron.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_coins.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_expand.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_gear_six.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_main_actions_buy.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_main_actions_scan.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_main_actions_transfer.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_plus_circle.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_pwd39.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_qr.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_refresh.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_remove.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_rename.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_shield_check.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_show_phrase.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_simple_plus.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_sweep_wallet.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_sym_mainnet.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_sym_testnet.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_text_Aa.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_x_circle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── Image 1.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── Image.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── Promo/
│ │ │ │ ├── Contents.json
│ │ │ │ └── ic_promo_jade_full.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TxDetails/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_tx_action_explorer.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_more.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_note.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_revert.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_share.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_speed.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_confirmed.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_fail_cancel.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_failed.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_in.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_out.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_pending.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_success_check.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_swap_arrow_in.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_tx_swap_arrow_out.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── _sec_level/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_sec_lev_coins.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_sec_lev_globe.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_sec_lev_key.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_sec_lev_light.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_sec_lev_lock.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_sec_lev_shield.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── _tabs/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_tab_home.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tab_security.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tab_settings.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_tab_transact.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── arrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── arrow_right.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── back_wallet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── backarrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── backarrow2.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── bg_actions.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── blockstreamIcon.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── bluetooth-small.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── bluetooth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── btc.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── cancel.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── check.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── copy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── downArrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── down_chevron.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ellipses.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ellipses_vertical.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── erase.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── helpcircle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── home.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code_auth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code_call.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code_email.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code_sms.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_empty_state.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_mode_call.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_mode_email.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_mode_gauth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_mode_sms.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_prompt.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_actions_plus.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_address_auth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_address_auth_list.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_alert_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_amount_clear.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_amount_drop_down.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_amp_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_any_asset.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_arrow_card.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_back_ios.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_binoculars.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_blockstream.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_buy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_buy_button.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_buy_circle_dots.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_buy_circle_empty.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_cancel.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_card_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_card_warn_blue.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_chart_down.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_chart_point.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_chart_up.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_check_circle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_clipboard.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_coins_exchange.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_contact_support.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_copy_new.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_copy_receve.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_copy_small.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_countly_settings.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_descriptor_clipboard.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_descriptor_qr.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_dismiss.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_done.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_dots_three.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_double_arrow_right.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_edit.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_edit_protection_face.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_edit_protection_pin.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_edit_protection_touch.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_export.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_eye_closed.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_eye_flat.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_eye_wo.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_gear.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_hide.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key_ms.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key_ms_policy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key_ss.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key_ss_policy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lang.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_beta.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_bg.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_btc.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_data.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_flask.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_info.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_info_err.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_lnurl_auth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_plain.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_shortcut.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_shortcut_mini.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_ln_policy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_logo_blockstream.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_logout.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_loop.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_manual_backup.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_nav_disclose.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_passphrase.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_paste.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_paste_small.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_pencil.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_picker_down.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_preference_fw_update.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_preference_genuine_check.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_preference_recovery_phrase.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_re_enable_2fa.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_re_enable_2fa_info.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_receive.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_refresh_arrows.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_search.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_security_level.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_send.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_settings_disclose.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_setttings_experimental.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_setup_new_list_1.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_setup_new_list_2.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_setup_new_list_3.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_share.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shield_setup_new.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shield_setup_new_hw.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shield_warning.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shortcut_light.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shortcut_lock.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_signature.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_square_slider.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_squared.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_squared_out.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_squared_out_small.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_swap.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_toggle_off.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_toggle_on.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_triangle_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_hourglass.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_received.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_sent.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_swap.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_v5_update.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_wallet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_wallet_disclose.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_wallet_testnet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_welcome_wallet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_sec_lev_hardware.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_sec_lev_mobile.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ledger.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ledgerIcon.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── lightning_btc.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── link.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── liquid.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── logo.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── logo_big.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── next.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── notepen.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── qr.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── qr_bg.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── qr_sweep.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── receive.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── refresh.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── rightArrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── search.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── security.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── selected_circle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── send.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── sendWhite.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── settings.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── settingsSelected.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── sign_confirmed.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── swap/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_get_more_jade.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_learn_more.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_swap_bitcoin.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_swap_enabled.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_swap_err.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_swap_liquid.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── tx_received.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── tx_received_mainnet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── tx_send.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── unselected_circle.imageset/
│ │ │ └── Contents.json
│ │ └── wallet_list/
│ │ ├── Contents.json
│ │ ├── ic_wallet_list_about.imageset/
│ │ │ └── Contents.json
│ │ ├── ic_wallet_list_bin.imageset/
│ │ │ └── Contents.json
│ │ ├── ic_wallet_list_pencil.imageset/
│ │ │ └── Contents.json
│ │ └── ic_wallet_list_settings.imageset/
│ │ └── Contents.json
│ ├── AuthenticationFactors/
│ │ ├── AuthenticatorFactors.storyboard
│ │ ├── Country.swift
│ │ ├── EnableTwoFactorViewController.swift
│ │ ├── SetEmailViewController.swift
│ │ ├── SetGauthViewController.swift
│ │ ├── SetPhoneViewController.swift
│ │ ├── TwoFAFlow.storyboard
│ │ ├── TwoFAMethodViewController.swift
│ │ └── TwoFactorAuthViewController.swift
│ ├── Base.lproj/
│ │ └── LaunchScreen.storyboard
│ ├── BuyBTC/
│ │ ├── BuyBTCFlow.storyboard
│ │ ├── BuyBTCViewController.swift
│ │ ├── BuyBTCViewModel.swift
│ │ ├── BuyTiers.swift
│ │ ├── Cells/
│ │ │ ├── AssetToBuyCell.swift
│ │ │ ├── AssetToBuyCell.xib
│ │ │ ├── AssetToBuyCellModel.swift
│ │ │ ├── CreateAccountCell.swift
│ │ │ ├── CreateAccountCell.xib
│ │ │ ├── QuoteCell.swift
│ │ │ └── QuoteCell.xib
│ │ ├── Meld.swift
│ │ ├── MoreActions/
│ │ │ ├── MoreActionsCell.swift
│ │ │ ├── MoreActionsCell.xib
│ │ │ ├── MoreActionsViewController.swift
│ │ │ └── MoreActionsViewModel.swift
│ │ ├── SelectCountry/
│ │ │ ├── SelectCountryCell/
│ │ │ │ ├── SelectCountryCell.swift
│ │ │ │ ├── SelectCountryCell.xib
│ │ │ │ └── SelectCountryCellModel.swift
│ │ │ ├── SelectCountryViewController.swift
│ │ │ └── SelectCountryViewModel.swift
│ │ └── SelectProvider/
│ │ ├── SelectProviderCell/
│ │ │ ├── SelectProviderCell.swift
│ │ │ ├── SelectProviderCell.xib
│ │ │ └── SelectProviderCellModel.swift
│ │ ├── SelectProviderViewController.swift
│ │ └── SelectProviderViewModel.swift
│ ├── DrawerNetworkSelection/
│ │ ├── Controllers/
│ │ │ └── DrawerNetworkSelectionViewController.swift
│ │ ├── DrawerNetworkSelection.storyboard
│ │ └── TranstionAnimator/
│ │ ├── DrawerAnimator.swift
│ │ └── DrawerPresentationController.swift
│ ├── Extensions/
│ │ ├── Collection.swift
│ │ ├── Data.swift
│ │ ├── Date.swift
│ │ ├── Error.swift
│ │ ├── Gdk.swift
│ │ ├── String.swift
│ │ ├── UIApplication.swift
│ │ ├── UIButton.swift
│ │ ├── UIColor.swift
│ │ ├── UIContextualAction.swift
│ │ ├── UIImage.swift
│ │ ├── UILabel.swift
│ │ ├── UINavigationController.swift
│ │ ├── UISegmentedControl.swift
│ │ ├── UITableView.swift
│ │ ├── UITableViewCell.swift
│ │ ├── UITapGestureRecognizer.swift
│ │ ├── UITextField.swift
│ │ ├── UITextView.swift
│ │ ├── UIView.swift
│ │ └── UIViewController.swift
│ ├── Features/
│ │ ├── Qrcode/
│ │ │ ├── DialogQRViewController.swift
│ │ │ ├── MagnifyQRViewController.swift
│ │ │ ├── QRCodeView.swift
│ │ │ ├── QRGenerator.swift
│ │ │ └── Qrcode.storyboard
│ │ ├── Qrcode.storyboard
│ │ └── Scanner/
│ │ ├── BCURProvider.swift
│ │ ├── CameraManager.swift
│ │ ├── QScannerView.swift
│ │ ├── QrScannerViewController.swift
│ │ ├── Scanner.storyboard
│ │ └── SmoothProgressView.swift
│ ├── Gdk/
│ │ ├── AssetAmountList.swift
│ │ ├── Balance.swift
│ │ ├── NetworkSecurityCase.swift
│ │ ├── Resolver.swift
│ │ ├── ScanResult.swift
│ │ └── Settings.swift
│ ├── GenuineCheck/
│ │ ├── GenuineCheckDialogViewController.swift
│ │ ├── GenuineCheckDialogViewModel.swift
│ │ ├── GenuineCheckEndViewController.swift
│ │ ├── GenuineCheckEndViewModel.swift
│ │ └── GenuineCheckFlow.storyboard
│ ├── GoogleService-Dev-Info.plist
│ ├── GoogleService-Prod-Info.plist
│ ├── HWFlow/
│ │ ├── BleUnavailable.storyboard
│ │ ├── Connect/
│ │ │ ├── ConnectViewController.swift
│ │ │ └── ConnectViewModel.swift
│ │ ├── Controllers/
│ │ │ ├── BleUnavailableViewController.swift
│ │ │ ├── ConnectViewController.swift
│ │ │ ├── EnableTorViewController.swift
│ │ │ ├── HWFlowBaseViewController.swift
│ │ │ ├── PairingSuccessViewController.swift
│ │ │ ├── PinCreateViewController.swift
│ │ │ ├── PinServerWarnViewController.swift
│ │ │ ├── QRPsbtAquireViewController.swift
│ │ │ ├── QRPsbtShowViewController.swift
│ │ │ ├── UpdateFirmwareViewController.swift
│ │ │ └── WelcomeJadeViewController.swift
│ │ ├── Dialogs/
│ │ │ ├── EnableBiometricsDialogViewController.swift
│ │ │ ├── HWDialogConnectViewController.swift
│ │ │ ├── HWDialogs.storyboard
│ │ │ ├── VerifyOnDeviceViewController.swift
│ │ │ └── VerifyOnDeviceViewModel.swift
│ │ ├── HWFlow.storyboard
│ │ ├── Managers/
│ │ │ ├── BleHwManager.swift
│ │ │ ├── BleJadeManager.swift
│ │ │ ├── BleLedgerManager.swift
│ │ │ ├── CentralManager.swift
│ │ │ ├── JadeManager.swift
│ │ │ └── QRJadeManager.swift
│ │ ├── QRUnlock/
│ │ │ ├── QRUnlockInfoAlertViewController.swift
│ │ │ ├── QRUnlockJadePinInfoViewController.swift
│ │ │ ├── QRUnlockPinUnlockDialogViewController.swift
│ │ │ ├── QRUnlockSelectAccountViewController.swift
│ │ │ ├── QRUnlockSelectAccountViewModel.swift
│ │ │ ├── QRUnlockSignDialogViewController.swift
│ │ │ └── QRUnlockSuccessAlertViewController.swift
│ │ ├── QRUnlockFlow.storyboard
│ │ ├── QRUnlockJade/
│ │ │ ├── QRUnlockJadeViewController.swift
│ │ │ └── QRUnlockJadeViewModel.swift
│ │ ├── Scan/
│ │ │ ├── Cells/
│ │ │ │ ├── DeviceCell.swift
│ │ │ │ └── DeviceCell.xib
│ │ │ ├── ScanListItem.swift
│ │ │ ├── ScanViewController.swift
│ │ │ └── ScanViewModel.swift
│ │ ├── Setup/
│ │ │ ├── SetupJadeViewController.swift
│ │ │ └── SetupJadeViewModel.swift
│ │ └── Wait/
│ │ ├── JadeWaitViewController.swift
│ │ ├── JadeWaitViewModel.swift
│ │ └── LedgerWaitViewController.swift
│ ├── Help/
│ │ ├── Help.storyboard
│ │ ├── HelpViewController.swift
│ │ └── TableViewCells/
│ │ └── HelpCell.swift
│ ├── HelpCenter/
│ │ ├── ContactUsViewController.swift
│ │ └── HelpCenter.storyboard
│ ├── Helpers/
│ │ ├── AccountNavigator.swift
│ │ ├── Common.swift
│ │ ├── Constants.swift
│ │ ├── CustomVisualEffectView.swift
│ │ ├── DropAlert.swift
│ │ ├── DynamicTableView.swift
│ │ ├── JadeAsset.swift
│ │ ├── KeyboardViewController.swift
│ │ ├── LocalNotification.swift
│ │ ├── SearchTextField.swift
│ │ └── UIErrorLabel.swift
│ ├── Home/
│ │ ├── Cells/
│ │ │ ├── WalletListCell.swift
│ │ │ └── WalletListCell.xib
│ │ ├── Controllers/
│ │ │ ├── BiometricLoginViewController.swift
│ │ │ ├── HomeViewController.swift
│ │ │ ├── LoginViewController.swift
│ │ │ └── V5ViewController.swift
│ │ ├── Home.storyboard
│ │ └── LoginViewModel.swift
│ ├── ImproveSecurityViewController.swift
│ ├── Info.plist
│ ├── LTFlow/
│ │ ├── Controllers/
│ │ │ └── LTRecoverFunds/
│ │ │ └── LTRecoverFundsViewController.swift
│ │ ├── Create/
│ │ │ ├── LTCreateModel.swift
│ │ │ ├── LTCreateViewController.swift
│ │ │ ├── LTExportJadeViewController.swift
│ │ │ └── LTExportJadeViewModel.swift
│ │ ├── Details/
│ │ │ ├── LTDetailsCell/
│ │ │ │ ├── LTDetailsCell.swift
│ │ │ │ ├── LTDetailsCell.xib
│ │ │ │ └── LTDetailsCellModel.swift
│ │ │ ├── LTDetailsModel.swift
│ │ │ └── LTDetailsViewController.swift
│ │ ├── LTFlow.storyboard
│ │ ├── Redeem/
│ │ │ ├── Cells/
│ │ │ │ ├── LTRecoverFundsAddressCell.swift
│ │ │ │ ├── LTRecoverFundsAmountCell.swift
│ │ │ │ ├── LTRecoverFundsFeeCell.swift
│ │ │ │ ├── LTRecoverFundsSummaryCell.swift
│ │ │ │ └── LTRecoveryFundsErrorCell.swift
│ │ │ ├── LTRedeemViewController.swift
│ │ │ └── LTRedeemViewModel.swift
│ │ ├── Settings/
│ │ │ ├── LTSettingDialogCell/
│ │ │ │ ├── LTSettingDialogCell.swift
│ │ │ │ ├── LTSettingDialogCell.xib
│ │ │ │ └── LTSettingDialogCellModel.swift
│ │ │ ├── LTSettingsDialog.storyboard
│ │ │ ├── LTSettingsDialogModel.swift
│ │ │ ├── LTSettingsDialogViewController.swift
│ │ │ └── LTSettingsViewController.swift
│ │ └── Success/
│ │ ├── LTConfirmingViewController.swift
│ │ ├── LTSuccessViewController.swift
│ │ └── LTSuccessViewModel.swift
│ ├── Menu/
│ │ ├── PopoverMenu.storyboard
│ │ ├── PopoverMenuHomeViewController.swift
│ │ └── PopoverMenuUnarchiveViewController.swift
│ ├── ModalPresentation/
│ │ ├── ModalAnimator.swift
│ │ └── ModalPresentationController.swift
│ ├── OnBoard/
│ │ ├── Cells/
│ │ │ ├── MnemonicCell.swift
│ │ │ └── MnemonicWordCell.swift
│ │ ├── Controllers/
│ │ │ ├── GetStartedOnBoardViewController.swift
│ │ │ ├── KeyboardSuggestions.swift
│ │ │ ├── KeyboardSuggestions.xib
│ │ │ ├── MnemonicViewController.swift
│ │ │ ├── OnBoardAppAccessViewController.swift
│ │ │ ├── OnBoardAppPinViewController.swift
│ │ │ ├── SetPinViewController.swift
│ │ │ ├── SetupNewMoreActionsViewController.swift
│ │ │ ├── SetupNewViewController.swift
│ │ │ ├── StartOnBoardViewController.swift
│ │ │ └── WalletSettingsViewController.swift
│ │ ├── OnBoard.storyboard
│ │ ├── OnboardViewModel.swift
│ │ └── SetPinViewController.swift
│ ├── Onboarding/
│ │ ├── EnterMnemonicsViewController.xib
│ │ └── TOSViewController.xib
│ ├── PrivacyInfo.xcprivacy
│ ├── Receive/
│ │ ├── Cells/
│ │ │ ├── AmountCell.swift
│ │ │ ├── AmountCell.xib
│ │ │ ├── AmountCellModel.swift
│ │ │ ├── ChangeAccountCell/
│ │ │ │ ├── ChangeAccountCell.swift
│ │ │ │ └── ChangeAccountCell.xib
│ │ │ ├── LTInfoCell.swift
│ │ │ ├── LTInfoCell.xib
│ │ │ ├── LTInfoCellModel.swift
│ │ │ ├── LTNoteCell.swift
│ │ │ ├── LTNoteCell.xib
│ │ │ ├── LTNoteCellModel.swift
│ │ │ ├── ReceiveAddressCell.swift
│ │ │ ├── ReceiveAddressCell.xib
│ │ │ ├── ReceiveAddressCellModel.swift
│ │ │ ├── ReceiveAssetCell/
│ │ │ │ ├── ReceiveAssetCell.swift
│ │ │ │ ├── ReceiveAssetCell.xib
│ │ │ │ └── ReceiveAssetCellModel.swift
│ │ │ └── SelectorCell/
│ │ │ ├── SegmentedCell.swift
│ │ │ └── SegmentedCell.xib
│ │ ├── DialogFundingFee/
│ │ │ └── DialogFundingFeeViewController.swift
│ │ ├── LNInvoice/
│ │ │ ├── LNInvoiceViewController.swift
│ │ │ └── LNInvoiceViewModel.swift
│ │ ├── ReceiveFlow.storyboard
│ │ ├── ReceiveViewController.swift
│ │ └── ReceiveViewModel.swift
│ ├── Recovery/
│ │ ├── Controllers/
│ │ │ ├── BackupSuccessViewController.swift
│ │ │ ├── PhraseNoteDownViewController.swift
│ │ │ ├── PhraseNoteDownViewModel.swift
│ │ │ └── RecoveryVerifyViewController.swift
│ │ └── Recovery.storyboard
│ ├── Rive/
│ │ ├── Illustration Account Archived.riv
│ │ ├── Illustration Checklist.riv
│ │ ├── Illustration Checkmark.riv
│ │ ├── Illustration Envelope.riv
│ │ ├── Illustration Lightning Transaction.riv
│ │ ├── Illustration Recovery Phrase.riv
│ │ ├── Illustration Rocket.riv
│ │ ├── Illustration Stars Success.riv
│ │ ├── Illustration Wallet.riv
│ │ ├── animation_01_jade_v1.riv
│ │ ├── animation_02_jade_v1.riv
│ │ ├── animation_03_jade_v1.riv
│ │ ├── animation_04_jade_v1.riv
│ │ ├── animation_v5.riv
│ │ ├── create_wallet.riv
│ │ ├── jadeplus_1.riv
│ │ ├── jadeplus_2.riv
│ │ ├── jadeplus_3.riv
│ │ └── lightning_success.riv
│ ├── ScreenLockWindow.swift
│ ├── ScreenLocker.swift
│ ├── Sendflow/
│ │ ├── Cells/
│ │ │ ├── AccountAssetCell.swift
│ │ │ ├── AccountAssetCell.xib
│ │ │ ├── AssetAssetCellModel.swift
│ │ │ ├── SendFeeCell.swift
│ │ │ ├── SendFeeCell.xib
│ │ │ └── SendFeeCellModel.swift
│ │ ├── Controllers/
│ │ │ ├── ReEnable2faSuccessViewController.swift
│ │ │ ├── SendAddressInputViewController.swift
│ │ │ ├── SendAmountViewControllerLegacy.swift
│ │ │ ├── SendDialogFeeViewController.swift
│ │ │ ├── SendDialogFeeViewModel.swift
│ │ │ ├── SendFailViewController.swift
│ │ │ ├── SendFeeInfoViewController.swift
│ │ │ ├── SendHWConfirmViewController.swift
│ │ │ ├── SendTxConfirmViewController.swift
│ │ │ └── SendTxSuccessViewController.swift
│ │ ├── Coordinators/
│ │ │ └── SendCoordinator.swift
│ │ ├── Domain/
│ │ │ ├── Models/
│ │ │ │ ├── CreateTx.swift
│ │ │ │ ├── PaymentTarget.swift
│ │ │ │ └── TransactionDraft.swift
│ │ │ └── Parser/
│ │ │ └── PaymentTargetParser.swift
│ │ ├── Flow/
│ │ │ ├── AccountAsset/
│ │ │ │ ├── SendAccountAssetViewController.swift
│ │ │ │ ├── SendAccountAssetViewModel.swift
│ │ │ │ └── SendAccountAssetViewModelDelegate.swift
│ │ │ ├── Address/
│ │ │ │ ├── SendAddressViewController.swift
│ │ │ │ ├── SendAddressViewModel.swift
│ │ │ │ └── SendAddressViewModelDelegate.swift
│ │ │ ├── Amount/
│ │ │ │ ├── SendAmountViewController.swift
│ │ │ │ ├── SendAmountViewModel.swift
│ │ │ │ └── SendAmountViewModelDelegate.swift
│ │ │ ├── Error/
│ │ │ │ ├── SendFlowError.swift
│ │ │ │ └── SendFlowErrorDisplayable.swift
│ │ │ ├── Failure/
│ │ │ │ ├── SendFailureViewController.swift
│ │ │ │ ├── SendFailureViewModel.swift
│ │ │ │ └── SendFailureViewModelDelegate.swift
│ │ │ ├── HW/
│ │ │ │ ├── SendHWViewController.swift
│ │ │ │ └── SendHWViewModel.swift
│ │ │ ├── SendFlow.storyboard
│ │ │ ├── Sign/
│ │ │ │ ├── SendLwkSignViewController.swift
│ │ │ │ ├── SendLwkSignViewModel.swift
│ │ │ │ └── SendLwkSignViewModelDelegate.swift
│ │ │ ├── Success/
│ │ │ │ ├── SendSuccessViewController.swift
│ │ │ │ ├── SendSuccessViewModel.swift
│ │ │ │ └── SendSuccessViewModelDelegate.swift
│ │ │ ├── Swap/
│ │ │ │ ├── SendSwapViewController.swift
│ │ │ │ ├── SendSwapViewModel.swift
│ │ │ │ ├── SendSwapViewModelDelegate.swift
│ │ │ │ └── SwapPosition.swift
│ │ │ ├── SwapFee/
│ │ │ │ ├── Cells/
│ │ │ │ │ ├── SwapFeeCell.swift
│ │ │ │ │ ├── SwapFeeCell.xib
│ │ │ │ │ └── SwapFeeCellModel.swift
│ │ │ │ ├── SendSwapFeeViewController.swift
│ │ │ │ ├── SendSwapFeeViewModel.swift
│ │ │ │ └── SendSwapFeeViewModelDelegate.swift
│ │ │ └── Views/
│ │ │ ├── SendTitleView.swift
│ │ │ └── SendTitleView.xib
│ │ ├── Services/
│ │ │ ├── FeeEstimator.swift
│ │ │ ├── QuoteBuilder.swift
│ │ │ └── TransactionBuilder.swift
│ │ ├── Utilities/
│ │ │ └── AddressDisplay.swift
│ │ └── ViewModels/
│ │ ├── SendAddressInputViewModel.swift
│ │ ├── SendAmountViewModelLegacy.swift
│ │ ├── SendHWConfirmViewModel.swift
│ │ └── SendTxConfirmViewModel.swift
│ ├── Services/
│ │ ├── Api.swift
│ │ ├── AssetsManager/
│ │ │ ├── AssetsManagerBitcoin.swift
│ │ │ ├── AssetsManagerLiquid.swift
│ │ │ ├── AssetsManagerProtocol.swift
│ │ │ └── AssetsManagerTestnet.swift
│ │ ├── BackupHelper.swift
│ │ ├── DrawerAnimationManager.swift
│ │ ├── LangHelper.swift
│ │ ├── PromoManager.swift
│ │ ├── SafeNavigationManager.swift
│ │ ├── SessionsManager.swift
│ │ ├── StoreReviewManager.swift
│ │ ├── SupportManager.swift
│ │ ├── URLSchemeManager.swift
│ │ ├── VideoCaptureDump.swift
│ │ └── ZendeskSdk.swift
│ ├── Settings/
│ │ └── CsvViewController.swift
│ ├── Shared/
│ │ ├── Alert/
│ │ │ ├── AlertViewController.swift
│ │ │ └── AlertViewModel.swift
│ │ ├── Alert.storyboard
│ │ ├── Cells/
│ │ │ ├── DialogDetailCell.swift
│ │ │ └── DialogDetailCell.xib
│ │ ├── Controllers/
│ │ │ ├── DialogAbout/
│ │ │ │ └── DialogAboutViewController.swift
│ │ │ ├── DialogAccountIdViewController.swift
│ │ │ ├── DialogAmount/
│ │ │ │ └── DialogAmountViewController.swift
│ │ │ ├── DialogCustomFee/
│ │ │ │ └── DialogCustomFeeViewController.swift
│ │ │ ├── DialogDelete/
│ │ │ │ └── DialogDeleteViewController.swift
│ │ │ ├── DialogDetail/
│ │ │ │ └── DialogDetailViewController.swift
│ │ │ ├── DialogEdit/
│ │ │ │ └── DialogEditViewController.swift
│ │ │ ├── DialogExplorerOptionsViewController.swift
│ │ │ ├── DialogFeedback/
│ │ │ │ └── DialogFeedbackViewController.swift
│ │ │ ├── DialogGroupList/
│ │ │ │ ├── Cells/
│ │ │ │ │ └── DialogGroupListCell/
│ │ │ │ │ ├── DialogGroupListCell.swift
│ │ │ │ │ ├── DialogGroupListCell.xib
│ │ │ │ │ └── DialogGroupListCellModel.swift
│ │ │ │ ├── DialogGroupListViewController.swift
│ │ │ │ └── DialogGroupListViewModel.swift
│ │ │ ├── DialogInputDenomination/
│ │ │ │ ├── Cells/
│ │ │ │ │ └── DialogInputDenominationCell.swift
│ │ │ │ ├── DialogInputDenominationCell.xib
│ │ │ │ ├── DialogInputDenominationViewController.swift
│ │ │ │ ├── DialogInputDenominationViewModel.swift
│ │ │ │ └── Views/
│ │ │ │ ├── DialogInputDenominationFooter.swift
│ │ │ │ └── DialogInputDenominationFooter.xib
│ │ │ ├── DialogJadeCheckViewController.swift
│ │ │ ├── DialogLiquidAssetToFiat/
│ │ │ │ ├── Cells/
│ │ │ │ │ ├── DialogLiquidAssetToFiatCell.swift
│ │ │ │ │ └── DialogLiquidAssetToFiatCell.xib
│ │ │ │ ├── DialogLiquidAssetToFiatViewController.swift
│ │ │ │ ├── DialogLiquidAssetToFiatViewModel.swift
│ │ │ │ └── Views/
│ │ │ │ ├── DialogLiquidAssetToFiatFooter.swift
│ │ │ │ └── DialogLiquidAssetToFiatFooter.xib
│ │ │ ├── DialogList/
│ │ │ │ ├── Cells/
│ │ │ │ │ ├── AutoLogoutCell/
│ │ │ │ │ │ ├── AutoLogoutCell.swift
│ │ │ │ │ │ ├── AutoLogoutCell.xib
│ │ │ │ │ │ └── AutoLogoutCellModel.swift
│ │ │ │ │ ├── DialogEnable2faCell/
│ │ │ │ │ │ └── DialogEnable2faCell.swift
│ │ │ │ │ └── DialogListCell/
│ │ │ │ │ ├── DialogEnable2faCell.xib
│ │ │ │ │ ├── DialogEnable2faCellModel.swift
│ │ │ │ │ ├── DialogListCell.swift
│ │ │ │ │ ├── DialogListCell.xib
│ │ │ │ │ └── DialogListCellModel.swift
│ │ │ │ ├── DialogCountlyViewController.swift
│ │ │ │ ├── DialogListViewController.swift
│ │ │ │ └── DialogListViewModel.swift
│ │ │ ├── DialogLoginPassphraseViewController.swift
│ │ │ ├── DialogMnemonicLengthViewController.swift
│ │ │ ├── DialogOTAViewController.swift
│ │ │ ├── DialogPassphrase/
│ │ │ │ └── DialogPassphraseViewController.swift
│ │ │ ├── DialogReceiveShareTypeViewController.swift
│ │ │ ├── DialogReceiveVerifyAddressViewController.swift
│ │ │ ├── DialogRecipientDeleteViewController.swift
│ │ │ ├── DialogRecoveryHelpViewController.swift
│ │ │ ├── DialogRegistryFailViewController.swift
│ │ │ ├── DialogRename/
│ │ │ │ └── DialogRenameViewController.swift
│ │ │ ├── DialogSafeNavigationViewController.swift
│ │ │ ├── DialogSendHWSummaryViewController.swift
│ │ │ ├── DialogShareTxOptionViewController.swift
│ │ │ ├── DialogSwapJade/
│ │ │ │ └── DialogSwapJadeViewController.swift
│ │ │ ├── DialogSwapJadeEnabled/
│ │ │ │ └── DialogSwapJadeEnabledViewController.swift
│ │ │ ├── DialogTableViewController.swift
│ │ │ ├── DialogViewController.swift
│ │ │ ├── DialogWatchOnlySetUpViewController.swift
│ │ │ └── Dialogdenomination/
│ │ │ ├── Cells/
│ │ │ │ ├── DialogDenominationCell.swift
│ │ │ │ └── DialogDenominationCell.xib
│ │ │ ├── DialogDenominationViewController.swift
│ │ │ └── DialogDenominationViewModel.swift
│ │ ├── Dialogs.storyboard
│ │ ├── LTSettingsDialogViewController.storyboard
│ │ ├── Models/
│ │ │ ├── AccountPrefs.swift
│ │ │ ├── DebugPrefs.swift
│ │ │ ├── Enable2faPrefs.swift
│ │ │ ├── LoginPrefs.swift
│ │ │ ├── MoreOptPrefs.swift
│ │ │ ├── NetworkPrefs.swift
│ │ │ ├── PhrasePrefs.swift
│ │ │ ├── RedeemPrefs.swift
│ │ │ ├── SharePrefs.swift
│ │ │ ├── WalletListPrefs.swift
│ │ │ └── WalletPrefs.swift
│ │ └── Shared.storyboard
│ ├── Survey/
│ │ ├── Survey.storyboard
│ │ └── SurveyViewController.swift
│ ├── TestAutomation/
│ │ └── AccessibilityIds.swift
│ ├── TxDetails/
│ │ ├── Cells/
│ │ │ ├── TxDetailsActionCell.swift
│ │ │ ├── TxDetailsActionCell.xib
│ │ │ ├── TxDetailsActionCellModel.swift
│ │ │ ├── TxDetailsAmountCell.swift
│ │ │ ├── TxDetailsAmountCell.xib
│ │ │ ├── TxDetailsAmountCellModel.swift
│ │ │ ├── TxDetailsInfoCell.swift
│ │ │ ├── TxDetailsInfoCell.xib
│ │ │ ├── TxDetailsInfoCellModel.swift
│ │ │ ├── TxDetailsMultiAmountCell.swift
│ │ │ ├── TxDetailsMultiAmountCell.xib
│ │ │ ├── TxDetailsStatusCell.swift
│ │ │ ├── TxDetailsStatusCell.xib
│ │ │ ├── TxDetailsStatusCellModel.swift
│ │ │ ├── TxDetailsTotalsCell.swift
│ │ │ ├── TxDetailsTotalsCell.xib
│ │ │ └── TxDetailsTotalsCellModel.swift
│ │ ├── MoreInfo/
│ │ │ ├── Cells/
│ │ │ │ ├── TxDetailsMoreInfoCell.swift
│ │ │ │ ├── TxDetailsMoreInfoCell.xib
│ │ │ │ └── TxDetailsMoreInfoCellModel.swift
│ │ │ ├── TxDetailsMoreInfoViewController.swift
│ │ │ └── TxDetailsMoreInfoViewModel.swift
│ │ ├── TxDetails.storyboard
│ │ ├── TxDetailsViewController.swift
│ │ └── TxDetailsViewModel.swift
│ ├── UserSettings/
│ │ ├── Cells/
│ │ │ ├── CurrencyCell.swift
│ │ │ ├── FooterQrCell.swift
│ │ │ ├── MultisigSettingsCell.swift
│ │ │ ├── MultisigSettingsCellModel.swift
│ │ │ ├── TFACells/
│ │ │ │ ├── TFAActionsCell.swift
│ │ │ │ ├── TFAActionsCell.xib
│ │ │ │ ├── TFACell.swift
│ │ │ │ ├── TFACell.xib
│ │ │ │ ├── TFAEmptyCell.swift
│ │ │ │ ├── TFAEmptyCell.xib
│ │ │ │ ├── TFAHeaderCell.swift
│ │ │ │ ├── TFAHeaderCell.xib
│ │ │ │ ├── TFAMethodCell.swift
│ │ │ │ ├── TFAMethodCell.xib
│ │ │ │ ├── TFANetworkSelectCell.swift
│ │ │ │ ├── TFANetworkSelectCell.xib
│ │ │ │ ├── TFATimeCell.swift
│ │ │ │ └── TFATimeCell.xib
│ │ │ ├── TwoFaCsvTimeCell.swift
│ │ │ ├── TwoFaMethodsCell.swift
│ │ │ ├── TwoFactorSettingsCell.swift
│ │ │ ├── TwoFactorSettingsCellModel.swift
│ │ │ ├── WatchOnlySettingsCell.swift
│ │ │ ├── WatchOnlySettingsCellModel.swift
│ │ │ └── WordCell.swift
│ │ ├── Controllers/
│ │ │ ├── AccountArchivedViewController.swift
│ │ │ ├── MultisigSettingsViewController.swift
│ │ │ ├── PgpViewController.swift
│ │ │ ├── RecoveryTransactionsViewController.swift
│ │ │ ├── ShowMnemonicsViewController.swift
│ │ │ ├── TFAViewController.swift
│ │ │ ├── TwoFactorAuthenticationViewController.swift
│ │ │ ├── TwoFactorLimitViewController.swift
│ │ │ └── WatchOnlySettingsViewController.swift
│ │ ├── Models/
│ │ │ ├── MultisigSettings.swift
│ │ │ └── WatchOnlySettings.swift
│ │ ├── Swaps/
│ │ │ ├── JadeBoltzExportViewController.swift
│ │ │ ├── JadeBoltzExportViewModel.swift
│ │ │ ├── JadeBoltzSwapViewController.swift
│ │ │ └── JadeBoltzSwapViewModel.swift
│ │ ├── UserSettings.storyboard
│ │ └── ViewModels/
│ │ ├── MultisigSettingsViewModel.swift
│ │ ├── RecoveryTransactionsViewModel.swift
│ │ ├── TFAViewModel.swift
│ │ ├── TwoFactorSettingsViewModel.swift
│ │ └── WatchOnlySettingsViewModel.swift
│ ├── Utility/
│ │ ├── AssetSelect/
│ │ │ ├── AssetSelectCell/
│ │ │ │ ├── AnyAssetCell.swift
│ │ │ │ ├── AnyAssetCell.xib
│ │ │ │ ├── AssetSelectCell.swift
│ │ │ │ ├── AssetSelectCell.xib
│ │ │ │ └── AssetSelectCellModel.swift
│ │ │ ├── AssetSelectViewController.swift
│ │ │ └── AssetSelectViewModel.swift
│ │ ├── Browser/
│ │ │ └── BrowserViewController.swift
│ │ ├── GreenPicker/
│ │ │ ├── Cells/
│ │ │ │ ├── GreenPickerCell.swift
│ │ │ │ └── GreenPickerCell.xib
│ │ │ ├── GreenPIckerViewController.swift
│ │ │ └── GreenPickerViewModel.swift
│ │ ├── Lang/
│ │ │ ├── Cells/
│ │ │ │ ├── LangCell.swift
│ │ │ │ ├── LangCell.xib
│ │ │ │ └── LangCellModel.swift
│ │ │ ├── LangSelectViewController.swift
│ │ │ └── LangSelectViewModel.swift
│ │ ├── MasterKey/
│ │ │ └── MasterKeyViewController.swift
│ │ ├── SecuritySelect/
│ │ │ ├── Cells/
│ │ │ │ ├── PolicyCell.swift
│ │ │ │ ├── PolicyCell.xib
│ │ │ │ ├── PolicyCellModel.swift
│ │ │ │ └── PolicyCellType.swift
│ │ │ ├── SecuritySelectViewController.swift
│ │ │ └── SecuritySelectViewModel.swift
│ │ └── Utility.storyboard
│ ├── Views/
│ │ ├── ArcView/
│ │ │ └── ArcView.swift
│ │ ├── ProgressView/
│ │ │ ├── Loader.swift
│ │ │ ├── Loader.xib
│ │ │ ├── ProgressShapeLayer.swift
│ │ │ ├── ProgressView.swift
│ │ │ ├── RotationAnimation.swift
│ │ │ ├── StrokeAnimation.swift
│ │ │ └── StrokeColorAnimation.swift
│ │ ├── SquareSliderView/
│ │ │ └── SquareSliderView.swift
│ │ └── TransactionBarItem/
│ │ ├── TransactionBarItem.swift
│ │ └── TransactionBarItem.xib
│ ├── WOFlow/
│ │ ├── Controllers/
│ │ │ ├── WODetailsCompactViewController.swift
│ │ │ ├── WOLoginViewController.swift
│ │ │ └── WOSetupViewController.swift
│ │ ├── ViewModels/
│ │ │ └── WOViewModel.swift
│ │ └── WOFlow.storyboard
│ ├── Wallet/
│ │ ├── ActionsSheet/
│ │ │ ├── ActionsSheetFlow.storyboard
│ │ │ ├── ActionsSheetViewController.swift
│ │ │ ├── ActionsSheetViewModel.swift
│ │ │ └── Cells/
│ │ │ ├── ActionsSheetCell.swift
│ │ │ ├── ActionsSheetCell.xib
│ │ │ └── ActionsSheetCellModel.swift
│ │ ├── DenominationExchangeFlow/
│ │ │ ├── DenominationExchangeFlow.storyboard
│ │ │ ├── DenominationExchangeViewController.swift
│ │ │ ├── DenominationExchangeViewModel.swift
│ │ │ ├── DialogExchangeViewController.swift
│ │ │ └── DialogExchangeViewModel.swift
│ │ ├── Learn2faViewController.swift
│ │ ├── Promo/
│ │ │ ├── PromoFlow.storyboard
│ │ │ └── PromoViewController.swift
│ │ ├── ReEnable2fa/
│ │ │ ├── Cells/
│ │ │ │ ├── ReEnable2faAccountCell.swift
│ │ │ │ └── ReEnable2faAccountCell.xib
│ │ │ ├── Controllers/
│ │ │ │ ├── ReEnable2faViewController.swift
│ │ │ │ └── ReEnable2faViewModel.swift
│ │ │ └── ReEnable2fa.storyboard
│ │ ├── Reactivate2faViewController.swift
│ │ ├── SystemMessageViewController.swift
│ │ ├── Views/
│ │ │ ├── NetworkSelectorBarItem.swift
│ │ │ └── NetworkSelectorBarItem.xib
│ │ └── Wallet.storyboard
│ ├── WalletTabBar/
│ │ ├── Core/
│ │ │ ├── Models/
│ │ │ │ ├── Refresh.swift
│ │ │ │ ├── Sections.swift
│ │ │ │ └── WalletState.swift
│ │ │ └── WalletDataModel.swift
│ │ ├── DialogAccounts/
│ │ │ ├── DialogAccountCell/
│ │ │ │ ├── AccountCellModel.swift
│ │ │ │ ├── DialogAccountCell.swift
│ │ │ │ └── DialogAccountCell.xib
│ │ │ ├── DialogAccountsViewController.swift
│ │ │ └── DialogAccountsViewModel.swift
│ │ ├── DialogActions/
│ │ │ ├── DialogActionsViewController.swift
│ │ │ └── DialogActionsViewModel.swift
│ │ ├── DialogCompareSecurity/
│ │ │ └── DialogCompareSecurityViewController.swift
│ │ ├── EditProtection/
│ │ │ └── EditProtectionViewController.swift
│ │ ├── ManageAsset/
│ │ │ ├── Cells/
│ │ │ │ ├── AssetBalanceCell.swift
│ │ │ │ └── AssetBalanceCell.xib
│ │ │ ├── ManageAsset.storyboard
│ │ │ ├── ManageAssetViewController.swift
│ │ │ └── ManageAssetViewModel.swift
│ │ ├── ManualBackup/
│ │ │ ├── ManualBackupViewController.swift
│ │ │ └── ManualBackupViewModel.swift
│ │ ├── TabBar/
│ │ │ ├── WalletTabBar.swift
│ │ │ ├── WalletTabBarModel.swift
│ │ │ └── WalletTabBarViewController.swift
│ │ ├── Tabs/
│ │ │ ├── Cells/
│ │ │ │ ├── ActionCell/
│ │ │ │ │ ├── ActionCell.swift
│ │ │ │ │ ├── ActionCell.xib
│ │ │ │ │ └── ActionCellModel.swift
│ │ │ │ ├── AlertCardCell/
│ │ │ │ │ ├── AlerCardCellModel.swift
│ │ │ │ │ ├── AlertCardCell.swift
│ │ │ │ │ └── AlertCardCell.xib
│ │ │ │ ├── BalanceCell/
│ │ │ │ │ ├── BalanceCell.swift
│ │ │ │ │ ├── BalanceCell.xib
│ │ │ │ │ └── BalanceCellModel.swift
│ │ │ │ ├── PreferenceCell/
│ │ │ │ │ ├── PreferenceCell.swift
│ │ │ │ │ ├── PreferenceCell.xib
│ │ │ │ │ └── PreferenceCellModel.swift
│ │ │ │ ├── PriceChartCell/
│ │ │ │ │ ├── PriceChartCell.swift
│ │ │ │ │ ├── PriceChartCell.xib
│ │ │ │ │ └── PriceChartCellModel.swift
│ │ │ │ ├── PromoCell/
│ │ │ │ │ ├── Promo.swift
│ │ │ │ │ ├── PromoCellModel.swift
│ │ │ │ │ ├── PromoLayout0Cell.swift
│ │ │ │ │ ├── PromoLayout0Cell.xib
│ │ │ │ │ ├── PromoLayout1Cell.swift
│ │ │ │ │ ├── PromoLayout1Cell.xib
│ │ │ │ │ ├── PromoLayout2Cell.swift
│ │ │ │ │ └── PromoLayout2Cell.xib
│ │ │ │ ├── SecurityLevelCell/
│ │ │ │ │ ├── SecurityLevelCell.swift
│ │ │ │ │ └── SecurityLevelCell.xib
│ │ │ │ ├── SettingsCell/
│ │ │ │ │ ├── SettingsCell.swift
│ │ │ │ │ └── SettingsCell.xib
│ │ │ │ ├── TabHeaderCell/
│ │ │ │ │ ├── TabHeaderCell.swift
│ │ │ │ │ └── TabHeaderCell.xib
│ │ │ │ ├── TransactActionsCell/
│ │ │ │ │ ├── TransactActions.swift
│ │ │ │ │ ├── TransactActionsCell.swift
│ │ │ │ │ └── TransactActionsCell.xib
│ │ │ │ ├── TransactionCell/
│ │ │ │ │ ├── MultiLabelView.swift
│ │ │ │ │ ├── MultiLabelView.xib
│ │ │ │ │ ├── MultiLabelViewModel.swift
│ │ │ │ │ ├── SingleLabelView.swift
│ │ │ │ │ ├── SingleLabelView.xib
│ │ │ │ │ ├── TransactionCell.swift
│ │ │ │ │ ├── TransactionCell.xib
│ │ │ │ │ └── TransactionCellModel.swift
│ │ │ │ ├── WalletAssetCell/
│ │ │ │ │ ├── WalletAssetCell.swift
│ │ │ │ │ ├── WalletAssetCell.xib
│ │ │ │ │ └── WalletAssetCellModel.swift
│ │ │ │ └── WatchonlyCell/
│ │ │ │ ├── WatchonlyCell.swift
│ │ │ │ └── WatchonlyCell.xib
│ │ │ ├── Home/
│ │ │ │ ├── PriceChartModel.swift
│ │ │ │ ├── TabHomeVC.swift
│ │ │ │ └── TabHomeVM.swift
│ │ │ ├── Security/
│ │ │ │ ├── TabSecurityVC.swift
│ │ │ │ └── TabSecurityVM.swift
│ │ │ ├── Settings/
│ │ │ │ ├── TabSettingsCellModel.swift
│ │ │ │ ├── TabSettingsModel.swift
│ │ │ │ ├── TabSettingsVC.swift
│ │ │ │ └── TabSettingsVM.swift
│ │ │ ├── TabViewController.swift
│ │ │ ├── TabViewModel.swift
│ │ │ ├── Transact/
│ │ │ │ ├── TabTransactVC.swift
│ │ │ │ └── TabTransactVM.swift
│ │ │ ├── WalletTab.storyboard
│ │ │ └── WalletTab.swift
│ │ └── WelcomeView/
│ │ ├── WelcomeView.swift
│ │ └── WelcomeView.xib
│ ├── cs.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── de.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── en.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── es.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── fr.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── gaiosDebug.entitlements
│ ├── gaiosRelease.entitlements
│ ├── gaiosStaging.entitlements
│ ├── he.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── it.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── ja.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── ko.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── nl.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── pt-BR.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── ro.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── ru.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── uk.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── vi.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ └── zh.lproj/
│ ├── InfoPlist.strings
│ └── Localizable.strings
├── gaios.xcodeproj/
│ ├── project.pbxproj
│ ├── project.xcworkspace/
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata/
│ │ └── swiftpm/
│ │ └── Package.resolved
│ └── xcshareddata/
│ └── xcschemes/
│ ├── NotificationService.xcscheme
│ └── gaios.xcscheme
├── gaiosTests/
│ ├── Info.plist
│ └── gaiosTests.swift
├── gaiosUITests/
│ ├── Info.plist
│ ├── Screens/
│ │ ├── DialogTorSingleSig.swift
│ │ └── ScreenLock.swift
│ └── Suite/
│ └── WalletAccountsUITests.swift
├── gdk/
│ ├── Extensions/
│ │ ├── GDKResolver.swift
│ │ ├── URL.swift
│ │ └── Utils.swift
│ └── Models/
│ ├── AccountType.swift
│ ├── Address.swift
│ ├── Assets.swift
│ ├── Balance.swift
│ ├── Connection.swift
│ ├── Credentials.swift
│ ├── EventType.swift
│ ├── Events.swift
│ ├── Gdk.swift
│ ├── Network.swift
│ ├── NetworkSecurityCase.swift
│ ├── NetworkSettings.swift
│ ├── PinData.swift
│ ├── Settings.swift
│ ├── TorNotification.swift
│ ├── Transaction.swift
│ ├── Transactions.swift
│ ├── TwoFactorConfig.swift
│ └── WalletItem.swift
├── greenaddress/
│ ├── Codable.swift
│ ├── GDKSession.swift
│ └── Wally.swift
├── hw/
│ ├── Extensions/
│ │ ├── AnyPublisher.swift
│ │ ├── CBOR.swift
│ │ ├── Number.swift
│ │ └── String.swift
│ ├── HWResolver.swift
│ ├── Jade/
│ │ ├── BleJadeConnection.swift
│ │ ├── Jade.swift
│ │ ├── JadeCommands.swift
│ │ ├── JadeMessage.swift
│ │ ├── QrJadeConnection.swift
│ │ └── TxInput.swift
│ ├── Ledger/
│ │ ├── BleLedger.swift
│ │ ├── BleLedgerCommands.swift
│ │ └── BleLedgerConnection.swift
│ ├── Models/
│ │ ├── AuthResolver.swift
│ │ ├── Commitment.swift
│ │ ├── Enums.swift
│ │ ├── HWDevice.swift
│ │ ├── HWError.swift
│ │ ├── InputOutput.swift
│ │ ├── TxChangeOutput.swift
│ │ ├── TxInput.swift
│ │ └── Utils.swift
│ └── Protocols/
│ ├── HWConnectionProtocol.swift
│ └── HWProtocol.swift
├── lightning/
│ ├── .gitignore
│ ├── Bundle.swift
│ ├── GreenlightSdk.swift
│ ├── LNExtensions.swift
│ ├── LightningSdk.swift
│ ├── LightningTypes.swift
│ ├── Modals/
│ │ ├── AppGreenlightCredentials.swift
│ │ └── GreenlightMnemonicAndCredentials.swift
│ ├── Utils.swift
│ ├── greenlight_device_cert.txt
│ └── greenlight_device_key.txt
└── tools/
├── bump_gdk.sh
├── check_localization.py
├── create_permission_strings_file.py
├── distribute.sh
├── fetch_gdk_binaries.sh
├── permission.txt
└── transifex.sh
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/ISSUE_TEMPLATE.md
================================================
### Description
<!-- brief description of the bug -->
#### Version
<!-- commid id or version number -->
### Steps to reproduce
<!--if you can reliably reproduce the bug, list the steps here -->
### Expected behaviour
<!--description of the expected behavior -->
### Actual behaviour
<!-- explain what happened instead of the expected behaviour -->
### Screenshots
<!--Screenshots if gui related, drag and drop to add to the issue -->
#### Device or machine
<!-- device/machine used, operating system -->
#### Additional info
<!-- Additional information useful for debugging (e.g. logs) -->
================================================
FILE: .gitignore
================================================
xcuserdata
libgdk
Pods
gaios.xcworkspace
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
dev
dist
breez_sdk
.env
gaios.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
fastlane/.env.default
================================================
FILE: .gitlab/issue_templates/Bug.md
================================================
### Description
<!-- brief description of the bug -->
#### Version
<!-- commid id or version number -->
### Steps to reproduce
<!--if you can reliably reproduce the bug, list the steps here -->
### Expected behaviour
<!--description of the expected behavior -->
### Actual behaviour
<!-- explain what happened instead of the expected behaviour -->
### Screenshots
<!--Screenshots if gui related, drag and drop to add to the issue -->
#### Device or machine
<!-- device/machine used, operating system -->
#### Additional info
<!-- Additional information useful for debugging (e.g. logs) -->
================================================
FILE: .gitlab-ci.yml
================================================
stages:
- security
- format
- build
- test
- distribute_qa
- deploy
- e2e
include:
- template: Jobs/SAST.gitlab-ci.yml
- template: Jobs/Secret-Detection.gitlab-ci.yml
- template: Jobs/Dependency-Scanning.v2.gitlab-ci.yml
# Global Variables
variables:
GCS_BUCKET: "green-ios-builds"
SAST_EXCLUDED_PATHS: "node_modules, .git"
DS_MAX_DEPTH: 5
AST_ENABLE_MR_PIPELINES: "false"
# FORMAT
.setup_env:
before_script:
- export LC_ALL=en_US.UTF-8
- export LANG=en_US.UTF-8
- ruby --version && gem --version && fastlane --version
check_format:
stage: format
extends: .setup_env
tags:
- mini
script:
- fastlane run swiftlint
check_localization:
stage: format
extends: .setup_env
needs: []
tags:
- mini
script:
- python3 tools/check_localization.py
# BUILD
build_strings:
stage: build
when: manual
artifacts:
name: "green-ios-strings-$CI_COMMIT_REF_NAME"
expire_in: 1 day
when: on_success
paths:
- translations
tags:
- mini
variables:
TX_TOKEN: $TX_TOKEN
script:
- ./tools/transifex.sh -t ${TX_TOKEN}
- mkdir translations
- cp -rf gaios/*.lproj translations
- rm -rf translations/Base.lproj
qa_debug_simulator:
stage: build
when: manual
extends: .setup_env
tags:
- mini
artifacts:
name: "green-ios-debug-$CI_COMMIT_REF_NAME"
expire_in: 1 day
when: on_success
paths:
- debug/Build/Products/Debug-iphonesimulator/gaios.app
variables:
GDK_COMMIT: latest
script:
- if [ "$GDK_COMMIT" != "latest" ]; then GDK_OPT="-c $GDK_COMMIT"; fi
- ./tools/fetch_gdk_binaries.sh $GDK_OPT
- fastlane build_unsigned_debug
development:
stage: build
extends: .setup_env
tags:
- osx-m4
artifacts:
name: "green-ios-development-$CI_COMMIT_REF_NAME"
expire_in: 1 day
when: on_success
paths:
- dev
variables:
GDK_COMMIT: "latest"
script:
- if [ "$GDK_COMMIT" != "latest" ]; then GDK_OPT="-c $GDK_COMMIT"; fi
- ./tools/fetch_gdk_binaries.sh $GDK_OPT
- fastlane dev_release
production:
stage: build
when: manual
extends: .setup_env
tags:
- osx-m4
artifacts:
name: "green-ios-production-$CI_COMMIT_REF_NAME"
expire_in: 1 day
when: on_success
paths:
- prod
variables:
GDK_COMMIT: latest
script:
- if [ "$GDK_COMMIT" != "latest" ]; then GDK_OPT="-c $GDK_COMMIT"; fi
- ./tools/fetch_gdk_binaries.sh $GDK_OPT
- ruby --version && gem --version && fastlane --version
- fastlane prod_release
# SECURITY
sast:
stage: security
secret_detection:
stage: security
dependency-scanning:
stage: security
# UPLOAD
.distribute: &distribute
- ./tools/distribute.sh --app **/*.ipa --dest $FOLDER --url $LINK
- echo "$LINK/index.html" | tee -a link | qrencode -t UTF8 && cat link
.upload_countly: &upload_countly
- mkdir tmp && unzip ./**/*.app.dSYM.zip -d tmp
- COUNTLY_UPLOADER=$(find ~/Library/Developer/Xcode/DerivedData -iname countly_dsym_uploader.sh | head -n 1)
- find ./tmp -name \*.dSYM -exec $COUNTLY_UPLOADER $COUNTLY_APP_HOST $COUNTLY_APP_KEY {} \;
distribute_development:
stage: distribute_qa
needs: ["development"]
tags:
- osx-m4
artifacts:
name: "green-ios-development-$CI_COMMIT_REF_NAME"
expire_in: 1 day
when: on_success
paths:
- dev
variables:
COUNTLY_APP_KEY: $COUNTLY_APP_KEY_DEV
COUNTLY_APP_HOST: $COUNTLY_APP_HOST
FOLDER: "dev"
LINK: "https://storage.googleapis.com/green-ios-builds/$CI_PROJECT_NAME-$CI_COMMIT_SHA-dev"
script:
- *upload_countly
- *distribute
distribute_production:
stage: distribute_qa
needs: ["production"]
tags:
- osx-m4
artifacts:
name: "green-ios-production-$CI_COMMIT_REF_NAME"
expire_in: 1 day
when: on_success
paths:
- prod
variables:
COUNTLY_APP_KEY: $COUNTLY_APP_KEY_PROD
COUNTLY_APP_HOST: $COUNTLY_APP_HOST
FOLDER: "prod"
LINK: "https://storage.googleapis.com/green-ios-builds/$CI_PROJECT_NAME-$CI_COMMIT_SHA-prod"
script:
- *upload_countly
- *distribute
# STORE
upload_apple_store:
when: manual
stage: deploy
needs: ["distribute_production"]
tags:
- osx-m4
artifacts:
name: "green-ios-production-$CI_COMMIT_REF_NAME"
expire_in: 1 day
when: on_success
paths:
- prod
script:
- fastlane upload_apple_store --verbose
timeout: 2 hours
# GCLOUD
.cp_gcloud: &cp_gcloud
- echo gs://$URLPATH
- TMPF=$(mktemp) || exit 1
- echo $GCLOUD_PUSH_KEY > $TMPF
- export GOOGLE_APPLICATION_CREDENTIALS=$TMPF
- gcloud auth activate-service-account --key-file=$TMPF
- gsutil cp -r $CI_PROJECT_DIR/$FOLDER gs://$URLPATH
- echo "https://storage.googleapis.com/$URLPATH/index.html"
cp_gcloud_development:
image: blockstream/gcloud-docker-tf:1.1.7
needs: ["distribute_development"]
tags:
- ga
stage: deploy
variables:
FOLDER: "dev"
URLPATH: "green-ios-builds/$CI_PROJECT_NAME-$CI_COMMIT_SHA-dev"
script:
- *cp_gcloud
cp_gcloud_production:
image: blockstream/gcloud-docker-tf:1.1.7
needs: ["distribute_production"]
tags:
- ga
stage: deploy
variables:
FOLDER: "prod"
URLPATH: "green-ios-builds/$CI_PROJECT_NAME-$CI_COMMIT_SHA-prod"
script:
- *cp_gcloud
# ============================================
# E2E TEST TRIGGER WORKFLOWS
# ============================================
# E2E Build Template (Simulator .app for Maestro)
.e2e_build_template:
stage: build
extends: .setup_env
tags:
- osx-m4
variables:
GDK_COMMIT: latest
script:
- if [ "$GDK_COMMIT" != "latest" ]; then GDK_OPT="-c $GDK_COMMIT"; fi
- ./tools/fetch_gdk_binaries.sh $GDK_OPT
- fastlane build_unsigned_debug
- cd debug/Build/Products/Debug-iphonesimulator && zip -r ../../../../gaios.app.zip gaios.app
artifacts:
paths:
- gaios.app.zip
expire_in: 1 day
timeout: 45 minutes
# E2E Upload Template
.e2e_upload_template:
stage: e2e
image: blockstream/gcloud-docker-tf:1.1.7
tags:
- ga
script:
- TMPF=$(mktemp) || exit 1
- echo $GCLOUD_PUSH_KEY > $TMPF
- export GOOGLE_APPLICATION_CREDENTIALS=$TMPF
- gcloud auth activate-service-account --key-file=$TMPF
- gsutil cp gaios.app.zip "gs://${GCS_BUCKET}/${E2E_APP_NAME}"
- echo "https://storage.googleapis.com/${GCS_BUCKET}/${E2E_APP_NAME}"
# --- Nightly E2E Jobs ---
e2e:nightly:build:
extends: .e2e_build_template
needs: []
rules:
- if: $CI_PIPELINE_SOURCE == "schedule"
e2e:nightly:upload:
extends: .e2e_upload_template
needs: ["e2e:nightly:build"]
variables:
E2E_APP_NAME: "${CI_PROJECT_NAME}-${CI_COMMIT_SHA}-nightly.app.zip"
rules:
- if: $CI_PIPELINE_SOURCE == "schedule"
e2e:nightly:trigger:
stage: e2e
needs:
- e2e:nightly:upload
rules:
- if: $CI_PIPELINE_SOURCE == "schedule"
trigger:
project: blockstream/green/maestro-blockstream
variables:
UPSTREAM_IOS_APP_URL: "https://storage.googleapis.com/${GCS_BUCKET}/${CI_PROJECT_NAME}-${CI_COMMIT_SHA}-nightly.app.zip"
UPSTREAM_IOS_APP_ID: "io.blockstream.greendev"
UPSTREAM_MODE: "full"
UPSTREAM_COMMIT_SHA: $CI_COMMIT_SHA
UPSTREAM_TYPE: "nightly"
# --- Release E2E Jobs ---
e2e:release:build:
extends: .e2e_build_template
needs: []
rules:
- if: $CI_COMMIT_TAG =~ /^release_\d+\.\d+\.\d+/
e2e:release:upload:
extends: .e2e_upload_template
needs: ["e2e:release:build"]
variables:
E2E_APP_NAME: "${CI_PROJECT_NAME}-${CI_COMMIT_TAG}.app.zip"
rules:
- if: $CI_COMMIT_TAG =~ /^release_\d+\.\d+\.\d+/
e2e:release:trigger:
stage: e2e
needs:
- e2e:release:upload
rules:
- if: $CI_COMMIT_TAG =~ /^release_\d+\.\d+\.\d+/
trigger:
project: blockstream/green/maestro-blockstream
variables:
UPSTREAM_IOS_APP_URL: "https://storage.googleapis.com/${GCS_BUCKET}/${CI_PROJECT_NAME}-${CI_COMMIT_TAG}.app.zip"
UPSTREAM_IOS_APP_ID: "io.blockstream.greendev"
UPSTREAM_MODE: "full"
UPSTREAM_COMMIT_SHA: $CI_COMMIT_SHA
UPSTREAM_COMMIT_TAG: $CI_COMMIT_TAG
UPSTREAM_TYPE: "release"
================================================
FILE: .swiftlint.yml
================================================
excluded:
- gaiosTests
- gaiosUITests
- libgdk
- tools
- Pods
- breez_sdk
- greenaddress/GreenAddress.swift
- gaios/GreenApplication.swift
- gaios/Wallet/Views/SlidingButton.swift
- gaios/Helpers/AuthenticationTypeHandler.swift
- debug
identifier_name:
severity: warning
validates_start_with_lowercase: false
min_length: 1
explicit_type_interface: true
cyclomatic_complexity:
ignores_case_statements: true
disabled_rules:
- force_try
- line_length
- type_body_length
- function_body_length
- file_length
- variable_name
- implicit_getter
- no_space_in_method_call
- inclusive_language
================================================
FILE: .tx/config
================================================
[main]
host = https://www.transifex.com
[o:blockstream:p:blockstream-green:r:localizablestrings]
file_filter = translations/blockstream-green.localizablestrings/<lang>.strings
source_file = Localizable.strings
source_lang = en
type = STRINGS
minimum_perc = 0
resource_name = Localizable.strings
================================================
FILE: BUILD.md
================================================
# Build Blockstream Green for iOS
## Build requirements
Install Xcode.
Get the command line tools with: (ensure to use "Software Update" to install updates)
`sudo xcode-select --install`
Make sure `xcode-select --print-path` returns `/Applications/Xcode.app/Contents/Developer` . Otherwise run:
`sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer`
On macOS 10.14 Mojave, you need an additional step after installing the command line tools:
`sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /`
## Clone the repo
```
git clone https://github.com/Blockstream/green_ios.git
cd green_ios
```
## How to build
#### Use the released native library (recommended):
Fetch the latest released gdk binaries (our cross-platform wallet library) with the following command:
`./tools/fetch_gdk_binaries.sh`
You can also cross compile it from source.
Use fastlane to build in prodution environment
`fastlane build_signed_prod_release`
#### Install the app
Open the project with Xcode and hit Play.
================================================
FILE: CHANGELOG.md
================================================
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [5.5.0] - 2026-06-08
### Added
- Send: support LNURL, BOLT12, and BIP-353 payment instructions
### Changed
- Send: improve support for paying Lightning invoices
- Receive: update Lightning invoice screen
- Receive: display funding fees for Lightning invoices
- Settings: update "Enable Lightning" UX
- Improve scanning QR codes
- Bump LWK to version 0.17.2
- Bump minimum required Jade firmware version to v1.0.40
### Fixed
- Minor UI issues
## [5.4.1] - 2026-05-18
### Changed
- Bump LWK to version 0.17.0
### Fixed
- Fix passphrase validation for bip39 wallets
## [5.4.0] - 2026-05-07
### Added
- Aggregate fiat total balance across all wallet assets
- Update Send flow for lightning
### Fixed
- Swap improvements
- QR Code improvements
- Bug fixes
### Changed
- Migrate lightning from Breez to Greenlight
- Upload logs as attachments to Zendesk
- Update GDK to Release 0.77.3
## [5.3.0] - 2026-04-07
### Added
- Add Jade Core device support
- Add Liquid asset pricing
### Changed
- Bump GDK to version 0.77.2
- Bump LWK to version 0.16.0
- Added swap ids to transaction details for lockup transactions
- Improve instructions for Jade Qr mode setup
- Improve error handling when no account is available to pay an invoice
#### Fixed
- Fix personal electrum server settings for testnet
- Trim non significant digits for min and max amount limits in swaps
- Fix ui glitch in transactions list
- Fix amount masking in transaction details when hide amounts option enabled
## [5.2.1] - 2026-03-17
### Added
- Added swap Id to transaction details
- Rescan swaps in settings
### Changed
- Bug fixes
## [5.2.0] - 2026-03-05
### Added
- Added cross chain swaps
- Added subaccounts creation in settings
- Extend support for HW
## [5.1.6] - 2025-12-22
### Changed
- Bug fixes on Jade connection
## [5.1.5] - 2025-12-16
### Changed
- Bug fixes
## [5.1.4] - 2025-12-10
### Added
- Cross chain transfers between liquid and lightning
- Bug fixes
## [5.1.3] - 2025-11-28
#### Changed
- Check custom oracle URLs in QR mode
- Increase minimum firmware version to 1.0.38
## [5.1.2] - 2025-11-12
### Changed
- Improved backup flow instructions
- Update security icons and copy
- Disable receive onchain for lightning node
- Improve error messages for lightning in receive
- Allow copy of lightning node diagnostic data in node info view
### Fixed
- Fix layout for send textfield when multiline input is pasted
- Fix firmware update dialog layout
- Fix sweep for lightning node onchain funds
- Transaction status label in tx details for unconfirmed transactions
- Removed invalid unicode characters from korean translations
## [5.1.1] - 2025-10-15
### Changed
- Update translations
## [5.1.0] - 2025-10-14
### Added
- Export and import PSBT from files in watch-only wallets
### Changed
- Uniform behaviour for preventing screenshots of sensitive info
- App settings screen redesign
- Streamlined watch-only wallets import flow with automatic detection
- Quicker access to watch-only wallets with faceID when selected from the wallets list
- Improved actions to rename and remove wallets in the list with swipe left gesture
- Consolidate app settings and about screen under a single menu
### Fixed
- Fixed sign message with Jade for address proof of ownership
- Fixes for ephemeral wallets login with bip39 passphrases
- Fix crash on pull down gesture to refresh in Home View
## [5.0.9] - 2025-09-08
### Changed
- Improved rename/remove wallet actions in home screen
- Improved setup Watch-Only
- Enable lightning rescan swaps
- Bump GDK to 0.76.0
- Deprecate spv options: users who want to self validate should connect to their own electrum server in app settings
### Fixed
- Authentication errors on lightning mnemonic screen
## [5.0.8] - 2025-08-07
### Fixed
- Liquid Bip21 uri validation
## [5.0.7] - 2025-07-31
### Added
- New home screen asset view navigation
- Subaccount discovery on pull down gesture
### Changed
- Wallets list: simplified UI
- Security tab: improved watch-only
### Fixed
- Fix supported Ledger companion app
- Fix 2FA reactivation on liquid pre-csv utxos
- Fix validation on bip21 liquid uri
## [5.0.6] - 2025-07-02
### Fixed
- Fix recovery phrase check in login view
- Fix restore after all PIN attempts failed
- Fix faceID login for some old wallets
## [5.0.4] - 2025-06-18
### Added
- Reuse a buy provider that led to a successful purchase
### Changed
- Fixes on Watch Only jade wallet
## [5.0.3] - 2025-06-17
### Changed
- Fixes on Watch Only wallet with FaceId
- Fix wallets list
## [5.0.2] - 2025-06-07
### Changed
- Bug fixes
## [5.0.1] - 2025-05-28
### Changed
- Bug fixes
## [5.0.0] - 2025-05-27
### Added
- UI Refresh
- New tab based navigation
- Bitcoin price chart in Home
- Nags to backup recovery phrase
- Notifications for buy related events
### Changed
- Streamlined onboarding postponing recovery phrase backup
- Improved buy bitcoin experience with in app selection of best quote and exchange
- Allow access in watchonly mode for Jade users with singlesig accounts
- Unlock Jade from within the wallet to perform operations with the device
- Update gdk to version 0.75.2
- Update breez to version 0.8.0
## [4.1.8] - 2025-04-01
### Changed
- Renamed L-BTC to LBTC
- Improved notifications translations
- Persist wallet list across app reinstallation
- Reduce login time
- Improved background lightning payments
- Bump GDK to 0.75.1
## [4.1.7] - 2025-02-21
### Added
- Language preference in App Settings
### Changed
- Update translations
- Bug fixing
## [4.1.6] - 2025-02-11
### Changed
- Update GDK to 0.74.3
- Improve support report
- Bug fixing
## [4.1.5] - 2025-02-03
### Changed
- Liquid network: enabled discount fees
## [4.1.4] - 2025-01-28
### Added
- Create support requests from the app
## [4.1.3] - 2025-01-09
### Changed
- Update GDK to 0.74.2
- Update Jade imagery
- Buy btc: UI improvement
## [4.1.1] - 2024-12-20
### Changed
- Update gdk to 0.74.0
- Added support for multilayout and video promos
- Update breez to 0.6.6
## [4.1.0] - 2024-11-20
### Added
- Buy btc through meld.io
### Changed
- Update gdk to 0.73.4
- Update breez to 0.6.3-rc2
- Countly promo data
## [4.0.38] - 2024-11-12
### Changed
- Improve promo banners
## [4.0.37] - 2024-11-06
### Added
- Jade upsells
### Changed
- Update gdk to 0.73.3
- QR code scan: improve visual feedback
- Various bug fixes
## [4.0.36] - 2024-10-23
### Added
- Allow redeposit of expired utxos in liquid multisig accounts
- QR mode for singlesig watch-only
### Changed
- Recovery phrase: improve QR view
- Minor bug fixes
- Update to breez 0.6.2 and enable trampoline payments by default
- Update gdk to 0.73.2
## [4.0.35] - 2024-09-24
### Added
- HW Address verification on expired 2FA ractivation
### Added
- Add OTA support for Jade v2
### Changed
- Improve QR code scanner
- 2fa dialog: improved usability with native keyboard
- Receive screen UI updates
- Update gdk to 0.73.0
## [4.0.32] - 2024-08-22
### Changed
- Improve LNURL auth and withdraw
- Update breez to 0.5.2
- Update gdk to 0.72.2
## [4.0.31] - 2024-07-25
### Added
- Rescan lightning swaps
- Set electrum TLS for custom electrum server
### Changed
- Updates in wallet preferences dialog
- Update breez to 0.5.1-rc6
- Improve lightning account deletion
## [4.0.30] - 2024-06-13
### Added
- Allow redeposit of expired utxos in bitcoin multisig accounts
### Changed
- Improvements to liquid assets caching
- Update breez to 0.4.2-rc1
- Improved send UI
- Update gdk to 0.71.3
- Improvements in transaction details
## [4.0.27] - 2024-05-03
### Added
- Support push notification to receive lightning payments
- Empty lightning account
- Export lightning logs
### Changed
- Update breez to 0.4.0-rc5
- Update gdk to 0.71.0
- Refactor transaction details screen
- Update translations
### Fixed
- Show fee calculation in send
## [4.0.26] - 2024-03-19
### Changed
- Update breez to 0.3.6
## [4.0.25] - 2024-03-12
### Added
- Import and export of liquid accounts with ct-descriptors
- Allow changing btc unit in watch-only wallets
### Fixed
- Fix About and Close Channel buttons
- 2FA reset flow: UI improvement
### Changed
- UI improvement in onboarding
- HW: moved remember device from onboarding to settings
- Make Lightning Shortcut opt-out
- Improve UI on Jade exporting liquid master blinding key
- Update gdk to 0.70.3
## [4.0.24] - 2024-02-07
### Added
- Support new Jade authentication protocol
### Changed
- Improve account and asset selector
- Improve lightning sweep and refund
- Adjust 2FA SMS activation
- Update Breez SDK to 0.2.15
- Disable 2FA limits in fiat
- Update GDK to 0.70.0
### Fixed
- Send screen: improved address typing and send all UX
## [4.0.23] - 2024-01-11
### Changed
- Watch-only wallets: fix denomination warn
- Improve QRCode density area
### Fixed
- Minor bugs fixes in lightning
## [4.0.22] - 2023-12-22
### Changed
- Navigation of all external web urls in app web view
- Update Breez SDK to 0.2.10
- Improve Bluetooth scanner
### Fixed
- Show derived lightning mnemonic from Jade
## [4.0.21] - 2023-12-08
### Added
- Subaccount discovery on logged wallet
### Fixed
- Improve tor connectivity
- Improve reconnection from background state
- Improve QR code scanner on triple camera iPhone
## [4.0.20] - 2023-11-29
### Added
- Enable 2FA call method as an SMS backup
### Fixed
- Remove lightning account with shortcut
## [4.0.19] - 2023-11-22
### Added
- Scan BCUR animated qr code
- Add watch-only import from Jade
- Add delegated Lightning account for Jade (bip85)
### Changed
- Update Breez SDK to 0.2.7
- Update GDK to 0.69.0
## [4.0.18] - 2023-11-07
### Added
- Lightning support LNURL withdraw
- Lightning Shortcuts
### Changed
- Update GDK to release 0.68.4
### Fixed
- Improve QR Scanner
- Improve Tor and auto-logout after timeout time in background
## [4.0.16] - 2023-10-17
### Fixed
- Fix racy crash when using camera
- Improve parsing of LNURL
- Fix connection to custom electrum server through Tor
### Changed
- Improve error messages
## [4.0.15] - 2023-10-12
### Changed
- Bump BreezSdk to 0.2.5
- Update GDK to Release 0.68.1
## [4.0.14] - 2023-10-05
### Changed
- Improving ble pairing and failure messages
- Bump BreezSdk to 0.2.3
## [4.0.13] - 2023-09-22
### Added
- Enable signing address with HW
- URI schema and deep link support
### Changed
- Update gdk to 0.67.1
- UI improvements on amount selection
- Warning for non-default PIN server
- Increase QRCode scanner area
- Improve support for host unblinding on Jade
- Improve contact support
## [4.0.11] - 2023-08-11
### Changed
- Update gdk to 0.0.65
- Improve signing on Ledger
- Improve bluetooth scanning
### Added
- Address authentication for singlesig software wallets
- UI improvements to lightning accounts
## [4.0.10] - 2023-07-25
### Changed
- Improve QR code readability
- Update performance metrics
- Update greenlight library
## [4.0.9] - 2023-06-29
### Changed
- New unified dialog to change denomination and exchange
- Improve Lightning send
## [4.0.8] - 2023-06-12
### Changed
- Fix for un-initialized Jade wallets
## [4.0.7] - 2023-06-08
### Changed
- Bug fixes
## [4.0.6] - 2023-06-06
### Changed
- Bug fixes
## [4.0.5] - 2023-06-05
### Added
- Lightning support
### Changed
- Update gdk to 0.0.63
- UI improvements for lightning account
## [4.0.4] - 2023-05-04
### Changed
- Improves performance on login
- UI improvements on content loading
- Update gdk to 0.0.62
## [4.0.3] - 2023-04-28
### Added
- Add import of watch-only wallets through xpubs and descriptors from QR codes or files
- Allow import of Coldcard watch-only in generic json and electrum format
### Changed
- UI improvements for smaller screens
### Fixed
- Setup Pgp on multiple multisig networks
- Fix sweep transaction in Watch-Only mode
- Fix send button UI in watch-only mode
## [4.0.2] - 2023-04-20
### Fixed
- Enable emergency restore on invalid pin wallet
- Bug fixes
## [4.0.1] - 2023-04-18
### Changed
- Use swift package dependecies instead cocoapods
- Split workspace in multiple subprojects
- Update to gdk 0.0.61
- Bug fixes
## [4.0.0] - 2023-04-12
### Changed
- UI improvements
- Bug fixes
## [4.0.0-beta5] - 2023-04-05
### Added
- Add animations and improve user interface
### Changed
- Bug fixes
## [4.0.0-beta4] - 2023-03-27
### Changed
- Bug fixes
- Update to gdk 0.0.58 post2
## [4.0.0-beta3] - 2023-03-24
### Changed
- Bug fixes
- New hardware wallet experience with Jade and Ledger
## [4.0.0-beta2] - 2023-03-10
### Changed
- Bug fixes
- Update translations
## [4.0.0-beta1] - 2023-03-01
### Changed
- Network Unification
- Update GDK to 0.0.58
- Update translations
### Fixed
- Change data directory for app data storage
## [3.9.2] - 2023-02-07
### Added
- Customer satisfaction survey
## [3.9.0] - 2022-10-25
### Added
- Emergency recovery phrase restore
### Changed
- Update GDK to 0.0.57
## [3.8.9] - 2022-10-11
### Added
- New "About" section
- Give us your feedback utility
### Changed
- Announcements and alerts, improved navigation
- Improved performance of asset registry usage
- Updates GDK to version 0.0.56
- Improve testing with debug & adhoc release
### Fixed
- Improve tor bootstrapping support
## [3.8.8] - 2022-09-23
### Fixed
- Fix Watch-only connection and login
- Fix reloading transactions and subaccounts
- Fix transaction blockheight
## [3.8.7] - 2022-09-06
### Added
- Enable OTP feature on Jade starting from version 0.1.37
- Enable Emergency Restore on Jade
- Prompt users for app review
### Changed
- Improved BIP39 wallets support
- Updated accounts naming
### Fixed
- Improved transactions reloading
- Improved error messages for watch-only setup
- Fixes for reconnection
## [3.8.6] - 2022-08-03
### Added
- Display firmware hash during Jade firmware update
- Login with BIP39 Passphrase
### Changed
- Display the receive address in transaction details
- Display the net amount without fees in transaction details
### Fixed
- Handle connection failure during wallet discovery
## [3.8.5] - 2022-07-15
### Added
- Support for login with multiple hardware wallets concurrently
- Support to set up watch-only credentials on Liquid multisig shield wallets
- Watch-only wallets: support to delete credentials
- Improved transaction review dialog for hardware wallets
- Faster Jade firmware upgrades
### Changed
- Improved login performance with hardware wallets
- Update GDK to 0.0.55
- Onboarding: automatic wallet naming
### Fixed
- Create 2of3 subaccount with Ledger
- Hardware wallets logout view hierarchy
- Improved error messages
## [3.8.4] - 2022-06-17
### Added
- Add Support ID on settings About for multisig wallet
### Changed
- Drop addresses in transaction list
- Update GDK to 0.0.54.post1
- Update translations
### Fixed
## [3.8.3] - 2022-06-10
### Added
- Help Green improve! If you agree, Green will collect limited usage data to optimize your experience
- SPV for multisig shield wallets
### Changed
- Uses a global Tor sessions
### Fixed
- Updates optional fields for Blockstream Jade over the signing process
- Minor bug fixes
## [3.8.2] - 2022-05-18
### Added
- Singlesig Bitcoin wallets support for Ledger Nano X hardware devices
- Ad-hoc app distribution for internal testing
### Changed
- Improved CI for internal testing
- Improved receive screen layout
- Updated GDK to version 0.0.54
- Updated logic for liquid assets icons and metadata
### Fixed
- Removed tor unavailability warning
- Added watch-only setting for multisig shield wallets used with hardware devices
## [3.8.1] - 2022-04-27
### Added
- Archive accounts you no longer use
- Improve CI process for testing release
### Changed
- Updates GDK to version 0.0.52
- Improves performance of navigation between accounts
### Fixed
- Fixes autologout for watch-only wallets
- Fixes bug when pasting 2FA codes while sending
## [3.8.0] - 2022-04-15
### Added
- Singlesig wallet support for Blockstream Jade hardware devices
- Tor connection support also for singlesig wallets
- 2of3 account creation on bitcoin multisig shield wallets
### Changed
- Select mnemonic length while restoring wallet
- Recovery phrase in settings can also be shown as QR code, for fast import on other devices
- Access app settings screen from hardware wallet connection screen
- Slide to send a transaction
- Update GDK to version 0.51
- Improved asset details screen
### Fixed
- Session autologout on background after timeout
## [3.7.9] - 2022-02-15
### Added
- Streamlined wallet navigation: switch between your wallets without needing to log out every time
- Romanian localization
### Changed
- Improved swifter Send flow, easier to use, easier to read
- Enabled Liquid testnet for Jade when in test mode
- Restoring an already available wallet is detected, preventing duplicates
## [3.7.8] - 2022-01-20
### Changed
- Update GDK to version 0.0.49
- Improve automatic wallet restore
## [3.7.7] - 2021-12-17
### Added
- Automatic wallet restore, Green will find any wallet associated with your recovery phrase
- Balances on account cards when switching between accounts
- Support for wallet creation with both 12 or 24 words recovery phrases
- Support for Ledger Nano X firmware 2.0.0
### Changed
- Improved transaction details layout
- Updated GDK to 0.0.48
### Fixed
- Assist Jade users with Bluetooth re-pairing after firmware 0.1.31+ upgrade
## [3.7.6] - 2021-11-10
### Added
- Support for send to bech32m P2TR address types, available 144 blocks after Taproot activation
- Support to connect to your personal electrum server, available in app settings for singlesig wallets
- Support to validate transaction inclusion in a block (SPV), available in app settings for singlesig wallets
### Changed
- Revamps receive view with new UI and button to verify addresses on hardware wallets
- Supports GDK 0.0.47
### Fixed
- Loading of trasactions in the home view
- URL with unblinding data for Liquid transactions
- Improves BLE scanning and error messages
## [3.7.5] - 2021-10-27
### Added
- Supports creating and restoring Singlesig wallets on Liquid
- Reset two factor authentication
- SPV header validation for transactions validation
### Changed
- Improves wallet restore flow
- Testnet networks must be enabled from App Settings to appear as create/restore options
- Testnet UI clarifies that funds have no value on these wallets
- Prompts to perform Jade OTA firmware upgrades via USB cable
- Shows a warning when operating on a testnet network
- Updates GDK to 0.0.46.post1
### Fixed
- Uses default minimum fees when estimates are not available
- UI on restore for iOS15
- Updates fastlane flags on debug mode
## [3.7.3] - 2021-09-30
### Changed
- Updates GDK to 0.0.45.post1
### Fixed
- Explicitly ignore expired certificate in Jade pinserver request
## [3.7.2] - 2021-09-28
### Added
- Support host unblinding for Blockstream Jade version 0.1.27 and higher
### Changed
- New wallet view with revamped UI
- Improves network reconnection behavior
- Updates and supports GDK version 0.0.45
- Updates translations
### Fixed
- Validation of addresses for 2of3 accounts using Blockstream Jade
- Disconnection at auto-logout timeout
- Amounts displayed when sweeping paper wallets
## [3.7.0] - 2021-09-08
### Added
- Support for creating and restoring Singlesig wallets on Bitcoin
- Support for Fastlane to streamline future beta releases
### Changed
- Improves hardware wallet integration
- Updates localizations
- Updates GDK to version 0.0.44
### Fixed
- Fixes UI settings for smaller screens
## [3.6.6] - 2021-08-17
### Added
- Anti-exfil signing protocol support for Blockstream Jade
- Automated tests for onboarding and transactions
### Changed
- Improves Wallet Settings UI
- Preloads icons of Liquid assets
- Improves support for Blockstream Jade hardware
### Fixed
- Title trimming on low resolution devices
## [3.6.3] - 2021-07-13
### Added
- Generates 12 words recovery phrases by default
- Support for creating and restoring Singlesig wallets on Bitcoin Testnet
- Adds account type label in Account Card
- Enhanced support for Blockstream Jade
### Changed
- Removes limit in maximum number of AMP accounts that can be added
- Updates GDK to 0.0.43
## [3.6.1] - 2021-06-18
### Fixed
- Crash on iOS 12
- Checkbox for system message approval
- Bug showing hardware wallets alert when using a software wallet
## [3.6.0] - 2021-06-07
### Added
- Improved UI for 2FA reset using new alert cards
- Users can now undo a 2FA dispute
### Changed
- Improved Blockstream Jade onboarding
- Improved Liquid asset registry loading, supporting refresh in case of failures
- Auto-advance after typing last digit of 2FA codes
- UI improvements for smaller screens
- Updated GDK
### Fixed
- URLs to view transactions on the explorer
================================================
FILE: CONTRIBUTING.md
================================================
## Guidelines for contributions to Green bitcoin wallet for iOS
If you want to contribute to the project, please refer to the following guidelines.
#### Checklist before opening an issue
* Issue is reproducible;
* There aren't pending pull requests addressing the issue;
* Issue reproduced on latest master branch or latest stable release;
* Issue is not tracked already.
#### Pull Requests
* Pull request that involve GUI changes must contain screenshots in the description
* Before opening a pull request make sure the changes pass the CI
* Enforce Swift style and conventions with [SwiftLint](https://github.com/realm/SwiftLint)
#### Mandatory environment settings for contributions
This requirements are meant to simplify the review process.
XCode Version 10.1 (10B61) with the following settings:
* Device id `retina4_0`: in Storyboard "View as: IPhone SE"
* Tools version `14460.31`
* IBCocoaTouchPlugin version `14460.20`
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
================================================
FILE: NotificationService/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>APPGROUP</key>
<string>$(APPGROUP)</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.usernotifications.service</string>
<key>NSExtensionPrincipalClass</key>
<string>$(PRODUCT_MODULE_NAME).NotificationService</string>
</dict>
</dict>
</plist>
================================================
FILE: NotificationService/NotificationService.swift
================================================
import Foundation
import UserNotifications
import core
struct LnurlInfoMessage: Codable {
let callback_url: String
let reply_url: String
}
struct LnurlInvoiceMessage: Codable {
let reply_url: String
let amount: UInt64
}
public enum NotificationType: String, Codable {
case addressTxsConfirmed = "address_txs_confirmed"
case paymentReceived = "payment_received"
case swapUpdated = "swap_updated"
case boltzEvent = "BOLTZ_EVENT"
}
public struct LightningEvent: Codable {
enum CodingKeys: String, CodingKey {
case appData = "app_data"
case notificationType = "notification_type"
case notificationPayload = "notification_payload"
}
let appData: String?
let notificationType: NotificationType
let notificationPayload: String?
}
public enum NotificationError: Error {
case InvalidNotification
case InvalidSwap
case WalletNotFound
case Failed
case EventNotFound
case Timeout
}
enum NotificationEvent {
case meld(MeldEvent)
case lightning(LightningEvent)
case lwk(LwkEvent)
static func from(userInfo: [AnyHashable: Any]) -> NotificationEvent? {
if let notification = LightningEvent.from(userInfo) as? LightningEvent {
return NotificationEvent.lightning(notification)
} else if let notification = MeldEvent.from(userInfo) as? MeldEvent {
return NotificationEvent.meld(notification)
} else if let notification = LwkEvent.from(userInfo) as? LwkEvent {
return NotificationEvent.lwk(notification)
}
return nil
}
}
class NotificationService: UNNotificationServiceExtension {
private var contentHandler: ((UNNotificationContent) -> Void)?
private var bestAttemptContent: UNMutableNotificationContent?
private var activeTask: Task<Void, Never>?
private var notificationEvent: NotificationEvent?
private var isFinished = false
override func didReceive(
_ request: UNNotificationRequest,
withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void)
{
self.contentHandler = contentHandler
self.bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)
guard let userInfo = bestAttemptContent?.userInfo else {
logger.info("NotificationService: Invalid data")
contentHandler(bestAttemptContent ?? request.content)
return
}
logger.info("NotificationService: Notification received: \(userInfo.stringify() ?? "", privacy: .public)")
notificationEvent = NotificationEvent.from(userInfo: userInfo)
switch notificationEvent {
case .lightning(let notification):
activeTask = Task(priority: .userInitiated) { [weak self] in
await self?.didReceiveLightning(notification)
self?.activeTask = nil
await self?.showNotification()
}
case .meld(let notification):
activeTask = Task(priority: .userInitiated) { [weak self] in
await self?.didReceiveMeld(notification)
self?.activeTask = nil
await self?.showNotification()
}
case .lwk(let notification):
activeTask = Task(priority: .userInitiated) { [weak self] in
await self?.didReceiveLwkSwap(notification)
self?.activeTask = nil
await self?.showNotification()
}
default:
logger.info("NotificationService: Invalid notification")
contentHandler(bestAttemptContent ?? request.content)
}
}
func didReceiveLwkSwap(_ notification: LwkEvent) async {
let eventData = notification.data.replacingOccurrences(of: "'", with: "\"")
guard let eventSwap = LwkEventData.from(string: eventData) as? LwkEventData else {
return
}
guard await SwapManager.shared.shouldStartTask(for: eventSwap.id) else {
logger.info("Duplicate swap \(eventSwap.id) ignored.")
return
}
defer {
Task { await SwapManager.shared.finishTask(for: eventSwap.id) }
}
do {
guard let account = getAccount(xpub: notification.walletHashedId),
let xpubHashId = account.xpubHashId else {
throw NotificationError.WalletNotFound
}
// Pre-update UI notification
bestAttemptContent?.title = account.name
bestAttemptContent?.threadIdentifier = account.xpubHashId ?? ""
if let persistentId = try await BoltzController.shared.fetchID(byId: eventSwap.id),
let swap = try await BoltzController.shared.get(with: persistentId) {
switch eventSwap.status {
case "transaction.mempool":
switch swap.type {
case .Submarine, .ReverseSubmarine:
bestAttemptContent?.body = "Processing Lightning payment.."
case .Chain:
bestAttemptContent?.body = "Processing chain swap.."
case .none:
break
}
default:
break
}
}
// get credentials
let credentials = try AuthenticationTypeHandler.getCredentials(method: .AuthKeyBoltz, for: account.keychain)
guard let mnemonic = credentials.mnemonic else {
throw NotificationError.Failed
}
// get session and start task iteration
let sharedSession = await SwapManager.shared.getSession(for: xpubHashId)
let task = SwapTask(session: sharedSession)
let swap = try await task.start(xpubHashId: xpubHashId, secret: mnemonic, swapId: eventSwap.id)
} catch NotificationError.Timeout {
logger.error("NotificationService timeout error")
} catch {
logger.error("NotificationService error: \(error.localizedDescription, privacy: .public)")
}
}
func didReceiveMeld(_ notification: MeldEvent) async {
do {
guard let externalCustomerId = notification.payload.externalCustomerId else {
throw NotificationError.InvalidNotification
}
guard let account = getAccount(xpub: externalCustomerId),
let xpubHashId = account.xpubHashId else {
throw NotificationError.WalletNotFound
}
bestAttemptContent?.title = account.name
bestAttemptContent?.threadIdentifier = account.xpubHashId ?? ""
let res = try await MeldTransactionTask().start(event: notification)
if let body = res["body"] as? String {
bestAttemptContent?.body = body
}
bestAttemptContent?.userInfo = res
} catch {
logger.error("NotificationService error: \(error.localizedDescription, privacy: .public)")
}
}
func didReceiveLightning(_ notification: LightningEvent) async {
guard let xpub = notification.appData else {
logger.error("NotificationService: Invalid xpub: \(self.bestAttemptContent?.userInfo.description ?? "", privacy: .public)")
shutdown()
return
}
logger.info("NotificationService: xpub: \(xpub, privacy: .public)")
guard let account = getAccount(xpub: xpub) else {
logger.error("NotificationService: Wallet not lightning found")
shutdown()
return
}
logger.info("NotificationService: Using lightning wallet \(account.name, privacy: .public)")
let task = Task { [weak self] in
logger.info("NotificationService: todo: start task....")
}
switch await task.result {
case .success:
logger.info("NotificationService: MeldTransactionTask starts successfully")
case .failure(let err):
logger.error("NotificationService: failed \(err.localizedDescription, privacy: .public)")
shutdown()
}
}
func getAccount(xpub: String) -> Account? {
let accounts = AccountsRepository.shared.accounts
return accounts
.filter { $0.xpubHashId == xpub }
.first
}
override func serviceExtensionTimeWillExpire() {
logger.info("NotificationService: serviceExtensionTimeWillExpire()")
activeTask?.cancel()
Task { @MainActor in
if isFinished { return }
switch notificationEvent {
case .meld:
bestAttemptContent?.body = "Buy. Open app to resume."
case .lightning:
bestAttemptContent?.body = "Lightning pay. Open app to resume."
case .lwk:
bestAttemptContent?.body = "Swap. Open app to resume."
case nil:
break
}
showNotification()
self.shutdown()
}
}
private func shutdown() -> Void {
Task.detached(priority: .high) { @MainActor [weak self] in
logger.info("NotificationService: shutting down...")
logger.info("NotificationService: task unregistered")
}
}
@MainActor
func showNotification() {
if let bestAttemptContent, !isFinished {
contentHandler?(bestAttemptContent)
contentHandler = nil
isFinished = true
}
}
}
================================================
FILE: NotificationService/NotificationServiceDebug.entitlements
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>keychain-access-groups</key>
<array>
<string>D9W37S9468.*</string>
<string>com.apple.token</string>
</array>
<key>com.apple.developer.default-data-protection</key>
<string>NSFileProtectionCompleteUntilFirstUserAuthentication</string>
<key>aps-environment</key>
<string>development</string>
<key>com.apple.security.application-groups</key>
<array>
<string>group.io.blockstream.greendev.notification</string>
</array>
</dict>
</plist>
================================================
FILE: NotificationService/NotificationServiceRelease.entitlements
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>keychain-access-groups</key>
<array>
<string>D9W37S9468.*</string>
<string>com.apple.token</string>
</array>
<key>com.apple.developer.default-data-protection</key>
<string>NSFileProtectionCompleteUntilFirstUserAuthentication</string>
<key>aps-environment</key>
<string>production</string>
<key>com.apple.security.application-groups</key>
<array>
<string>group.io.blockstream.green.notification</string>
</array>
</dict>
</plist>
================================================
FILE: NotificationService/NotificationServiceStaging.entitlements
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>keychain-access-groups</key>
<array>
<string>D9W37S9468.*</string>
<string>com.apple.token</string>
</array>
<key>com.apple.developer.default-data-protection</key>
<string>NSFileProtectionCompleteUntilFirstUserAuthentication</string>
<key>aps-environment</key>
<string>production</string>
<key>com.apple.security.application-groups</key>
<array>
<string>group.io.blockstream.greendev.notification</string>
</array>
</dict>
</plist>
================================================
FILE: NotificationService/Tasks/MeldTransactionTask.swift
================================================
import Foundation
import UserNotifications
import os.log
import core
// MARK: - Meld Transaction Status
public enum MeldTransactionStatus: String {
case pending = "PENDING"
case processing = "PROCESSING"
case settling = "SETTLING"
case completed = "COMPLETED"
case failed = "FAILED"
case cancelled = "CANCELLED"
var notificationTitle: String {
switch self {
case .pending: return "Transaction Pending"
case .processing: return "Transaction Processing"
case .settling: return "Transaction Settling"
case .completed: return "Transaction Completed"
case .failed: return "Transaction Failed"
case .cancelled: return "Transaction Cancelled"
}
}
var notificationBody: String {
switch self {
case .pending: return "Your transaction is pending confirmation"
case .processing: return "Your transaction is being processed"
case .settling: return "Your transaction is being settled"
case .completed: return "Your transaction has been completed successfully"
case .failed: return "Your transaction could not be completed"
case .cancelled: return "Your transaction was cancelled"
}
}
}
// MARK: - Meld Transaction Task
public class MeldTransactionTask {
public func start(event: MeldEvent) async throws -> [AnyHashable: Any] {
logger.info("MeldTransactionTask: Starting Meld transaction task")
// Verify we have the externalCustomerId
guard let externalCustomerId = event.payload.externalCustomerId else {
logger.error("MeldTransactionTask: Missing externalCustomerId in Meld transaction payload")
throw NotificationError.InvalidNotification
}
// setup refresh flag
let defaults = UserDefaults(suiteName: Bundle.main.appGroup)
defaults?.setValue(true, forKey: "MELD_FETCH_REQUEST_TRANSACTIONS_FOR_\(externalCustomerId)")
// Parse the transaction status
let status = MeldTransactionStatus(rawValue: event.payload.paymentTransactionStatus.uppercased()) ?? .processing
// Set notification title and body based on status
var info: [AnyHashable: Any] = [
"title": status.notificationTitle,
"body": status.notificationBody
]
// Add transaction data to userInfo
info["eventId"] = event.eventId
info["eventType"] = event.eventType
info["timestamp"] = event.timestamp
info["transactionId"] = event.payload.paymentTransactionId
info["customerId"] = event.payload.customerId
info["externalCustomerId"] = externalCustomerId
info["status"] = event.payload.paymentTransactionStatus
info["accountId"] = event.payload.accountId
info["externalSessionId"] = event.payload.externalSessionId
// Add a thread identifier based on the externalCustomerId
logger.info("MeldTransactionTask: Notification content updated with transaction data for user \(externalCustomerId, privacy: .public)")
return info
}
}
================================================
FILE: NotificationService/Tasks/MeldTypes.swift
================================================
import Foundation
// MARK: - Meld Notification Types
public enum MeldNotificationType: String, Codable {
case transactionSettling = "TRANSACTION_CRYPTO_TRANSFERRING"
}
// MARK: - Meld Event
public struct MeldEvent: Codable {
let eventType: String
let eventId: String
let timestamp: String
let accountId: String
let version: String
let payload: MeldTransactionPayload
}
// MARK: - Meld Transaction Payload
public struct MeldTransactionPayload: Codable {
let accountId: String
let paymentTransactionId: String
let customerId: String
let externalCustomerId: String?
let externalSessionId: String?
let paymentTransactionStatus: String
}
================================================
FILE: NotificationService/Tasks/Swap/SwapManager.swift
================================================
import core
actor SwapManager {
static let shared = SwapManager()
private var activeTasks: Set<String> = []
private var sessions: [String: LwkSessionManager] = [:]
func shouldStartTask(for id: String) -> Bool {
if activeTasks.contains(id) { return false }
activeTasks.insert(id)
return true
}
func finishTask(for id: String) {
activeTasks.remove(id)
}
// Shared session logic to save memory
func getSession(for xpubHash: String) -> LwkSessionManager {
if let existing = sessions[xpubHash] { return existing }
let new = LwkSessionManager(newNotificationDelegate: nil)
sessions[xpubHash] = new
return new
}
}
================================================
FILE: NotificationService/Tasks/Swap/SwapModel.swift
================================================
public struct LwkEvent: Codable {
enum CodingKeys: String, CodingKey {
case type
case event
case walletHashedId = "wallet_hashed_id"
case data
}
let type: String
let event: String
let walletHashedId: String
let data: String
}
public struct LwkEventData: Codable {
enum CodingKeys: String, CodingKey {
case id
case status
}
let id: String
let status: String
}
================================================
FILE: NotificationService/Tasks/Swap/SwapTask.swift
================================================
import Foundation
import UserNotifications
import os.log
import core
import LiquidWalletKit
import gdk
import CoreData
public class SwapTask {
private let lwkSession: LwkSessionManager
private let startTime: Date
// Timeout for notifications
// ~30s = standard timeout
// ~25s = cleanup zone
private let maxDuration: TimeInterval = 30.0
init(session: LwkSessionManager) {
self.startTime = Date()
self.lwkSession = session
}
public func start(xpubHashId: String, secret: String, swapId: String) async throws -> BoltzSwap {
return try await withTaskCancellationHandler {
try await performSwap(xpubHashId: xpubHashId, secret: secret, swapId: swapId)
} onCancel: {
logger.info("LwkSwapTask: OS Timeout triggered. Cleaning up.")
// This is triggered INSTANTLY when task.cancel() is called.
// It does NOT wait for the block above to finish.
Task {
await lwkSession.disconnect()
}
}
}
private func performSwap(xpubHashId: String, secret: String, swapId: String) async throws -> BoltzSwap {
guard let persistentId = try await BoltzController.shared.fetchID(byId: swapId),
let swap = try await BoltzController.shared.get(with: persistentId),
let swapData = swap.data else {
logger.error("LwkSwapTask: Swap \(swapId, privacy: .public) not present")
throw NotificationError.InvalidSwap
}
logger.info("LwkSwapTask: Swap \(swapId, privacy: .public) \(swap.isPending ? "pending" : "completed")")
GdkInit.defaults().run()
await lwkSession.connect()
_ = try await lwkSession.loginUser(Credentials(mnemonic: secret))
logger.info("LwkSwapTask: connected")
switch swap.type {
case .Submarine:
if let pay = try await lwkSession.restorePreparePay(data: swapData) {
_ = try await loopSwap(
xpubHashId: xpubHashId,
lwkSession: lwkSession,
persistentId: persistentId,
swap: SwapResponse.submarine(pay))
}
case .ReverseSubmarine:
if let invoice = try await lwkSession.restoreInvoice(data: swapData) {
_ = try await loopSwap(
xpubHashId: xpubHashId,
lwkSession: lwkSession,
persistentId: persistentId,
swap: SwapResponse.reverseSubmarine(invoice))
}
case .Chain:
if let lockup = try await lwkSession.restoreLockup(data: swapData) {
_ = try await loopSwap(
xpubHashId: xpubHashId,
lwkSession: lwkSession,
persistentId: persistentId,
swap: SwapResponse.chain(lockup))
}
case nil:
throw NotificationError.InvalidNotification
}
guard let swap = try await BoltzController.shared.get(with: persistentId) else {
throw NotificationError.Failed
}
return swap
}
nonisolated public func loopSwap(xpubHashId: String, lwkSession: LwkSessionManager, persistentId: NSManagedObjectID, swap: SwapResponse) async throws -> PaymentState {
let monitor = SwapMonitor(xpubHashId: xpubHashId, lwkSession: lwkSession)
var state = PaymentState.continue
var swap = swap
repeat {
try Task.checkCancellation()
let elapsed = Date().timeIntervalSince(startTime)
if elapsed > (maxDuration - 5.0) {
logger.info("LwkSwapTask: Approaching execution limit (\(elapsed)s). Cleaning up.")
await lwkSession.disconnect()
throw NotificationError.Timeout
}
state = try await monitor.handleSingleSwap(persistentId: persistentId, swap: &swap)
} while state == PaymentState.continue && !Task.isCancelled
await lwkSession.disconnect()
return state
}
}
================================================
FILE: NotificationService/cs.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Otevřít peněženku a přijmout platbu";
"id_payment_received" = "Platba přijata";
================================================
FILE: NotificationService/de.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/en.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/es.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/fr.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/he.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/it.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/ja.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/ko.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/nl.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/pt-BR.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Abrir carteira para receber um pagamento";
"id_payment_received" = "Pagamento recebido";
================================================
FILE: NotificationService/ro.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/ru.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/uk.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/vi.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: NotificationService/zh.lproj/Localizable.strings
================================================
"id_open_wallet_to_receive_a_payment" = "Open wallet to receive a payment";
"id_payment_received" = "Payment received";
================================================
FILE: README.md
================================================
# Blockstream App - A native Blockstream wallet for iOS
Blockstream App is a non-custodial Bitcoin wallet - it allows you to safely store, send, and receive your Bitcoin.
It's a mobile app available for [Android](https://github.com/Blockstream/green_android) and [iOS](https://github.com/Blockstream/green_ios), based on [gdk](https://github.com/blockstream/gdk), our cross-platform wallet library.
We offer a variety of advanced features, such as letting our users set their own spending limits, watch-only access for observers, and our unique multisig security model.
All of these (and more) are explained in more detail [here](https://help.blockstream.com/hc/en-us/sections/900000129826-Getting-Started).
<a href="https://itunes.apple.com/app/id1402243590" target="_blank">
<img src="https://developer.apple.com/app-store/marketing/guidelines/images/badge-example-preferred_2x.png" alt="Get it on Apple Store" height="50"/></a>
## Build
For instructions on how to build Blockstream Green please refer to [BUILD.md](BUILD.md)
## Contributing
Guidelines for contributions can be found in [CONTRIBUTING.md](CONTRIBUTING.md)
## Translations
You can help translating this app [here](https://www.transifex.com/blockstream/blockstream-green/)
## Support
Need help?
Read [our FAQ](https://greenaddress.it/en/faq.html) or contact us at [info@greenaddress.it](mailto:info@greenaddress.it).
## License
Blockstream App is released under the terms of the GNU General Public License. See [LICENSE](LICENSE) for more information or see https://opensource.org/licenses/GPL-3.0
================================================
FILE: configs/DevSettings.xcconfig
================================================
GA_APP_NAME = BlksDev
GA_APP_BUNDLE_ID = io.blockstream.greendev
GA_APP_ICON = AppIconDev
COUNTLY_APP_HOST = https:\/\/countly.blockstream.com
COUNTLY_APP_HOST_ONION = http:\/\/greciphd2z3eo6bpnvd6mctxgfs4sslx4hyvgoiew4suoxgoquzl72yd.onion
COUNTLY_APP_KEY = cb8e449057253add71d2f9b65e5f66f73c073e63
COUNTLY_APP_MAX_OFFSET = 1800
COUNTLY_APP_EVENT_SEND_THRESHOLD = 1
ZENDESK_CLIENT_ID = mobile_sdk_client_c4a1061d1cbd813b98e3
APPGROUP = group.io.blockstream.greendev.notification
GOOGLE_SERVICE_INFO = GoogleService-Dev-Info
NOTIFICATION_SERVICE = https:\/\/green-notify.dev.blockstream.com
MELD_REDIRECT_URL = https:\/\/green-webhooks.dev.blockstream.com/thank-you
================================================
FILE: configs/ProdSettings.xcconfig
================================================
GA_APP_NAME = Blockstream
GA_APP_BUNDLE_ID = io.blockstream.green
GA_APP_ICON = AppIcon
COUNTLY_APP_HOST = https:\/\/countly.blockstream.com
COUNTLY_APP_HOST_ONION = http:\/\/greciphd2z3eo6bpnvd6mctxgfs4sslx4hyvgoiew4suoxgoquzl72yd.onion
COUNTLY_APP_KEY = 351d316234a4a83169fecd7e760ef64bfd638d21
COUNTLY_APP_MAX_OFFSET = 43200
COUNTLY_APP_EVENT_SEND_THRESHOLD = 10
ZENDESK_CLIENT_ID = mobile_sdk_client_c4a1061d1cbd813b98e3
APPGROUP = group.io.blockstream.green.notification
GOOGLE_SERVICE_INFO = GoogleService-Prod-Info
NOTIFICATION_SERVICE = https:\/\/green-notify.blockstream.com
MELD_REDIRECT_URL = https:\/\/green-webhooks.blockstream.com/thank-you
================================================
FILE: core/Controllers/BoltzController.swift
================================================
import Foundation
import CoreData
public actor BoltzController {
private let modelName = "BoltzDataModel"
private static let appGroupIdentifier = Bundle.main.appGroup
public static let shared = BoltzController()
let container: NSPersistentContainer
private let context: NSManagedObjectContext
public init() {
// Locate the Shared App Group Container
guard let groupURL = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "\(Self.appGroupIdentifier)") else {
fatalError("Could not retrieve shared application group container URL. Check App Group configuration.")
}
let storeURL = groupURL.appendingPathComponent("\(self.modelName).sqlite")
// Ensure the directory exists and has the right permissions
let folderURL = storeURL.deletingLastPathComponent()
try? FileManager.default.createDirectory(at: folderURL, withIntermediateDirectories: true, attributes: [
.protectionKey: FileProtectionType.completeUntilFirstUserAuthentication
])
// Set persistent store
let storeDescription = NSPersistentStoreDescription(url: storeURL)
storeDescription.shouldMigrateStoreAutomatically = true
storeDescription.shouldInferMappingModelAutomatically = true
// Enable Persistent History Tracking
storeDescription.setOption(true as NSNumber, forKey: NSPersistentHistoryTrackingKey)
// Set File Protection
storeDescription.setOption(FileProtectionType.completeUntilFirstUserAuthentication as NSObject,
forKey: NSPersistentStoreFileProtectionKey)
// Create container
container = NSPersistentContainer(name: self.modelName)
container.persistentStoreDescriptions = [storeDescription]
container.loadPersistentStores { (storeDescription, error) in
if let error = error as NSError? {
// Handle the error appropriately, usually by crashing in development
// but logging and failing gracefully in production.
fatalError("Unresolved error \(error), \(error.userInfo)")
}
logger.info("Successfully loaded persistent store: \(storeDescription.url?.lastPathComponent ?? "Unknown")")
}
self.context = container.newBackgroundContext()
// Handle Conflicts
self.context.mergePolicy = NSMergeByPropertyObjectTrumpMergePolicy
self.context.automaticallyMergesChangesFromParent = true
}
/// Creates and saves a new 'BoltzSwaps' object.
public func create(id: String?, data: String?, isPending: Bool, xpubHashId: String?, invoice: String?, swapType: SwapType, txHash: String?) async throws -> BoltzSwap {
let savedItem: BoltzSwap = try await context.perform {
let item = BoltzSwap(context: self.context)
item.id = id
item.data = data
item.isPending = isPending
item.invoice = invoice
item.xpubHashId = xpubHashId
item.swapType = swapType.rawValue
item.txHash = txHash
try self.context.save()
return item
}
return savedItem
}
public func fetchIDs(_ predicates: [NSPredicate]) async throws -> [NSManagedObjectID] {
let ids: [NSManagedObjectID] = try await context.perform {
let fetchRequest = NSFetchRequest<NSManagedObjectID>(entityName: "BoltzSwap")
if !predicates.isEmpty {
fetchRequest.predicate = NSCompoundPredicate(andPredicateWithSubpredicates: predicates)
}
fetchRequest.resultType = .managedObjectIDResultType
let ids = try self.context.fetch(fetchRequest)
return ids
}
return ids
}
public func fetchPendingSwaps(xpubHashId: String) async throws -> [NSManagedObjectID] {
try await fetchIDs([
NSPredicate(format: "xpubHashId == %@", xpubHashId),
NSPredicate(format: "isPending == true")
])
}
public func fetchSwaps(xpubHashId: String, invoice: String, swapType: BoltzSwapTypes) async throws -> [NSManagedObjectID] {
try await fetchIDs([
NSPredicate(format: "xpubHashId == %@", xpubHashId),
NSPredicate(format: "invoice == %@", invoice),
NSPredicate(format: "swapType == %@", swapType.rawValue)
])
}
public func dump(xpubHashId: String) async throws {
let ids = try await fetchIDs([
NSPredicate(format: "xpubHashId == %@", xpubHashId)
])
for id in ids {
if let swap = try? await get(with: id) {
lwkLogger.info("\(swap.id ?? "") \(swap.xpubHashId ?? "") \(swap.txHash ?? "") \(swap.isPending)")
}
}
}
/// Fetch ID of 'BoltzSwap' objects by his id.
public func fetchID(byId id: String) async throws -> NSManagedObjectID? {
let item = try await context.perform {
let fetchRequest = NSFetchRequest<NSManagedObjectID>(entityName: "BoltzSwap")
fetchRequest.predicate = NSPredicate(format: "id == %@", id)
fetchRequest.fetchLimit = 1
fetchRequest.resultType = .managedObjectIDResultType
let ids = try self.context.fetch(fetchRequest)
return ids.first
}
return item
}
public func upsert(id: String, data: String, isPending: Bool, xpubHashId: String, invoice: String? = nil, swapType: SwapType, txHash: String?) async throws {
if let persistentID = try? await BoltzController.shared.fetchID(byId: id) {
try? await update(with: persistentID, newData: data, newIsPending: isPending, newTxHash: txHash)
} else {
_ = try? await create(id: id, data: data, isPending: true, xpubHashId: xpubHashId, invoice: invoice, swapType: swapType, txHash: txHash)
}
}
/// Fetch object of a 'BoltzSwap' from his id.
public func get(with id: NSManagedObjectID) async throws -> BoltzSwap? {
// objectWithID: efficiently uses in-memory information or the store as needed
try await context.perform {
try self.context.existingObject(with: id) as? BoltzSwap
}
}
public func gets(with ids: [NSManagedObjectID]) async throws -> [BoltzSwap] {
if ids.isEmpty {
return []
}
return try await context.perform {
try ids.compactMap { id in
try self.context.existingObject(with: id) as? BoltzSwap
}
}
}
/// Updates the 'data' attribute of an existing 'BoltzSwap' by its ID.
public func update(with id: NSManagedObjectID, newData: String? = nil, newIsPending: Bool? = nil, newTxHash: String? = nil) async throws {
try await context.perform {
let object = self.context.object(with: id)
guard let boltzSwap = object as? BoltzSwap else {
// It's good practice to check if the object exists and is the correct type.
throw NSError(domain: "BoltzControllerError", code: 404, userInfo: [NSLocalizedDescriptionKey: "Item not found or wrong type for given ID"])
}
if let newData {
boltzSwap.data = newData
}
if let newIsPending {
boltzSwap.isPending = newIsPending
}
if let newTxHash {
boltzSwap.txHash = newTxHash
}
if self.context.hasChanges {
try self.context.save()
}
}
}
/// Deletes an item based on its PersistentID.
public func delete(with id: NSManagedObjectID) async throws {
try await context.perform {
let object = self.context.object(with: id)
self.context.delete(object)
if self.context.hasChanges {
try self.context.save()
}
}
}
public func getSwap(txHash: String) async throws -> BoltzSwap? {
let ids: [NSManagedObjectID] = try await fetchIDs([
NSPredicate(format: "txHash == %@", txHash)
])
guard let swapId = ids.first else { return nil }
return try await get(with: swapId)
}
}
================================================
FILE: core/Countly/AnalyticsManager/AMConstants.swift
================================================
public extension AnalyticsManager {
static let countlyRemoteConfigAppReview = "app_review"
static let countlyRemoteConfigBanners = "banners"
static let countlyRemoteConfigAssets = "liquid_assets"
static let countlyRemoteConfigPromos = "promos"
static let countlyRemoteConfigFeatureOnOffRamps = "feature_on_off_ramps"
static let countlyRemoteConfigBuyDefaultValues = "buy_default_values"
static let countlyRemoteConfigEnableBuyIosUk = "enable_buy_ios_uk"
static let countlyRemoteConfigLnRecommendedSatoshis = "ln_recommended_satoshis"
static let countlyRemoteConfigLnMinSatoshis = "ln_min_satoshis"
static let countlyRemoteConfigLnMaxSatoshis = "ln_max_satoshis"
static let strNetworks = "wallet_networks"
static let strNetwork = "account_network"
static let strSecurity = "security"
static let strAccountType = "account_type"
static let str2fa = "2fa"
static let strMethod = "method"
static let strEphemeralBip39 = "ephemeral_bip39"
static let strPage = "page"
static let strBrand = "brand"
static let strModel = "model"
static let strFirmware = "firmware"
static let strConnection = "connection"
static let strError = "error"
static let strFlow = "flow"
static let strIsUri = "is_uri"
static let strIsQR = "is_qr"
static let strTransactionType = "transaction_type"
static let strAddressInput = "address_input"
static let strSendAll = "send_all"
static let strWithMemo = "with_memo"
static let strNodeId = "node_id"
static let strWalletFunded = "wallet_funded"
static let strAccounts = "accounts"
static let strAccountsTypes = "accounts_types"
static let strAccountsFunded = "accounts_funded"
static let strAppSettings = "app_settings"
static let strUserPropertyTotalWallets = "total_wallets"
static let strUserPropertyBitcoinWallets = "bitcoin_wallets"
static let strUserPropertyBitcoinSinglesigWallets = "bitcoin_singlesig_wallets"
static let strUserPropertyBitcoinMultisigWallets = "bitcoin_multisig_wallets"
static let strUserPropertyLiquidWallets = "liquid_wallets"
static let strUserPropertyLiquidSinglesigWallets = "liquid_singlesig_wallets"
static let strUserPropertyLiquidMultisigWallets = "liquid_multisig_wallets"
static let strTor = "tor"
static let strProxy = "proxy"
static let strTestnet = "testnet"
static let strElectrumServer = "electrum_server"
static let strSpv = "spv"
static let strBle = "BLE"
static let strShare = "share"
static let strCopy = "copy"
static let strSinglesig = "singlesig"
static let strMultisig = "multisig"
static let strAnalyticsGroup = "analytics"
static let strCountlyGroup = "countly"
static let strType = "type"
static let strMedia = "media"
static let strScreen = "screen"
static let strSelectedConfig = "selected_config"
static let strSelectedDelta = "selected_delta"
static let strSelectedVersion = "selected_version"
static let strPromoId = "promo_id"
static let strPromoScreen = "screen"
static let strSwapFrom = "from"
static let strSwapTo = "to"
enum OnBoardFlow: String {
case strCreate = "create"
case strRestore = "restore"
case watchOnly = "watch_only"
}
enum LoginType: String {
case pin = "pin"
case biometrics = "biometrics"
case watchOnly = "watch_only"
case hardware = "hardware"
}
static let maxOffsetProduction = 12 * 60 * 60 * 1000 // 12 hours
static let maxOffsetDevelopment = 30 * 60 * 1000 // 30 mins
static let ratingWidgetId = "63a5b28802962d16dabcd451"
enum NtwTypeDescriptor: String {
/// mainnet / liquid / mainnet-mixed / testnet / testnet-liquid / testnet-mixed
case mainnet
case liquid
case mainnetMixed = "mainnet-mixed"
case testnet
case testnetLiquid = "testnet-liquid"
case testnetMixed = "testnet-mixed"
}
enum SecTypeDescriptor: String {
/// security: singlesig / multisig / lightning / single-multi / single-light / multi-light / single-multi-light
case single
case singlesig
case multi
case multisig
case light
case lightning
}
enum QrScanScreen: String {
case addAccountPK = "AddAccountPublicKey"
case onBoardRecovery = "OnBoardEnterRecovery"
case onBoardWOCredentials = "OnBoardWatchOnlyCredentials"
case walletOverview = "WalletOverview"
case send = "Send"
}
}
================================================
FILE: core/Countly/AnalyticsManager/AMEvents.swift
================================================
import Foundation
import gdk
import hw
public enum AnalyticsEventName: String {
case debugEvent = "debug_event"
case walletActive = "wallet_act
gitextract_us60bn4r/
├── .github/
│ └── ISSUE_TEMPLATE.md
├── .gitignore
├── .gitlab/
│ └── issue_templates/
│ └── Bug.md
├── .gitlab-ci.yml
├── .swiftlint.yml
├── .tx/
│ └── config
├── BUILD.md
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE
├── NotificationService/
│ ├── Info.plist
│ ├── NotificationService.swift
│ ├── NotificationServiceDebug.entitlements
│ ├── NotificationServiceRelease.entitlements
│ ├── NotificationServiceStaging.entitlements
│ ├── Tasks/
│ │ ├── MeldTransactionTask.swift
│ │ ├── MeldTypes.swift
│ │ └── Swap/
│ │ ├── SwapManager.swift
│ │ ├── SwapModel.swift
│ │ └── SwapTask.swift
│ ├── cs.lproj/
│ │ └── Localizable.strings
│ ├── de.lproj/
│ │ └── Localizable.strings
│ ├── en.lproj/
│ │ └── Localizable.strings
│ ├── es.lproj/
│ │ └── Localizable.strings
│ ├── fr.lproj/
│ │ └── Localizable.strings
│ ├── he.lproj/
│ │ └── Localizable.strings
│ ├── it.lproj/
│ │ └── Localizable.strings
│ ├── ja.lproj/
│ │ └── Localizable.strings
│ ├── ko.lproj/
│ │ └── Localizable.strings
│ ├── nl.lproj/
│ │ └── Localizable.strings
│ ├── pt-BR.lproj/
│ │ └── Localizable.strings
│ ├── ro.lproj/
│ │ └── Localizable.strings
│ ├── ru.lproj/
│ │ └── Localizable.strings
│ ├── uk.lproj/
│ │ └── Localizable.strings
│ ├── vi.lproj/
│ │ └── Localizable.strings
│ └── zh.lproj/
│ └── Localizable.strings
├── README.md
├── configs/
│ ├── DevSettings.xcconfig
│ └── ProdSettings.xcconfig
├── core/
│ ├── Controllers/
│ │ └── BoltzController.swift
│ ├── Countly/
│ │ ├── AnalyticsManager/
│ │ │ ├── AMConstants.swift
│ │ │ ├── AMEvents.swift
│ │ │ ├── AMSegmentation.swift
│ │ │ ├── AMViews.swift
│ │ │ └── AnalyticsManager.swift
│ │ └── RemoteAlertManager.swift
│ ├── Extensions/
│ │ ├── AccountType.swift
│ │ ├── AssetInfo.swift
│ │ ├── Bundle.swift
│ │ ├── Lwk.swift
│ │ ├── String.swift
│ │ ├── Transaction.swift
│ │ ├── UIImage.swift
│ │ ├── Utils.swift
│ │ ├── WalletItem.swift
│ │ └── Wally.swift
│ ├── HW/
│ │ ├── CentralManager.swift
│ │ └── JadeManager.swift
│ ├── Managers/
│ │ ├── AssetsManager.swift
│ │ ├── AuthenticationTypeHandler.swift
│ │ ├── ConverterManager.swift
│ │ ├── Logger.swift
│ │ ├── MigratorManager.swift
│ │ ├── ResolverManager.swift
│ │ ├── SwapMonitor.swift
│ │ └── WalletManager.swift
│ ├── Models/
│ │ ├── Account.swift
│ │ ├── AppSettings.swift
│ │ ├── Boltz.swift
│ │ ├── BoltzDataModel.xcdatamodeld/
│ │ │ └── BoltzDataModel.xcdatamodel/
│ │ │ └── contents
│ │ ├── BoltzSwapsController.swift
│ │ ├── CountlyWidget.swift
│ │ ├── EnrichedAsset.swift
│ │ ├── GdkSettings.swift
│ │ ├── LightningCredentials.swift
│ │ ├── Notification.swift
│ │ ├── QRJade.swift
│ │ ├── Swap.swift
│ │ └── WalletListItem.swift
│ ├── Repository/
│ │ ├── AccountsRepository.swift
│ │ ├── KeychainStorage.swift
│ │ ├── LightningRepository.swift
│ │ └── WalletsRepository.swift
│ ├── SessionManagers/
│ │ ├── LightningSessionManager.swift
│ │ ├── LwkSessionManager.swift
│ │ └── SessionManager.swift
│ └── Utils/
│ └── SerialTasks.swift
├── fastlane/
│ ├── Appfile
│ ├── Fastfile
│ └── README.md
├── gaios/
│ ├── Accounts/
│ │ ├── AccountArchive/
│ │ │ ├── AccountArchiveViewController.swift
│ │ │ ├── AccountArchiveViewModel.swift
│ │ │ └── Cells/
│ │ │ ├── AccountArchiveCell.swift
│ │ │ ├── AccountArchiveCell.xib
│ │ │ └── AccountArchiveCellModel.swift
│ │ ├── AccountCreatePublicKeyViewController.swift
│ │ ├── AccountCreateRecoveryKeyViewController.swift
│ │ ├── AccountDescriptor/
│ │ │ ├── AccountDescriptorViewController.swift
│ │ │ ├── AccountDescriptorViewModel.swift
│ │ │ └── Cells/
│ │ │ ├── AccountDescriptorCell.swift
│ │ │ ├── AccountDescriptorCell.xib
│ │ │ └── AccountDescriptorCellModel.swift
│ │ ├── AccountSettings/
│ │ │ ├── AccountSettingsViewController.swift
│ │ │ ├── AccountSettingsViewModel.swift
│ │ │ └── Cells/
│ │ │ ├── AccountSettingsCell.swift
│ │ │ ├── AccountSettingsCell.xib
│ │ │ └── AccountSettingsCellModel.swift
│ │ ├── AccountSettingsViewController.swift
│ │ ├── AccountSettingsViewModel.swift
│ │ └── Accounts.storyboard
│ ├── AddressAuth/
│ │ ├── AddressAuth.storyboard
│ │ └── Controllers/
│ │ ├── AddressAuthViewController.swift
│ │ ├── AddressAuthViewModel.swift
│ │ ├── Cells/
│ │ │ ├── AddressAuthCell.swift
│ │ │ ├── AddressAuthCell.xib
│ │ │ ├── AddressAuthCellModel.swift
│ │ │ ├── AddressAuthLoaderCell.swift
│ │ │ └── AddressAuthLoaderCell.xib
│ │ ├── DialogSignViewController.swift
│ │ ├── DialogSignViewModel.swift
│ │ └── Views/
│ │ ├── AddressAuthHeader.swift
│ │ └── AddressAuthHeader.xib
│ ├── AppDelegate.swift
│ ├── AppNotifications.swift
│ ├── AppSettings/
│ │ ├── AppSettings.storyboard
│ │ ├── AppSettingsViewController.swift
│ │ ├── AppSettingsViewModel.swift
│ │ └── Cells/
│ │ ├── AppSettingsCell.swift
│ │ ├── AppSettingsCell.xib
│ │ ├── EditCell.swift
│ │ ├── EditCell.xib
│ │ ├── ElectrumCell.swift
│ │ ├── ElectrumCell.xib
│ │ ├── ElectrumCellModel.swift
│ │ ├── ProxyCell.swift
│ │ ├── ProxyCell.xib
│ │ ├── TitleCell.swift
│ │ └── TitleCell.xib
│ ├── Assets/
│ │ ├── Assets.storyboard
│ │ ├── AssetsListViewController.swift
│ │ └── TableViewCells/
│ │ └── AssetCell.swift
│ ├── Assets.xcassets/
│ │ ├── About/
│ │ │ ├── Contents.json
│ │ │ ├── ic_about.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_facebook.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_github.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_link.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_telegram.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_twitter.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_website.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── ic_youtube.imageset/
│ │ │ └── Contents.json
│ │ ├── AppIcons/
│ │ │ ├── AppIcon.appiconset/
│ │ │ │ └── Contents.json
│ │ │ ├── AppIconDev.appiconset/
│ │ │ │ └── Contents.json
│ │ │ └── Contents.json
│ │ ├── Asset Icons/
│ │ │ ├── Contents.json
│ │ │ ├── default_asset_amp_icon.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── default_asset_icon.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── default_asset_icon_old.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── default_asset_liquid_icon.imageset/
│ │ │ └── Contents.json
│ │ ├── Colors/
│ │ │ ├── Contents.json
│ │ │ ├── customBtnOff.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── customDestructiveRed.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── customGrayLight.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── customTextFieldBg.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── customTitaniumDark.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── errorRed.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccent.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccountLightBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccountOrange.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccountTestGray.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gAccountTestLightBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gBlackBg.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayBtn.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayCamera.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayCard.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayCardBorder.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayElement.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayPanel.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGrayTxt.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGreenFluo.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGreenMatrix.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gGreenTx.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gLightning.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gOrangeTx.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedFluo.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedSwapErr1.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedSwapErr2.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedTx.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gRedWarn.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gW40.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gW60.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gWarnCardBg.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gWarnCardBgBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gWarnCardBorder.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── gWarnCardBorderBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ ├── infoBlue.colorset/
│ │ │ │ └── Contents.json
│ │ │ └── warningYellow.colorset/
│ │ │ └── Contents.json
│ │ ├── Contents.json
│ │ ├── Flags/
│ │ │ ├── AD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AQ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AX-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── AZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BB-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BQ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── BZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CX-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── CZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── Contents.json
│ │ │ ├── DE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── DZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── EC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── EE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── EG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── EH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ER-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ES-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ET-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── FR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GB-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GP-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GQ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── GY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── HU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ID-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── IT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── JE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── JM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── JO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── JP-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── KZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LB-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── LY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ME-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ML-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MP-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MQ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MX-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── MZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NP-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── NZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── OM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── PY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── QA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── RE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── RO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── RS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── RW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SB-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ST-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SX-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── SZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TD-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TH-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TJ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TL-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TO-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TR-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TV-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TW-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── US-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UY-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── UZ-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VC-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VG-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VI-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VN-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── VU-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── WF-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── WS-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── XK-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── YE-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── YT-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ZA-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ZM-flag.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── ZW-flag.imageset/
│ │ │ └── Contents.json
│ │ ├── HWFlow/
│ │ │ ├── Contents.json
│ │ │ ├── _v1_v2/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── il_jade_horizontal_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_horizontal_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_load_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_load_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_logo_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_logo_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_normal_dual_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_normal_dual_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_normal_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_normal_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_ph_1_power_on.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_ph_2_follow_instructions.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_ph_3_connect_ble.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_placeholder.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_secure_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_secure_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_select_dual_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_select_dual_v2.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── il_jade_select_v1.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── il_jade_select_v2.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_airgap_biometrics.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_airgap_faceid.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_checkbox_off.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_checkbox_on.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_cpu.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_jade.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_jade_vertical.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_shield.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_state_genuine.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_state_not_genuine.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_genuine_check_state_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_hww_arrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_hww_ledger.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_magnify_qr.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_other_device.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_pinserver_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_pinserver_warn_circle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_mode_mini.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_nav_back.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_scan_shield.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_scan_square.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_unlock_globe.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr_unlock_keys.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_sensor.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_ble_unavailable.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_check_addr_jade.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_check_addr_ledger.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_connection_fail.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_jade_welcome_2.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_jade_welcome_3.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_jade_welcome_4.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_ledger.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── il_ledger_icon.imageset/
│ │ │ └── Contents.json
│ │ ├── OnBoard/
│ │ │ ├── Contents.json
│ │ │ ├── ic_arrow_square_out.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_arrows_out_line.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_ble.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_electrum.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_eye.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_help.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_help_old.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_how_secure_sw.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_hww.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_info_home.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_info_shield.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_info_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_keys.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_keys_invert.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_migrate.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_multiserver.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_onboard_app_access.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_onboard_app_pin.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_onboard_mini_face.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_onboard_mini_pin.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_plus.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_printer.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_proxy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_qr.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_recovery_phrase.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_restore.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_restore_wallet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_text.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tor.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_check.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── main_connect.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── main_connect_old.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ntw_btc.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ntw_liquid.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ntw_testnet.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── ntw_testnet_liquid.imageset/
│ │ │ └── Contents.json
│ │ ├── Wallet/
│ │ │ ├── Contents.json
│ │ │ ├── Dialog/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_dialog_archive.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_arrow_down.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_arrow_down_square.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_chevron.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_coins.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_expand.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_gear_six.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_main_actions_buy.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_main_actions_scan.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_main_actions_transfer.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_plus_circle.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_pwd39.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_qr.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_refresh.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_remove.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_rename.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_shield_check.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_show_phrase.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_simple_plus.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_sweep_wallet.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_sym_mainnet.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_sym_testnet.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_dialog_text_Aa.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_x_circle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── Image 1.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── Image.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── Promo/
│ │ │ │ ├── Contents.json
│ │ │ │ └── ic_promo_jade_full.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── TxDetails/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_tx_action_explorer.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_more.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_note.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_revert.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_share.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_action_speed.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_confirmed.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_fail_cancel.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_failed.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_in.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_out.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_pending.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_success_check.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tx_swap_arrow_in.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_tx_swap_arrow_out.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── _sec_level/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_sec_lev_coins.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_sec_lev_globe.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_sec_lev_key.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_sec_lev_light.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_sec_lev_lock.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_sec_lev_shield.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── _tabs/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_tab_home.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tab_security.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_tab_settings.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_tab_transact.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── arrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── arrow_right.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── back_wallet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── backarrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── backarrow2.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── bg_actions.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── blockstreamIcon.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── bluetooth-small.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── bluetooth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── btc.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── cancel.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── check.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── copy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── downArrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── down_chevron.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ellipses.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ellipses_vertical.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── erase.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── helpcircle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── home.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code_auth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code_call.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code_email.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_code_sms.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_empty_state.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_mode_call.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_mode_email.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_mode_gauth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_mode_sms.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_2fa_prompt.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_actions_plus.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_address_auth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_address_auth_list.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_alert_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_amount_clear.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_amount_drop_down.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_amp_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_any_asset.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_arrow_card.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_back_ios.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_binoculars.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_blockstream.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_buy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_buy_button.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_buy_circle_dots.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_buy_circle_empty.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_cancel.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_card_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_card_warn_blue.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_chart_down.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_chart_point.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_chart_up.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_check_circle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_clipboard.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_coins_exchange.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_contact_support.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_copy_new.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_copy_receve.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_copy_small.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_countly_settings.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_descriptor_clipboard.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_descriptor_qr.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_dismiss.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_done.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_dots_three.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_double_arrow_right.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_edit.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_edit_protection_face.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_edit_protection_pin.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_edit_protection_touch.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_export.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_eye_closed.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_eye_flat.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_eye_wo.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_gear.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_hide.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key_ms.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key_ms_policy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key_ss.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_key_ss_policy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lang.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_beta.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_bg.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_btc.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_data.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_flask.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_info.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_info_err.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_lnurl_auth.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_plain.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_shortcut.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_lightning_shortcut_mini.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_ln_policy.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_logo_blockstream.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_logout.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_loop.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_manual_backup.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_nav_disclose.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_passphrase.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_paste.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_paste_small.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_pencil.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_picker_down.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_preference_fw_update.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_preference_genuine_check.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_preference_recovery_phrase.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_re_enable_2fa.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_re_enable_2fa_info.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_receive.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_refresh_arrows.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_search.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_security_level.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_send.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_settings_disclose.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_setttings_experimental.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_setup_new_list_1.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_setup_new_list_2.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_setup_new_list_3.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_share.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shield_setup_new.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shield_setup_new_hw.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shield_warning.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shortcut_light.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_shortcut_lock.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_signature.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_square_slider.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_squared.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_squared_out.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_squared_out_small.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_swap.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_toggle_off.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_toggle_on.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_triangle_warn.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_hourglass.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_received.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_sent.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_tx_swap.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_v5_update.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_wallet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_wallet_disclose.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_wallet_testnet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ic_welcome_wallet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_sec_lev_hardware.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── il_sec_lev_mobile.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ledger.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── ledgerIcon.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── lightning_btc.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── link.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── liquid.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── logo.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── logo_big.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── next.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── notepen.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── qr.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── qr_bg.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── qr_sweep.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── receive.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── refresh.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── rightArrow.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── search.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── security.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── selected_circle.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── send.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── sendWhite.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── settings.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── settingsSelected.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── sign_confirmed.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── swap/
│ │ │ │ ├── Contents.json
│ │ │ │ ├── ic_get_more_jade.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_learn_more.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_swap_bitcoin.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_swap_enabled.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── ic_swap_err.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── ic_swap_liquid.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── tx_received.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── tx_received_mainnet.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── tx_send.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── unselected_circle.imageset/
│ │ │ └── Contents.json
│ │ └── wallet_list/
│ │ ├── Contents.json
│ │ ├── ic_wallet_list_about.imageset/
│ │ │ └── Contents.json
│ │ ├── ic_wallet_list_bin.imageset/
│ │ │ └── Contents.json
│ │ ├── ic_wallet_list_pencil.imageset/
│ │ │ └── Contents.json
│ │ └── ic_wallet_list_settings.imageset/
│ │ └── Contents.json
│ ├── AuthenticationFactors/
│ │ ├── AuthenticatorFactors.storyboard
│ │ ├── Country.swift
│ │ ├── EnableTwoFactorViewController.swift
│ │ ├── SetEmailViewController.swift
│ │ ├── SetGauthViewController.swift
│ │ ├── SetPhoneViewController.swift
│ │ ├── TwoFAFlow.storyboard
│ │ ├── TwoFAMethodViewController.swift
│ │ └── TwoFactorAuthViewController.swift
│ ├── Base.lproj/
│ │ └── LaunchScreen.storyboard
│ ├── BuyBTC/
│ │ ├── BuyBTCFlow.storyboard
│ │ ├── BuyBTCViewController.swift
│ │ ├── BuyBTCViewModel.swift
│ │ ├── BuyTiers.swift
│ │ ├── Cells/
│ │ │ ├── AssetToBuyCell.swift
│ │ │ ├── AssetToBuyCell.xib
│ │ │ ├── AssetToBuyCellModel.swift
│ │ │ ├── CreateAccountCell.swift
│ │ │ ├── CreateAccountCell.xib
│ │ │ ├── QuoteCell.swift
│ │ │ └── QuoteCell.xib
│ │ ├── Meld.swift
│ │ ├── MoreActions/
│ │ │ ├── MoreActionsCell.swift
│ │ │ ├── MoreActionsCell.xib
│ │ │ ├── MoreActionsViewController.swift
│ │ │ └── MoreActionsViewModel.swift
│ │ ├── SelectCountry/
│ │ │ ├── SelectCountryCell/
│ │ │ │ ├── SelectCountryCell.swift
│ │ │ │ ├── SelectCountryCell.xib
│ │ │ │ └── SelectCountryCellModel.swift
│ │ │ ├── SelectCountryViewController.swift
│ │ │ └── SelectCountryViewModel.swift
│ │ └── SelectProvider/
│ │ ├── SelectProviderCell/
│ │ │ ├── SelectProviderCell.swift
│ │ │ ├── SelectProviderCell.xib
│ │ │ └── SelectProviderCellModel.swift
│ │ ├── SelectProviderViewController.swift
│ │ └── SelectProviderViewModel.swift
│ ├── DrawerNetworkSelection/
│ │ ├── Controllers/
│ │ │ └── DrawerNetworkSelectionViewController.swift
│ │ ├── DrawerNetworkSelection.storyboard
│ │ └── TranstionAnimator/
│ │ ├── DrawerAnimator.swift
│ │ └── DrawerPresentationController.swift
│ ├── Extensions/
│ │ ├── Collection.swift
│ │ ├── Data.swift
│ │ ├── Date.swift
│ │ ├── Error.swift
│ │ ├── Gdk.swift
│ │ ├── String.swift
│ │ ├── UIApplication.swift
│ │ ├── UIButton.swift
│ │ ├── UIColor.swift
│ │ ├── UIContextualAction.swift
│ │ ├── UIImage.swift
│ │ ├── UILabel.swift
│ │ ├── UINavigationController.swift
│ │ ├── UISegmentedControl.swift
│ │ ├── UITableView.swift
│ │ ├── UITableViewCell.swift
│ │ ├── UITapGestureRecognizer.swift
│ │ ├── UITextField.swift
│ │ ├── UITextView.swift
│ │ ├── UIView.swift
│ │ └── UIViewController.swift
│ ├── Features/
│ │ ├── Qrcode/
│ │ │ ├── DialogQRViewController.swift
│ │ │ ├── MagnifyQRViewController.swift
│ │ │ ├── QRCodeView.swift
│ │ │ ├── QRGenerator.swift
│ │ │ └── Qrcode.storyboard
│ │ ├── Qrcode.storyboard
│ │ └── Scanner/
│ │ ├── BCURProvider.swift
│ │ ├── CameraManager.swift
│ │ ├── QScannerView.swift
│ │ ├── QrScannerViewController.swift
│ │ ├── Scanner.storyboard
│ │ └── SmoothProgressView.swift
│ ├── Gdk/
│ │ ├── AssetAmountList.swift
│ │ ├── Balance.swift
│ │ ├── NetworkSecurityCase.swift
│ │ ├── Resolver.swift
│ │ ├── ScanResult.swift
│ │ └── Settings.swift
│ ├── GenuineCheck/
│ │ ├── GenuineCheckDialogViewController.swift
│ │ ├── GenuineCheckDialogViewModel.swift
│ │ ├── GenuineCheckEndViewController.swift
│ │ ├── GenuineCheckEndViewModel.swift
│ │ └── GenuineCheckFlow.storyboard
│ ├── GoogleService-Dev-Info.plist
│ ├── GoogleService-Prod-Info.plist
│ ├── HWFlow/
│ │ ├── BleUnavailable.storyboard
│ │ ├── Connect/
│ │ │ ├── ConnectViewController.swift
│ │ │ └── ConnectViewModel.swift
│ │ ├── Controllers/
│ │ │ ├── BleUnavailableViewController.swift
│ │ │ ├── ConnectViewController.swift
│ │ │ ├── EnableTorViewController.swift
│ │ │ ├── HWFlowBaseViewController.swift
│ │ │ ├── PairingSuccessViewController.swift
│ │ │ ├── PinCreateViewController.swift
│ │ │ ├── PinServerWarnViewController.swift
│ │ │ ├── QRPsbtAquireViewController.swift
│ │ │ ├── QRPsbtShowViewController.swift
│ │ │ ├── UpdateFirmwareViewController.swift
│ │ │ └── WelcomeJadeViewController.swift
│ │ ├── Dialogs/
│ │ │ ├── EnableBiometricsDialogViewController.swift
│ │ │ ├── HWDialogConnectViewController.swift
│ │ │ ├── HWDialogs.storyboard
│ │ │ ├── VerifyOnDeviceViewController.swift
│ │ │ └── VerifyOnDeviceViewModel.swift
│ │ ├── HWFlow.storyboard
│ │ ├── Managers/
│ │ │ ├── BleHwManager.swift
│ │ │ ├── BleJadeManager.swift
│ │ │ ├── BleLedgerManager.swift
│ │ │ ├── CentralManager.swift
│ │ │ ├── JadeManager.swift
│ │ │ └── QRJadeManager.swift
│ │ ├── QRUnlock/
│ │ │ ├── QRUnlockInfoAlertViewController.swift
│ │ │ ├── QRUnlockJadePinInfoViewController.swift
│ │ │ ├── QRUnlockPinUnlockDialogViewController.swift
│ │ │ ├── QRUnlockSelectAccountViewController.swift
│ │ │ ├── QRUnlockSelectAccountViewModel.swift
│ │ │ ├── QRUnlockSignDialogViewController.swift
│ │ │ └── QRUnlockSuccessAlertViewController.swift
│ │ ├── QRUnlockFlow.storyboard
│ │ ├── QRUnlockJade/
│ │ │ ├── QRUnlockJadeViewController.swift
│ │ │ └── QRUnlockJadeViewModel.swift
│ │ ├── Scan/
│ │ │ ├── Cells/
│ │ │ │ ├── DeviceCell.swift
│ │ │ │ └── DeviceCell.xib
│ │ │ ├── ScanListItem.swift
│ │ │ ├── ScanViewController.swift
│ │ │ └── ScanViewModel.swift
│ │ ├── Setup/
│ │ │ ├── SetupJadeViewController.swift
│ │ │ └── SetupJadeViewModel.swift
│ │ └── Wait/
│ │ ├── JadeWaitViewController.swift
│ │ ├── JadeWaitViewModel.swift
│ │ └── LedgerWaitViewController.swift
│ ├── Help/
│ │ ├── Help.storyboard
│ │ ├── HelpViewController.swift
│ │ └── TableViewCells/
│ │ └── HelpCell.swift
│ ├── HelpCenter/
│ │ ├── ContactUsViewController.swift
│ │ └── HelpCenter.storyboard
│ ├── Helpers/
│ │ ├── AccountNavigator.swift
│ │ ├── Common.swift
│ │ ├── Constants.swift
│ │ ├── CustomVisualEffectView.swift
│ │ ├── DropAlert.swift
│ │ ├── DynamicTableView.swift
│ │ ├── JadeAsset.swift
│ │ ├── KeyboardViewController.swift
│ │ ├── LocalNotification.swift
│ │ ├── SearchTextField.swift
│ │ └── UIErrorLabel.swift
│ ├── Home/
│ │ ├── Cells/
│ │ │ ├── WalletListCell.swift
│ │ │ └── WalletListCell.xib
│ │ ├── Controllers/
│ │ │ ├── BiometricLoginViewController.swift
│ │ │ ├── HomeViewController.swift
│ │ │ ├── LoginViewController.swift
│ │ │ └── V5ViewController.swift
│ │ ├── Home.storyboard
│ │ └── LoginViewModel.swift
│ ├── ImproveSecurityViewController.swift
│ ├── Info.plist
│ ├── LTFlow/
│ │ ├── Controllers/
│ │ │ └── LTRecoverFunds/
│ │ │ └── LTRecoverFundsViewController.swift
│ │ ├── Create/
│ │ │ ├── LTCreateModel.swift
│ │ │ ├── LTCreateViewController.swift
│ │ │ ├── LTExportJadeViewController.swift
│ │ │ └── LTExportJadeViewModel.swift
│ │ ├── Details/
│ │ │ ├── LTDetailsCell/
│ │ │ │ ├── LTDetailsCell.swift
│ │ │ │ ├── LTDetailsCell.xib
│ │ │ │ └── LTDetailsCellModel.swift
│ │ │ ├── LTDetailsModel.swift
│ │ │ └── LTDetailsViewController.swift
│ │ ├── LTFlow.storyboard
│ │ ├── Redeem/
│ │ │ ├── Cells/
│ │ │ │ ├── LTRecoverFundsAddressCell.swift
│ │ │ │ ├── LTRecoverFundsAmountCell.swift
│ │ │ │ ├── LTRecoverFundsFeeCell.swift
│ │ │ │ ├── LTRecoverFundsSummaryCell.swift
│ │ │ │ └── LTRecoveryFundsErrorCell.swift
│ │ │ ├── LTRedeemViewController.swift
│ │ │ └── LTRedeemViewModel.swift
│ │ ├── Settings/
│ │ │ ├── LTSettingDialogCell/
│ │ │ │ ├── LTSettingDialogCell.swift
│ │ │ │ ├── LTSettingDialogCell.xib
│ │ │ │ └── LTSettingDialogCellModel.swift
│ │ │ ├── LTSettingsDialog.storyboard
│ │ │ ├── LTSettingsDialogModel.swift
│ │ │ ├── LTSettingsDialogViewController.swift
│ │ │ └── LTSettingsViewController.swift
│ │ └── Success/
│ │ ├── LTConfirmingViewController.swift
│ │ ├── LTSuccessViewController.swift
│ │ └── LTSuccessViewModel.swift
│ ├── Menu/
│ │ ├── PopoverMenu.storyboard
│ │ ├── PopoverMenuHomeViewController.swift
│ │ └── PopoverMenuUnarchiveViewController.swift
│ ├── ModalPresentation/
│ │ ├── ModalAnimator.swift
│ │ └── ModalPresentationController.swift
│ ├── OnBoard/
│ │ ├── Cells/
│ │ │ ├── MnemonicCell.swift
│ │ │ └── MnemonicWordCell.swift
│ │ ├── Controllers/
│ │ │ ├── GetStartedOnBoardViewController.swift
│ │ │ ├── KeyboardSuggestions.swift
│ │ │ ├── KeyboardSuggestions.xib
│ │ │ ├── MnemonicViewController.swift
│ │ │ ├── OnBoardAppAccessViewController.swift
│ │ │ ├── OnBoardAppPinViewController.swift
│ │ │ ├── SetPinViewController.swift
│ │ │ ├── SetupNewMoreActionsViewController.swift
│ │ │ ├── SetupNewViewController.swift
│ │ │ ├── StartOnBoardViewController.swift
│ │ │ └── WalletSettingsViewController.swift
│ │ ├── OnBoard.storyboard
│ │ ├── OnboardViewModel.swift
│ │ └── SetPinViewController.swift
│ ├── Onboarding/
│ │ ├── EnterMnemonicsViewController.xib
│ │ └── TOSViewController.xib
│ ├── PrivacyInfo.xcprivacy
│ ├── Receive/
│ │ ├── Cells/
│ │ │ ├── AmountCell.swift
│ │ │ ├── AmountCell.xib
│ │ │ ├── AmountCellModel.swift
│ │ │ ├── ChangeAccountCell/
│ │ │ │ ├── ChangeAccountCell.swift
│ │ │ │ └── ChangeAccountCell.xib
│ │ │ ├── LTInfoCell.swift
│ │ │ ├── LTInfoCell.xib
│ │ │ ├── LTInfoCellModel.swift
│ │ │ ├── LTNoteCell.swift
│ │ │ ├── LTNoteCell.xib
│ │ │ ├── LTNoteCellModel.swift
│ │ │ ├── ReceiveAddressCell.swift
│ │ │ ├── ReceiveAddressCell.xib
│ │ │ ├── ReceiveAddressCellModel.swift
│ │ │ ├── ReceiveAssetCell/
│ │ │ │ ├── ReceiveAssetCell.swift
│ │ │ │ ├── ReceiveAssetCell.xib
│ │ │ │ └── ReceiveAssetCellModel.swift
│ │ │ └── SelectorCell/
│ │ │ ├── SegmentedCell.swift
│ │ │ └── SegmentedCell.xib
│ │ ├── DialogFundingFee/
│ │ │ └── DialogFundingFeeViewController.swift
│ │ ├── LNInvoice/
│ │ │ ├── LNInvoiceViewController.swift
│ │ │ └── LNInvoiceViewModel.swift
│ │ ├── ReceiveFlow.storyboard
│ │ ├── ReceiveViewController.swift
│ │ └── ReceiveViewModel.swift
│ ├── Recovery/
│ │ ├── Controllers/
│ │ │ ├── BackupSuccessViewController.swift
│ │ │ ├── PhraseNoteDownViewController.swift
│ │ │ ├── PhraseNoteDownViewModel.swift
│ │ │ └── RecoveryVerifyViewController.swift
│ │ └── Recovery.storyboard
│ ├── Rive/
│ │ ├── Illustration Account Archived.riv
│ │ ├── Illustration Checklist.riv
│ │ ├── Illustration Checkmark.riv
│ │ ├── Illustration Envelope.riv
│ │ ├── Illustration Lightning Transaction.riv
│ │ ├── Illustration Recovery Phrase.riv
│ │ ├── Illustration Rocket.riv
│ │ ├── Illustration Stars Success.riv
│ │ ├── Illustration Wallet.riv
│ │ ├── animation_01_jade_v1.riv
│ │ ├── animation_02_jade_v1.riv
│ │ ├── animation_03_jade_v1.riv
│ │ ├── animation_04_jade_v1.riv
│ │ ├── animation_v5.riv
│ │ ├── create_wallet.riv
│ │ ├── jadeplus_1.riv
│ │ ├── jadeplus_2.riv
│ │ ├── jadeplus_3.riv
│ │ └── lightning_success.riv
│ ├── ScreenLockWindow.swift
│ ├── ScreenLocker.swift
│ ├── Sendflow/
│ │ ├── Cells/
│ │ │ ├── AccountAssetCell.swift
│ │ │ ├── AccountAssetCell.xib
│ │ │ ├── AssetAssetCellModel.swift
│ │ │ ├── SendFeeCell.swift
│ │ │ ├── SendFeeCell.xib
│ │ │ └── SendFeeCellModel.swift
│ │ ├── Controllers/
│ │ │ ├── ReEnable2faSuccessViewController.swift
│ │ │ ├── SendAddressInputViewController.swift
│ │ │ ├── SendAmountViewControllerLegacy.swift
│ │ │ ├── SendDialogFeeViewController.swift
│ │ │ ├── SendDialogFeeViewModel.swift
│ │ │ ├── SendFailViewController.swift
│ │ │ ├── SendFeeInfoViewController.swift
│ │ │ ├── SendHWConfirmViewController.swift
│ │ │ ├── SendTxConfirmViewController.swift
│ │ │ └── SendTxSuccessViewController.swift
│ │ ├── Coordinators/
│ │ │ └── SendCoordinator.swift
│ │ ├── Domain/
│ │ │ ├── Models/
│ │ │ │ ├── CreateTx.swift
│ │ │ │ ├── PaymentTarget.swift
│ │ │ │ └── TransactionDraft.swift
│ │ │ └── Parser/
│ │ │ └── PaymentTargetParser.swift
│ │ ├── Flow/
│ │ │ ├── AccountAsset/
│ │ │ │ ├── SendAccountAssetViewController.swift
│ │ │ │ ├── SendAccountAssetViewModel.swift
│ │ │ │ └── SendAccountAssetViewModelDelegate.swift
│ │ │ ├── Address/
│ │ │ │ ├── SendAddressViewController.swift
│ │ │ │ ├── SendAddressViewModel.swift
│ │ │ │ └── SendAddressViewModelDelegate.swift
│ │ │ ├── Amount/
│ │ │ │ ├── SendAmountViewController.swift
│ │ │ │ ├── SendAmountViewModel.swift
│ │ │ │ └── SendAmountViewModelDelegate.swift
│ │ │ ├── Error/
│ │ │ │ ├── SendFlowError.swift
│ │ │ │ └── SendFlowErrorDisplayable.swift
│ │ │ ├── Failure/
│ │ │ │ ├── SendFailureViewController.swift
│ │ │ │ ├── SendFailureViewModel.swift
│ │ │ │ └── SendFailureViewModelDelegate.swift
│ │ │ ├── HW/
│ │ │ │ ├── SendHWViewController.swift
│ │ │ │ └── SendHWViewModel.swift
│ │ │ ├── SendFlow.storyboard
│ │ │ ├── Sign/
│ │ │ │ ├── SendLwkSignViewController.swift
│ │ │ │ ├── SendLwkSignViewModel.swift
│ │ │ │ └── SendLwkSignViewModelDelegate.swift
│ │ │ ├── Success/
│ │ │ │ ├── SendSuccessViewController.swift
│ │ │ │ ├── SendSuccessViewModel.swift
│ │ │ │ └── SendSuccessViewModelDelegate.swift
│ │ │ ├── Swap/
│ │ │ │ ├── SendSwapViewController.swift
│ │ │ │ ├── SendSwapViewModel.swift
│ │ │ │ ├── SendSwapViewModelDelegate.swift
│ │ │ │ └── SwapPosition.swift
│ │ │ ├── SwapFee/
│ │ │ │ ├── Cells/
│ │ │ │ │ ├── SwapFeeCell.swift
│ │ │ │ │ ├── SwapFeeCell.xib
│ │ │ │ │ └── SwapFeeCellModel.swift
│ │ │ │ ├── SendSwapFeeViewController.swift
│ │ │ │ ├── SendSwapFeeViewModel.swift
│ │ │ │ └── SendSwapFeeViewModelDelegate.swift
│ │ │ └── Views/
│ │ │ ├── SendTitleView.swift
│ │ │ └── SendTitleView.xib
│ │ ├── Services/
│ │ │ ├── FeeEstimator.swift
│ │ │ ├── QuoteBuilder.swift
│ │ │ └── TransactionBuilder.swift
│ │ ├── Utilities/
│ │ │ └── AddressDisplay.swift
│ │ └── ViewModels/
│ │ ├── SendAddressInputViewModel.swift
│ │ ├── SendAmountViewModelLegacy.swift
│ │ ├── SendHWConfirmViewModel.swift
│ │ └── SendTxConfirmViewModel.swift
│ ├── Services/
│ │ ├── Api.swift
│ │ ├── AssetsManager/
│ │ │ ├── AssetsManagerBitcoin.swift
│ │ │ ├── AssetsManagerLiquid.swift
│ │ │ ├── AssetsManagerProtocol.swift
│ │ │ └── AssetsManagerTestnet.swift
│ │ ├── BackupHelper.swift
│ │ ├── DrawerAnimationManager.swift
│ │ ├── LangHelper.swift
│ │ ├── PromoManager.swift
│ │ ├── SafeNavigationManager.swift
│ │ ├── SessionsManager.swift
│ │ ├── StoreReviewManager.swift
│ │ ├── SupportManager.swift
│ │ ├── URLSchemeManager.swift
│ │ ├── VideoCaptureDump.swift
│ │ └── ZendeskSdk.swift
│ ├── Settings/
│ │ └── CsvViewController.swift
│ ├── Shared/
│ │ ├── Alert/
│ │ │ ├── AlertViewController.swift
│ │ │ └── AlertViewModel.swift
│ │ ├── Alert.storyboard
│ │ ├── Cells/
│ │ │ ├── DialogDetailCell.swift
│ │ │ └── DialogDetailCell.xib
│ │ ├── Controllers/
│ │ │ ├── DialogAbout/
│ │ │ │ └── DialogAboutViewController.swift
│ │ │ ├── DialogAccountIdViewController.swift
│ │ │ ├── DialogAmount/
│ │ │ │ └── DialogAmountViewController.swift
│ │ │ ├── DialogCustomFee/
│ │ │ │ └── DialogCustomFeeViewController.swift
│ │ │ ├── DialogDelete/
│ │ │ │ └── DialogDeleteViewController.swift
│ │ │ ├── DialogDetail/
│ │ │ │ └── DialogDetailViewController.swift
│ │ │ ├── DialogEdit/
│ │ │ │ └── DialogEditViewController.swift
│ │ │ ├── DialogExplorerOptionsViewController.swift
│ │ │ ├── DialogFeedback/
│ │ │ │ └── DialogFeedbackViewController.swift
│ │ │ ├── DialogGroupList/
│ │ │ │ ├── Cells/
│ │ │ │ │ └── DialogGroupListCell/
│ │ │ │ │ ├── DialogGroupListCell.swift
│ │ │ │ │ ├── DialogGroupListCell.xib
│ │ │ │ │ └── DialogGroupListCellModel.swift
│ │ │ │ ├── DialogGroupListViewController.swift
│ │ │ │ └── DialogGroupListViewModel.swift
│ │ │ ├── DialogInputDenomination/
│ │ │ │ ├── Cells/
│ │ │ │ │ └── DialogInputDenominationCell.swift
│ │ │ │ ├── DialogInputDenominationCell.xib
│ │ │ │ ├── DialogInputDenominationViewController.swift
│ │ │ │ ├── DialogInputDenominationViewModel.swift
│ │ │ │ └── Views/
│ │ │ │ ├── DialogInputDenominationFooter.swift
│ │ │ │ └── DialogInputDenominationFooter.xib
│ │ │ ├── DialogJadeCheckViewController.swift
│ │ │ ├── DialogLiquidAssetToFiat/
│ │ │ │ ├── Cells/
│ │ │ │ │ ├── DialogLiquidAssetToFiatCell.swift
│ │ │ │ │ └── DialogLiquidAssetToFiatCell.xib
│ │ │ │ ├── DialogLiquidAssetToFiatViewController.swift
│ │ │ │ ├── DialogLiquidAssetToFiatViewModel.swift
│ │ │ │ └── Views/
│ │ │ │ ├── DialogLiquidAssetToFiatFooter.swift
│ │ │ │ └── DialogLiquidAssetToFiatFooter.xib
│ │ │ ├── DialogList/
│ │ │ │ ├── Cells/
│ │ │ │ │ ├── AutoLogoutCell/
│ │ │ │ │ │ ├── AutoLogoutCell.swift
│ │ │ │ │ │ ├── AutoLogoutCell.xib
│ │ │ │ │ │ └── AutoLogoutCellModel.swift
│ │ │ │ │ ├── DialogEnable2faCell/
│ │ │ │ │ │ └── DialogEnable2faCell.swift
│ │ │ │ │ └── DialogListCell/
│ │ │ │ │ ├── DialogEnable2faCell.xib
│ │ │ │ │ ├── DialogEnable2faCellModel.swift
│ │ │ │ │ ├── DialogListCell.swift
│ │ │ │ │ ├── DialogListCell.xib
│ │ │ │ │ └── DialogListCellModel.swift
│ │ │ │ ├── DialogCountlyViewController.swift
│ │ │ │ ├── DialogListViewController.swift
│ │ │ │ └── DialogListViewModel.swift
│ │ │ ├── DialogLoginPassphraseViewController.swift
│ │ │ ├── DialogMnemonicLengthViewController.swift
│ │ │ ├── DialogOTAViewController.swift
│ │ │ ├── DialogPassphrase/
│ │ │ │ └── DialogPassphraseViewController.swift
│ │ │ ├── DialogReceiveShareTypeViewController.swift
│ │ │ ├── DialogReceiveVerifyAddressViewController.swift
│ │ │ ├── DialogRecipientDeleteViewController.swift
│ │ │ ├── DialogRecoveryHelpViewController.swift
│ │ │ ├── DialogRegistryFailViewController.swift
│ │ │ ├── DialogRename/
│ │ │ │ └── DialogRenameViewController.swift
│ │ │ ├── DialogSafeNavigationViewController.swift
│ │ │ ├── DialogSendHWSummaryViewController.swift
│ │ │ ├── DialogShareTxOptionViewController.swift
│ │ │ ├── DialogSwapJade/
│ │ │ │ └── DialogSwapJadeViewController.swift
│ │ │ ├── DialogSwapJadeEnabled/
│ │ │ │ └── DialogSwapJadeEnabledViewController.swift
│ │ │ ├── DialogTableViewController.swift
│ │ │ ├── DialogViewController.swift
│ │ │ ├── DialogWatchOnlySetUpViewController.swift
│ │ │ └── Dialogdenomination/
│ │ │ ├── Cells/
│ │ │ │ ├── DialogDenominationCell.swift
│ │ │ │ └── DialogDenominationCell.xib
│ │ │ ├── DialogDenominationViewController.swift
│ │ │ └── DialogDenominationViewModel.swift
│ │ ├── Dialogs.storyboard
│ │ ├── LTSettingsDialogViewController.storyboard
│ │ ├── Models/
│ │ │ ├── AccountPrefs.swift
│ │ │ ├── DebugPrefs.swift
│ │ │ ├── Enable2faPrefs.swift
│ │ │ ├── LoginPrefs.swift
│ │ │ ├── MoreOptPrefs.swift
│ │ │ ├── NetworkPrefs.swift
│ │ │ ├── PhrasePrefs.swift
│ │ │ ├── RedeemPrefs.swift
│ │ │ ├── SharePrefs.swift
│ │ │ ├── WalletListPrefs.swift
│ │ │ └── WalletPrefs.swift
│ │ └── Shared.storyboard
│ ├── Survey/
│ │ ├── Survey.storyboard
│ │ └── SurveyViewController.swift
│ ├── TestAutomation/
│ │ └── AccessibilityIds.swift
│ ├── TxDetails/
│ │ ├── Cells/
│ │ │ ├── TxDetailsActionCell.swift
│ │ │ ├── TxDetailsActionCell.xib
│ │ │ ├── TxDetailsActionCellModel.swift
│ │ │ ├── TxDetailsAmountCell.swift
│ │ │ ├── TxDetailsAmountCell.xib
│ │ │ ├── TxDetailsAmountCellModel.swift
│ │ │ ├── TxDetailsInfoCell.swift
│ │ │ ├── TxDetailsInfoCell.xib
│ │ │ ├── TxDetailsInfoCellModel.swift
│ │ │ ├── TxDetailsMultiAmountCell.swift
│ │ │ ├── TxDetailsMultiAmountCell.xib
│ │ │ ├── TxDetailsStatusCell.swift
│ │ │ ├── TxDetailsStatusCell.xib
│ │ │ ├── TxDetailsStatusCellModel.swift
│ │ │ ├── TxDetailsTotalsCell.swift
│ │ │ ├── TxDetailsTotalsCell.xib
│ │ │ └── TxDetailsTotalsCellModel.swift
│ │ ├── MoreInfo/
│ │ │ ├── Cells/
│ │ │ │ ├── TxDetailsMoreInfoCell.swift
│ │ │ │ ├── TxDetailsMoreInfoCell.xib
│ │ │ │ └── TxDetailsMoreInfoCellModel.swift
│ │ │ ├── TxDetailsMoreInfoViewController.swift
│ │ │ └── TxDetailsMoreInfoViewModel.swift
│ │ ├── TxDetails.storyboard
│ │ ├── TxDetailsViewController.swift
│ │ └── TxDetailsViewModel.swift
│ ├── UserSettings/
│ │ ├── Cells/
│ │ │ ├── CurrencyCell.swift
│ │ │ ├── FooterQrCell.swift
│ │ │ ├── MultisigSettingsCell.swift
│ │ │ ├── MultisigSettingsCellModel.swift
│ │ │ ├── TFACells/
│ │ │ │ ├── TFAActionsCell.swift
│ │ │ │ ├── TFAActionsCell.xib
│ │ │ │ ├── TFACell.swift
│ │ │ │ ├── TFACell.xib
│ │ │ │ ├── TFAEmptyCell.swift
│ │ │ │ ├── TFAEmptyCell.xib
│ │ │ │ ├── TFAHeaderCell.swift
│ │ │ │ ├── TFAHeaderCell.xib
│ │ │ │ ├── TFAMethodCell.swift
│ │ │ │ ├── TFAMethodCell.xib
│ │ │ │ ├── TFANetworkSelectCell.swift
│ │ │ │ ├── TFANetworkSelectCell.xib
│ │ │ │ ├── TFATimeCell.swift
│ │ │ │ └── TFATimeCell.xib
│ │ │ ├── TwoFaCsvTimeCell.swift
│ │ │ ├── TwoFaMethodsCell.swift
│ │ │ ├── TwoFactorSettingsCell.swift
│ │ │ ├── TwoFactorSettingsCellModel.swift
│ │ │ ├── WatchOnlySettingsCell.swift
│ │ │ ├── WatchOnlySettingsCellModel.swift
│ │ │ └── WordCell.swift
│ │ ├── Controllers/
│ │ │ ├── AccountArchivedViewController.swift
│ │ │ ├── MultisigSettingsViewController.swift
│ │ │ ├── PgpViewController.swift
│ │ │ ├── RecoveryTransactionsViewController.swift
│ │ │ ├── ShowMnemonicsViewController.swift
│ │ │ ├── TFAViewController.swift
│ │ │ ├── TwoFactorAuthenticationViewController.swift
│ │ │ ├── TwoFactorLimitViewController.swift
│ │ │ └── WatchOnlySettingsViewController.swift
│ │ ├── Models/
│ │ │ ├── MultisigSettings.swift
│ │ │ └── WatchOnlySettings.swift
│ │ ├── Swaps/
│ │ │ ├── JadeBoltzExportViewController.swift
│ │ │ ├── JadeBoltzExportViewModel.swift
│ │ │ ├── JadeBoltzSwapViewController.swift
│ │ │ └── JadeBoltzSwapViewModel.swift
│ │ ├── UserSettings.storyboard
│ │ └── ViewModels/
│ │ ├── MultisigSettingsViewModel.swift
│ │ ├── RecoveryTransactionsViewModel.swift
│ │ ├── TFAViewModel.swift
│ │ ├── TwoFactorSettingsViewModel.swift
│ │ └── WatchOnlySettingsViewModel.swift
│ ├── Utility/
│ │ ├── AssetSelect/
│ │ │ ├── AssetSelectCell/
│ │ │ │ ├── AnyAssetCell.swift
│ │ │ │ ├── AnyAssetCell.xib
│ │ │ │ ├── AssetSelectCell.swift
│ │ │ │ ├── AssetSelectCell.xib
│ │ │ │ └── AssetSelectCellModel.swift
│ │ │ ├── AssetSelectViewController.swift
│ │ │ └── AssetSelectViewModel.swift
│ │ ├── Browser/
│ │ │ └── BrowserViewController.swift
│ │ ├── GreenPicker/
│ │ │ ├── Cells/
│ │ │ │ ├── GreenPickerCell.swift
│ │ │ │ └── GreenPickerCell.xib
│ │ │ ├── GreenPIckerViewController.swift
│ │ │ └── GreenPickerViewModel.swift
│ │ ├── Lang/
│ │ │ ├── Cells/
│ │ │ │ ├── LangCell.swift
│ │ │ │ ├── LangCell.xib
│ │ │ │ └── LangCellModel.swift
│ │ │ ├── LangSelectViewController.swift
│ │ │ └── LangSelectViewModel.swift
│ │ ├── MasterKey/
│ │ │ └── MasterKeyViewController.swift
│ │ ├── SecuritySelect/
│ │ │ ├── Cells/
│ │ │ │ ├── PolicyCell.swift
│ │ │ │ ├── PolicyCell.xib
│ │ │ │ ├── PolicyCellModel.swift
│ │ │ │ └── PolicyCellType.swift
│ │ │ ├── SecuritySelectViewController.swift
│ │ │ └── SecuritySelectViewModel.swift
│ │ └── Utility.storyboard
│ ├── Views/
│ │ ├── ArcView/
│ │ │ └── ArcView.swift
│ │ ├── ProgressView/
│ │ │ ├── Loader.swift
│ │ │ ├── Loader.xib
│ │ │ ├── ProgressShapeLayer.swift
│ │ │ ├── ProgressView.swift
│ │ │ ├── RotationAnimation.swift
│ │ │ ├── StrokeAnimation.swift
│ │ │ └── StrokeColorAnimation.swift
│ │ ├── SquareSliderView/
│ │ │ └── SquareSliderView.swift
│ │ └── TransactionBarItem/
│ │ ├── TransactionBarItem.swift
│ │ └── TransactionBarItem.xib
│ ├── WOFlow/
│ │ ├── Controllers/
│ │ │ ├── WODetailsCompactViewController.swift
│ │ │ ├── WOLoginViewController.swift
│ │ │ └── WOSetupViewController.swift
│ │ ├── ViewModels/
│ │ │ └── WOViewModel.swift
│ │ └── WOFlow.storyboard
│ ├── Wallet/
│ │ ├── ActionsSheet/
│ │ │ ├── ActionsSheetFlow.storyboard
│ │ │ ├── ActionsSheetViewController.swift
│ │ │ ├── ActionsSheetViewModel.swift
│ │ │ └── Cells/
│ │ │ ├── ActionsSheetCell.swift
│ │ │ ├── ActionsSheetCell.xib
│ │ │ └── ActionsSheetCellModel.swift
│ │ ├── DenominationExchangeFlow/
│ │ │ ├── DenominationExchangeFlow.storyboard
│ │ │ ├── DenominationExchangeViewController.swift
│ │ │ ├── DenominationExchangeViewModel.swift
│ │ │ ├── DialogExchangeViewController.swift
│ │ │ └── DialogExchangeViewModel.swift
│ │ ├── Learn2faViewController.swift
│ │ ├── Promo/
│ │ │ ├── PromoFlow.storyboard
│ │ │ └── PromoViewController.swift
│ │ ├── ReEnable2fa/
│ │ │ ├── Cells/
│ │ │ │ ├── ReEnable2faAccountCell.swift
│ │ │ │ └── ReEnable2faAccountCell.xib
│ │ │ ├── Controllers/
│ │ │ │ ├── ReEnable2faViewController.swift
│ │ │ │ └── ReEnable2faViewModel.swift
│ │ │ └── ReEnable2fa.storyboard
│ │ ├── Reactivate2faViewController.swift
│ │ ├── SystemMessageViewController.swift
│ │ ├── Views/
│ │ │ ├── NetworkSelectorBarItem.swift
│ │ │ └── NetworkSelectorBarItem.xib
│ │ └── Wallet.storyboard
│ ├── WalletTabBar/
│ │ ├── Core/
│ │ │ ├── Models/
│ │ │ │ ├── Refresh.swift
│ │ │ │ ├── Sections.swift
│ │ │ │ └── WalletState.swift
│ │ │ └── WalletDataModel.swift
│ │ ├── DialogAccounts/
│ │ │ ├── DialogAccountCell/
│ │ │ │ ├── AccountCellModel.swift
│ │ │ │ ├── DialogAccountCell.swift
│ │ │ │ └── DialogAccountCell.xib
│ │ │ ├── DialogAccountsViewController.swift
│ │ │ └── DialogAccountsViewModel.swift
│ │ ├── DialogActions/
│ │ │ ├── DialogActionsViewController.swift
│ │ │ └── DialogActionsViewModel.swift
│ │ ├── DialogCompareSecurity/
│ │ │ └── DialogCompareSecurityViewController.swift
│ │ ├── EditProtection/
│ │ │ └── EditProtectionViewController.swift
│ │ ├── ManageAsset/
│ │ │ ├── Cells/
│ │ │ │ ├── AssetBalanceCell.swift
│ │ │ │ └── AssetBalanceCell.xib
│ │ │ ├── ManageAsset.storyboard
│ │ │ ├── ManageAssetViewController.swift
│ │ │ └── ManageAssetViewModel.swift
│ │ ├── ManualBackup/
│ │ │ ├── ManualBackupViewController.swift
│ │ │ └── ManualBackupViewModel.swift
│ │ ├── TabBar/
│ │ │ ├── WalletTabBar.swift
│ │ │ ├── WalletTabBarModel.swift
│ │ │ └── WalletTabBarViewController.swift
│ │ ├── Tabs/
│ │ │ ├── Cells/
│ │ │ │ ├── ActionCell/
│ │ │ │ │ ├── ActionCell.swift
│ │ │ │ │ ├── ActionCell.xib
│ │ │ │ │ └── ActionCellModel.swift
│ │ │ │ ├── AlertCardCell/
│ │ │ │ │ ├── AlerCardCellModel.swift
│ │ │ │ │ ├── AlertCardCell.swift
│ │ │ │ │ └── AlertCardCell.xib
│ │ │ │ ├── BalanceCell/
│ │ │ │ │ ├── BalanceCell.swift
│ │ │ │ │ ├── BalanceCell.xib
│ │ │ │ │ └── BalanceCellModel.swift
│ │ │ │ ├── PreferenceCell/
│ │ │ │ │ ├── PreferenceCell.swift
│ │ │ │ │ ├── PreferenceCell.xib
│ │ │ │ │ └── PreferenceCellModel.swift
│ │ │ │ ├── PriceChartCell/
│ │ │ │ │ ├── PriceChartCell.swift
│ │ │ │ │ ├── PriceChartCell.xib
│ │ │ │ │ └── PriceChartCellModel.swift
│ │ │ │ ├── PromoCell/
│ │ │ │ │ ├── Promo.swift
│ │ │ │ │ ├── PromoCellModel.swift
│ │ │ │ │ ├── PromoLayout0Cell.swift
│ │ │ │ │ ├── PromoLayout0Cell.xib
│ │ │ │ │ ├── PromoLayout1Cell.swift
│ │ │ │ │ ├── PromoLayout1Cell.xib
│ │ │ │ │ ├── PromoLayout2Cell.swift
│ │ │ │ │ └── PromoLayout2Cell.xib
│ │ │ │ ├── SecurityLevelCell/
│ │ │ │ │ ├── SecurityLevelCell.swift
│ │ │ │ │ └── SecurityLevelCell.xib
│ │ │ │ ├── SettingsCell/
│ │ │ │ │ ├── SettingsCell.swift
│ │ │ │ │ └── SettingsCell.xib
│ │ │ │ ├── TabHeaderCell/
│ │ │ │ │ ├── TabHeaderCell.swift
│ │ │ │ │ └── TabHeaderCell.xib
│ │ │ │ ├── TransactActionsCell/
│ │ │ │ │ ├── TransactActions.swift
│ │ │ │ │ ├── TransactActionsCell.swift
│ │ │ │ │ └── TransactActionsCell.xib
│ │ │ │ ├── TransactionCell/
│ │ │ │ │ ├── MultiLabelView.swift
│ │ │ │ │ ├── MultiLabelView.xib
│ │ │ │ │ ├── MultiLabelViewModel.swift
│ │ │ │ │ ├── SingleLabelView.swift
│ │ │ │ │ ├── SingleLabelView.xib
│ │ │ │ │ ├── TransactionCell.swift
│ │ │ │ │ ├── TransactionCell.xib
│ │ │ │ │ └── TransactionCellModel.swift
│ │ │ │ ├── WalletAssetCell/
│ │ │ │ │ ├── WalletAssetCell.swift
│ │ │ │ │ ├── WalletAssetCell.xib
│ │ │ │ │ └── WalletAssetCellModel.swift
│ │ │ │ └── WatchonlyCell/
│ │ │ │ ├── WatchonlyCell.swift
│ │ │ │ └── WatchonlyCell.xib
│ │ │ ├── Home/
│ │ │ │ ├── PriceChartModel.swift
│ │ │ │ ├── TabHomeVC.swift
│ │ │ │ └── TabHomeVM.swift
│ │ │ ├── Security/
│ │ │ │ ├── TabSecurityVC.swift
│ │ │ │ └── TabSecurityVM.swift
│ │ │ ├── Settings/
│ │ │ │ ├── TabSettingsCellModel.swift
│ │ │ │ ├── TabSettingsModel.swift
│ │ │ │ ├── TabSettingsVC.swift
│ │ │ │ └── TabSettingsVM.swift
│ │ │ ├── TabViewController.swift
│ │ │ ├── TabViewModel.swift
│ │ │ ├── Transact/
│ │ │ │ ├── TabTransactVC.swift
│ │ │ │ └── TabTransactVM.swift
│ │ │ ├── WalletTab.storyboard
│ │ │ └── WalletTab.swift
│ │ └── WelcomeView/
│ │ ├── WelcomeView.swift
│ │ └── WelcomeView.xib
│ ├── cs.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── de.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── en.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── es.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── fr.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── gaiosDebug.entitlements
│ ├── gaiosRelease.entitlements
│ ├── gaiosStaging.entitlements
│ ├── he.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── it.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── ja.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── ko.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── nl.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── pt-BR.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── ro.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── ru.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── uk.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ ├── vi.lproj/
│ │ ├── InfoPlist.strings
│ │ └── Localizable.strings
│ └── zh.lproj/
│ ├── InfoPlist.strings
│ └── Localizable.strings
├── gaios.xcodeproj/
│ ├── project.pbxproj
│ ├── project.xcworkspace/
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata/
│ │ └── swiftpm/
│ │ └── Package.resolved
│ └── xcshareddata/
│ └── xcschemes/
│ ├── NotificationService.xcscheme
│ └── gaios.xcscheme
├── gaiosTests/
│ ├── Info.plist
│ └── gaiosTests.swift
├── gaiosUITests/
│ ├── Info.plist
│ ├── Screens/
│ │ ├── DialogTorSingleSig.swift
│ │ └── ScreenLock.swift
│ └── Suite/
│ └── WalletAccountsUITests.swift
├── gdk/
│ ├── Extensions/
│ │ ├── GDKResolver.swift
│ │ ├── URL.swift
│ │ └── Utils.swift
│ └── Models/
│ ├── AccountType.swift
│ ├── Address.swift
│ ├── Assets.swift
│ ├── Balance.swift
│ ├── Connection.swift
│ ├── Credentials.swift
│ ├── EventType.swift
│ ├── Events.swift
│ ├── Gdk.swift
│ ├── Network.swift
│ ├── NetworkSecurityCase.swift
│ ├── NetworkSettings.swift
│ ├── PinData.swift
│ ├── Settings.swift
│ ├── TorNotification.swift
│ ├── Transaction.swift
│ ├── Transactions.swift
│ ├── TwoFactorConfig.swift
│ └── WalletItem.swift
├── greenaddress/
│ ├── Codable.swift
│ ├── GDKSession.swift
│ └── Wally.swift
├── hw/
│ ├── Extensions/
│ │ ├── AnyPublisher.swift
│ │ ├── CBOR.swift
│ │ ├── Number.swift
│ │ └── String.swift
│ ├── HWResolver.swift
│ ├── Jade/
│ │ ├── BleJadeConnection.swift
│ │ ├── Jade.swift
│ │ ├── JadeCommands.swift
│ │ ├── JadeMessage.swift
│ │ ├── QrJadeConnection.swift
│ │ └── TxInput.swift
│ ├── Ledger/
│ │ ├── BleLedger.swift
│ │ ├── BleLedgerCommands.swift
│ │ └── BleLedgerConnection.swift
│ ├── Models/
│ │ ├── AuthResolver.swift
│ │ ├── Commitment.swift
│ │ ├── Enums.swift
│ │ ├── HWDevice.swift
│ │ ├── HWError.swift
│ │ ├── InputOutput.swift
│ │ ├── TxChangeOutput.swift
│ │ ├── TxInput.swift
│ │ └── Utils.swift
│ └── Protocols/
│ ├── HWConnectionProtocol.swift
│ └── HWProtocol.swift
├── lightning/
│ ├── .gitignore
│ ├── Bundle.swift
│ ├── GreenlightSdk.swift
│ ├── LNExtensions.swift
│ ├── LightningSdk.swift
│ ├── LightningTypes.swift
│ ├── Modals/
│ │ ├── AppGreenlightCredentials.swift
│ │ └── GreenlightMnemonicAndCredentials.swift
│ ├── Utils.swift
│ ├── greenlight_device_cert.txt
│ └── greenlight_device_key.txt
└── tools/
├── bump_gdk.sh
├── check_localization.py
├── create_permission_strings_file.py
├── distribute.sh
├── fetch_gdk_binaries.sh
├── permission.txt
└── transifex.sh
Copy disabled (too large)
Condensed preview — 1516 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (11,710K chars).
[
{
"path": ".github/ISSUE_TEMPLATE.md",
"chars": 608,
"preview": "### Description\n\n<!-- brief description of the bug -->\n\n#### Version\n\n<!-- commid id or version number -->\n\n### Steps to..."
},
{
"path": ".gitignore",
"chars": 245,
"preview": "xcuserdata\nlibgdk\nPods\ngaios.xcworkspace\nfastlane/report.xml\nfastlane/Preview.html\nfastlane/screenshots\nfastlane/test_ou..."
},
{
"path": ".gitlab/issue_templates/Bug.md",
"chars": 608,
"preview": "### Description\n\n<!-- brief description of the bug -->\n\n#### Version\n\n<!-- commid id or version number -->\n\n### Steps to..."
},
{
"path": ".gitlab-ci.yml",
"chars": 8104,
"preview": "stages:\n - security\n - format\n - build\n - test\n - distribute_qa\n - deploy\n - e2e\n\ninclude:\n - template: Jobs/SAS..."
},
{
"path": ".swiftlint.yml",
"chars": 662,
"preview": "excluded:\n - gaiosTests\n - gaiosUITests\n - libgdk\n - tools\n - Pods\n - breez_sdk\n - greenaddress/GreenAddre..."
},
{
"path": ".tx/config",
"chars": 306,
"preview": "[main]\nhost = https://www.transifex.com\n\n[o:blockstream:p:blockstream-green:r:localizablestrings]\nfile_filter = translat..."
},
{
"path": "BUILD.md",
"chars": 1089,
"preview": "# Build Blockstream Green for iOS\n\n## Build requirements\n\nInstall Xcode.\n\nGet the command line tools with: (ensure to us..."
},
{
"path": "CHANGELOG.md",
"chars": 21018,
"preview": "# Changelog\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changel..."
},
{
"path": "CONTRIBUTING.md",
"chars": 946,
"preview": "## Guidelines for contributions to Green bitcoin wallet for iOS\n\nIf you want to contribute to the project, please refer..."
},
{
"path": "LICENSE",
"chars": 32472,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free..."
},
{
"path": "NotificationService/Info.plist",
"chars": 476,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P..."
},
{
"path": "NotificationService/NotificationService.swift",
"chars": 9582,
"preview": "import Foundation\nimport UserNotifications\nimport core\n\nstruct LnurlInfoMessage: Codable {\n let callback_url: String..."
},
{
"path": "NotificationService/NotificationServiceDebug.entitlements",
"chars": 625,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P..."
},
{
"path": "NotificationService/NotificationServiceRelease.entitlements",
"chars": 621,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P..."
},
{
"path": "NotificationService/NotificationServiceStaging.entitlements",
"chars": 624,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P..."
},
{
"path": "NotificationService/Tasks/MeldTransactionTask.swift",
"chars": 3107,
"preview": "import Foundation\nimport UserNotifications\nimport os.log\nimport core\n\n// MARK: - Meld Transaction Status\npublic enum Mel..."
},
{
"path": "NotificationService/Tasks/MeldTypes.swift",
"chars": 688,
"preview": "import Foundation\n\n// MARK: - Meld Notification Types\npublic enum MeldNotificationType: String, Codable {\n case trans..."
},
{
"path": "NotificationService/Tasks/Swap/SwapManager.swift",
"chars": 715,
"preview": "import core\n\nactor SwapManager {\n static let shared = SwapManager()\n private var activeTasks: Set<String> = []..."
},
{
"path": "NotificationService/Tasks/Swap/SwapModel.swift",
"chars": 448,
"preview": "public struct LwkEvent: Codable {\n enum CodingKeys: String, CodingKey {\n case type\n case event..."
},
{
"path": "NotificationService/Tasks/Swap/SwapTask.swift",
"chars": 4106,
"preview": "import Foundation\nimport UserNotifications\nimport os.log\nimport core\nimport LiquidWalletKit\nimport gdk\nimport CoreData..."
},
{
"path": "NotificationService/cs.lproj/Localizable.strings",
"chars": 121,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Otevřít peněženku a přijmout platbu\";\n\"id_payment_received\" = \"Platba přijata\";..."
},
{
"path": "NotificationService/de.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/en.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/es.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/fr.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/he.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/it.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/ja.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/ko.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/nl.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/pt-BR.lproj/Localizable.strings",
"chars": 130,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Abrir carteira para receber um pagamento\";\n\"id_payment_received\" = \"Pagamento r..."
},
{
"path": "NotificationService/ro.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/ru.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/uk.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/vi.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "NotificationService/zh.lproj/Localizable.strings",
"chars": 120,
"preview": "\"id_open_wallet_to_receive_a_payment\" = \"Open wallet to receive a payment\";\n\"id_payment_received\" = \"Payment received\";\n"
},
{
"path": "README.md",
"chars": 1580,
"preview": "# Blockstream App - A native Blockstream wallet for iOS\n\nBlockstream App is a non-custodial Bitcoin wallet - it allows y..."
},
{
"path": "configs/DevSettings.xcconfig",
"chars": 665,
"preview": "GA_APP_NAME = BlksDev\nGA_APP_BUNDLE_ID = io.blockstream.greendev\nGA_APP_ICON = AppIconDev\nCOUNTLY_APP_HOST = https:\\/\\/c..."
},
{
"path": "configs/ProdSettings.xcconfig",
"chars": 655,
"preview": "GA_APP_NAME = Blockstream\nGA_APP_BUNDLE_ID = io.blockstream.green\nGA_APP_ICON = AppIcon\nCOUNTLY_APP_HOST = https:\\/\\/cou..."
},
{
"path": "core/Controllers/BoltzController.swift",
"chars": 8301,
"preview": "import Foundation\nimport CoreData\n\npublic actor BoltzController {\n private let modelName = \"BoltzDataModel\"\n priva..."
},
{
"path": "core/Countly/AnalyticsManager/AMConstants.swift",
"chars": 4583,
"preview": "public extension AnalyticsManager {\n\n static let countlyRemoteConfigAppReview = \"app_review\"\n static let countlyRe..."
},
{
"path": "core/Countly/AnalyticsManager/AMEvents.swift",
"chars": 18954,
"preview": "import Foundation\nimport gdk\nimport hw\n\npublic enum AnalyticsEventName: String {\n case debugEvent = \"debug_event\"..."
},
{
"path": "core/Countly/AnalyticsManager/AMSegmentation.swift",
"chars": 4082,
"preview": "import Foundation\nimport gdk\nimport hw\n\npublic extension AnalyticsManager {\n\n typealias Sgmt = [String: String]..."
},
{
"path": "core/Countly/AnalyticsManager/AMViews.swift",
"chars": 2837,
"preview": "public enum AnalyticsViewName: String {\n case home = \"Home\"\n case login = \"Login\"\n\n // case overview = \"Over..."
},
{
"path": "core/Countly/AnalyticsManager/AnalyticsManager.swift",
"chars": 17496,
"preview": "import Foundation\nimport Countly\nimport gdk\nimport greenaddress\n\npublic enum AnalyticsConsent: Int {\n case notDetermi..."
},
{
"path": "core/Countly/RemoteAlertManager.swift",
"chars": 1561,
"preview": "import Foundation\nimport gdk\n\npublic struct RemoteAlert: Decodable {\n public var dismissable: Bool?\n public var is..."
},
{
"path": "core/Extensions/AccountType.swift",
"chars": 733,
"preview": "import Foundation\nimport gdk\n\nextension AccountType {\n public var network: String {\n if lightning {..."
},
{
"path": "core/Extensions/AssetInfo.swift",
"chars": 1926,
"preview": "import Foundation\nimport gdk\n\nextension AssetInfo {\n \n public static let all = [btc, test, lbtc, ltest, lightning]..."
},
{
"path": "core/Extensions/Bundle.swift",
"chars": 1202,
"preview": "import Foundation\n\nextension Bundle {\n\n public var appName: String {\n return infoDictionary?[\"CFBundleName\"] a..."
},
{
"path": "core/Extensions/Lwk.swift",
"chars": 1742,
"preview": "import LiquidWalletKit\nimport Foundation\n\nextension BoltzSwap {\n public var type: BoltzSwapTypes? {\n let data..."
},
{
"path": "core/Extensions/String.swift",
"chars": 5920,
"preview": "import Foundation\nimport UIKit\n\nextension String {\n\n public static var chars: [Character] = {\n return \"abcdefg..."
},
{
"path": "core/Extensions/Transaction.swift",
"chars": 2601,
"preview": "import Foundation\nimport gdk\n\nextension Transaction {\n\n public var subaccount: WalletItem? {\n get { WalletMana..."
},
{
"path": "core/Extensions/UIImage.swift",
"chars": 1165,
"preview": "import UIKit\nimport Foundation\n\npublic extension UIImage {\n convenience init?(base64 str: String?) {\n guard le..."
},
{
"path": "core/Extensions/Utils.swift",
"chars": 628,
"preview": "import Foundation\n\npublic typealias VoidToVoid = () -> Void\n\npublic func secureRandomData(count: Int) -> Data? {\n var..."
},
{
"path": "core/Extensions/WalletItem.swift",
"chars": 873,
"preview": "import Foundation\nimport gdk\n\nextension WalletItem {\n\n public var session: SessionManager? { WalletManager.current?.s..."
},
{
"path": "core/Extensions/Wally.swift",
"chars": 1674,
"preview": "import greenaddress\nimport gdk\n\nextension Wally {\n public static func getWallyNetwork(_ network: NetworkSecurityCase)..."
},
{
"path": "core/HW/CentralManager.swift",
"chars": 111,
"preview": "import Foundation\nimport AsyncBluetooth\n\nextension CentralManager {\n static let shared = CentralManager()\n}\n"
},
{
"path": "core/HW/JadeManager.swift",
"chars": 14617,
"preview": "import Foundation\nimport AsyncBluetooth\nimport hw\nimport gdk\nimport UIKit\nimport core\n\nclass JadeManager {\n\n let jade..."
},
{
"path": "core/Managers/AssetsManager.swift",
"chars": 5332,
"preview": "import Foundation\nimport UIKit\nimport gdk\n\npublic protocol AssetsProvider {\n func getAssets(params: GetAssetsParams)..."
},
{
"path": "core/Managers/AuthenticationTypeHandler.swift",
"chars": 22461,
"preview": "import Foundation\nimport LocalAuthentication\nimport Security\nimport gdk\nimport lightning\n\npublic class AuthenticationTyp..."
},
{
"path": "core/Managers/ConverterManager.swift",
"chars": 5858,
"preview": "import Foundation\nimport UIKit\nimport gdk\n\npublic protocol ConverterProvider {\n func convertBitcoinAmount(params: Bal..."
},
{
"path": "core/Managers/Logger.swift",
"chars": 1702,
"preview": "import Foundation\nimport OSLog\n\npublic var logger = Logger(\n subsystem: Bundle.main.bundleIdentifier!,\n category:..."
},
{
"path": "core/Managers/MigratorManager.swift",
"chars": 4932,
"preview": "import Foundation\nimport gdk\n\npublic class MigratorManager {\n\n public static let shared = MigratorManager()\n\n publ..."
},
{
"path": "core/Managers/ResolverManager.swift",
"chars": 1061,
"preview": "import Foundation\nimport UIKit\nimport gdk\nimport greenaddress\nimport hw\n\npublic class ResolverManager {\n\n public let..."
},
{
"path": "core/Managers/SwapMonitor.swift",
"chars": 6948,
"preview": "import Foundation\nimport CoreData\nimport LiquidWalletKit\n\npublic actor SwapMonitor {\n\n private let xpubHashId: String..."
},
{
"path": "core/Managers/WalletManager.swift",
"chars": 36309,
"preview": "import Foundation\nimport UIKit\nimport gdk\nimport greenaddress\nimport hw\nimport lightning\nimport LiquidWalletKit\n\npublic..."
},
{
"path": "core/Models/Account.swift",
"chars": 6693,
"preview": "import Foundation\nimport UIKit\nimport gdk\nimport hw\n\npublic struct Account: Codable, Equatable {\n\n enum CodingKeys: S..."
},
{
"path": "core/Models/AppSettings.swift",
"chars": 1217,
"preview": "import Foundation\n\npublic struct AppSettings: Codable {\n\n public static var shared = AppSettings()\n static let tes..."
},
{
"path": "core/Models/Boltz.swift",
"chars": 1048,
"preview": "import LiquidWalletKit\n\npublic struct BoltzReverseSwapInfoLBTC: Codable {\n public let hash: String\n public let rat..."
},
{
"path": "core/Models/BoltzDataModel.xcdatamodeld/BoltzDataModel.xcdatamodel/contents",
"chars": 1025,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<model type=\"com.apple.IDECoreDataModeler.DataModel\" documentVer..."
},
{
"path": "core/Models/BoltzSwapsController.swift",
"chars": 371,
"preview": "import Foundation\nimport CoreData\n\nclass DataController: ObservableObject {\n let container = NSPersistentContainer(na..."
},
{
"path": "core/Models/CountlyWidget.swift",
"chars": 4079,
"preview": "import Foundation\n\npublic enum CountlyWidgetType: String {\n case nps\n case survey\n case undefined\n}\n\npublic enu..."
},
{
"path": "core/Models/EnrichedAsset.swift",
"chars": 241,
"preview": "import Foundation\n\npublic struct EnrichedAsset: Codable {\n enum CodingKeys: String, CodingKey {\n case id..."
},
{
"path": "core/Models/GdkSettings.swift",
"chars": 5471,
"preview": "import Foundation\nimport gdk\n\npublic struct GdkSettings: Codable {\n\n enum CodingKeys: String, CodingKey {\n cas..."
},
{
"path": "core/Models/LightningCredentials.swift",
"chars": 93,
"preview": "import Foundation\n\npublic struct LightningCredentials: Codable {\n var credentials: Data\n}\n"
},
{
"path": "core/Models/Notification.swift",
"chars": 664,
"preview": "import Foundation\nimport greenaddress\nimport gdk\nimport GreenlightSDK\n\npublic enum EventNotificationTypes {\n case new..."
},
{
"path": "core/Models/QRJade.swift",
"chars": 8416,
"preview": "import Foundation\nimport gdk\nimport hw\nimport SwiftCBOR\n/*\npublic protocol QRJadeGDKRequest: AnyObject {\n func httpRe..."
},
{
"path": "core/Models/Swap.swift",
"chars": 1345,
"preview": "import LiquidWalletKit\n\npublic enum SwapType: Int16, Sendable {\n case submarineSwap\n case reverseSwap\n case cha..."
},
{
"path": "core/Models/WalletListItem.swift",
"chars": 123,
"preview": "import Foundation\nimport UIKit\n\npublic struct WalletListItem {\n public var icon: UIImage\n public var title: String..."
},
{
"path": "core/Repository/AccountsRepository.swift",
"chars": 5446,
"preview": "import Foundation\nimport gdk\n\npublic class AccountsRepository {\n\n static let attrAccount = \"AccountsManager_Account\"..."
},
{
"path": "core/Repository/KeychainStorage.swift",
"chars": 2726,
"preview": "import Foundation\nimport gdk\nimport greenaddress\nimport LocalAuthentication\nimport Security\n\npublic class KeychainStorag..."
},
{
"path": "core/Repository/LightningRepository.swift",
"chars": 818,
"preview": "import Foundation\nimport lightning\n\npublic class LightningRepository {\n\n public static let shared = LightningReposito..."
},
{
"path": "core/Repository/WalletsRepository.swift",
"chars": 1308,
"preview": "import Foundation\nimport gdk\n\npublic class WalletsRepository {\n\n public static let shared = WalletsRepository()..."
},
{
"path": "core/SessionManagers/LightningSessionManager.swift",
"chars": 10318,
"preview": "\nimport Foundation\nimport GreenlightSDK\nimport gdk\nimport greenaddress\nimport lightning\nimport LiquidWalletKit\nimport hw..."
},
{
"path": "core/SessionManagers/LwkSessionManager.swift",
"chars": 13834,
"preview": "import Foundation\nimport LiquidWalletKit\nimport gdk\nimport greenaddress\nimport hw\npublic class LwkSessionManager: Sessio..."
},
{
"path": "core/SessionManagers/SessionManager.swift",
"chars": 30566,
"preview": "import Foundation\nimport OSLog\nimport gdk\nimport greenaddress\nimport hw\n\npublic enum LoginError: Error, Equatable {..."
},
{
"path": "core/Utils/SerialTasks.swift",
"chars": 528,
"preview": "import Foundation\n\npublic actor SerialTasks<Success> {\n private var previousTask: Task<Success, Error>?\n\n public i..."
},
{
"path": "fastlane/Appfile",
"chars": 121,
"preview": "team_name \"Blockstream Corporation\"\nteam_id \"D9W37S9468\"\nitc_team_id \"118542870\"\nitc_team_name \"Blockstream Corporation\"..."
},
{
"path": "fastlane/Fastfile",
"chars": 4160,
"preview": "# Uncomment the line if you want fastlane to automatically update itself\n# update_fastlane\n\ndefault_platform(:ios)\n\nplat..."
},
{
"path": "fastlane/README.md",
"chars": 1026,
"preview": "fastlane documentation\n----\n\n# Installation\n\nMake sure you have the latest version of the Xcode command line tools insta..."
},
{
"path": "gaios/Accounts/AccountArchive/AccountArchiveViewController.swift",
"chars": 6526,
"preview": "import UIKit\nimport core\nimport gdk\nenum AccountArchiveSection: Int, CaseIterable {\n case account = 0\n}\nprotocol Acco..."
},
{
"path": "gaios/Accounts/AccountArchive/AccountArchiveViewModel.swift",
"chars": 1301,
"preview": "import Foundation\nimport UIKit\nimport core\nimport gdk\n\nclass AccountArchiveViewModel {\n\n var wm: WalletManager { Wall..."
},
{
"path": "gaios/Accounts/AccountArchive/Cells/AccountArchiveCell.swift",
"chars": 1762,
"preview": "import UIKit\nimport gdk\nimport core\n\nclass AccountArchiveCell: UITableViewCell {\n\n @IBOutlet weak var bg: UIView!..."
},
{
"path": "gaios/Accounts/AccountArchive/Cells/AccountArchiveCell.xib",
"chars": 11831,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/Accounts/AccountArchive/Cells/AccountArchiveCellModel.swift",
"chars": 1010,
"preview": "import Foundation\nimport UIKit\nimport gdk\n\nstruct AccountArchiveCellModel {\n var account: WalletItem\n var satoshi:..."
},
{
"path": "gaios/Accounts/AccountCreatePublicKeyViewController.swift",
"chars": 4170,
"preview": "import UIKit\nimport gdk\nimport greenaddress\nimport core\n\nclass AccountCreatePublicKeyViewController: UIViewController {..."
},
{
"path": "gaios/Accounts/AccountCreateRecoveryKeyViewController.swift",
"chars": 4570,
"preview": "import UIKit\nimport core\nimport gdk\n\nprotocol AccountCreateRecoveryKeyDelegate: AnyObject {\n func didPublicKey(_ key:..."
},
{
"path": "gaios/Accounts/AccountDescriptor/AccountDescriptorViewController.swift",
"chars": 6258,
"preview": "import UIKit\nimport core\nimport gdk\nenum AccountDescriptorSection: Int, CaseIterable {\n case card\n case descriptor..."
},
{
"path": "gaios/Accounts/AccountDescriptor/AccountDescriptorViewModel.swift",
"chars": 443,
"preview": "import Foundation\nimport UIKit\nimport core\nimport gdk\n\nclass AccountDescriptorViewModel {\n var account: WalletItem..."
},
{
"path": "gaios/Accounts/AccountDescriptor/Cells/AccountDescriptorCell.swift",
"chars": 1410,
"preview": "import UIKit\nimport gdk\nimport core\n\nclass AccountDescriptorCell: UITableViewCell {\n\n @IBOutlet weak var bg: UIView!..."
},
{
"path": "gaios/Accounts/AccountDescriptor/Cells/AccountDescriptorCell.xib",
"chars": 8563,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/Accounts/AccountDescriptor/Cells/AccountDescriptorCellModel.swift",
"chars": 207,
"preview": "import Foundation\nimport UIKit\nimport gdk\n\nstruct AccountDescriptorCellModel {\n var account: WalletItem\n var descr..."
},
{
"path": "gaios/Accounts/AccountSettings/AccountSettingsViewController.swift",
"chars": 4496,
"preview": "import Foundation\nimport UIKit\nimport gdk\n\nprotocol AccountSettingsViewControllerDelegate: AnyObject {\n func didSelec..."
},
{
"path": "gaios/Accounts/AccountSettings/AccountSettingsViewModel.swift",
"chars": 745,
"preview": "import Foundation\nimport UIKit\nimport gdk\nimport core\n\nclass AccountSettingsViewModel {\n\n var title: String\n var a..."
},
{
"path": "gaios/Accounts/AccountSettings/Cells/AccountSettingsCell.swift",
"chars": 1257,
"preview": "import UIKit\nimport DGCharts\n\nclass AccountSettingsCell: UITableViewCell {\n\n @IBOutlet weak var bg: UIView!\n @IBOu..."
},
{
"path": "gaios/Accounts/AccountSettings/Cells/AccountSettingsCell.xib",
"chars": 7810,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/Accounts/AccountSettings/Cells/AccountSettingsCellModel.swift",
"chars": 738,
"preview": "import Foundation\nimport UIKit\nimport core\n\nenum AccountSettingsType {\n case rename(current: String)\n case watchon..."
},
{
"path": "gaios/Accounts/AccountSettingsViewController.swift",
"chars": 0,
"preview": ""
},
{
"path": "gaios/Accounts/AccountSettingsViewModel.swift",
"chars": 0,
"preview": ""
},
{
"path": "gaios/Accounts/Accounts.storyboard",
"chars": 90953,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3..."
},
{
"path": "gaios/AddressAuth/AddressAuth.storyboard",
"chars": 56885,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3..."
},
{
"path": "gaios/AddressAuth/Controllers/AddressAuthViewController.swift",
"chars": 9854,
"preview": "import UIKit\nimport RiveRuntime\nimport gdk\nimport hw\nimport core\n\nenum AddressAuthSection: Int, CaseIterable {\n case..."
},
{
"path": "gaios/AddressAuth/Controllers/AddressAuthViewModel.swift",
"chars": 1984,
"preview": "import Foundation\nimport UIKit\nimport core\nimport gdk\n\nclass AddressAuthViewModel {\n\n var listCellModelsFilter: [Addr..."
},
{
"path": "gaios/AddressAuth/Controllers/Cells/AddressAuthCell.swift",
"chars": 1304,
"preview": "import UIKit\n\nclass AddressAuthCell: UITableViewCell {\n\n @IBOutlet weak var bg: UIView!\n @IBOutlet weak var lblAdd..."
},
{
"path": "gaios/AddressAuth/Controllers/Cells/AddressAuthCell.xib",
"chars": 16647,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/AddressAuth/Controllers/Cells/AddressAuthCellModel.swift",
"chars": 268,
"preview": "import Foundation\nimport UIKit\n\nclass AddressAuthCellModel {\n\n var address: String\n var tx: Int\n var canSign: B..."
},
{
"path": "gaios/AddressAuth/Controllers/Cells/AddressAuthLoaderCell.swift",
"chars": 358,
"preview": "import UIKit\n\nclass AddressAuthLoaderCell: UITableViewCell {\n\n class var identifier: String { return String(describin..."
},
{
"path": "gaios/AddressAuth/Controllers/Cells/AddressAuthLoaderCell.xib",
"chars": 3110,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/AddressAuth/Controllers/DialogSignViewController.swift",
"chars": 7787,
"preview": "import Foundation\nimport UIKit\n\nclass DialogSignViewController: KeyboardViewController {\n\n @IBOutlet weak var tappabl..."
},
{
"path": "gaios/AddressAuth/Controllers/DialogSignViewModel.swift",
"chars": 775,
"preview": "import Foundation\nimport UIKit\nimport core\nimport gdk\n\nstruct DialogSignViewModel {\n\n var subaccount: WalletItem..."
},
{
"path": "gaios/AddressAuth/Controllers/Views/AddressAuthHeader.swift",
"chars": 433,
"preview": "import UIKit\n\nclass AddressAuthHeader: UIView {\n\n @IBOutlet weak var lblAddress: UILabel!\n @IBOutlet weak var lblT..."
},
{
"path": "gaios/AddressAuth/Controllers/Views/AddressAuthHeader.xib",
"chars": 10809,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/AppDelegate.swift",
"chars": 7118,
"preview": "import UIKit\nimport gdk\nimport UserNotifications\nimport core\nimport AVFoundation\nimport FirebaseMessaging\n\nfunc getAppDe..."
},
{
"path": "gaios/AppNotifications.swift",
"chars": 6897,
"preview": "import UIKit\nimport gdk\nimport lightning\nimport UserNotifications\nimport FirebaseCore\nimport FirebaseMessaging\nimport co..."
},
{
"path": "gaios/AppSettings/AppSettings.storyboard",
"chars": 4195,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3..."
},
{
"path": "gaios/AppSettings/AppSettingsViewController.swift",
"chars": 14974,
"preview": "import UIKit\nimport core\n\nprotocol AppSettingsViewControllerDelegate: AnyObject {\n // func sendLogout()\n}\n\nclass AppS..."
},
{
"path": "gaios/AppSettings/AppSettingsViewModel.swift",
"chars": 3956,
"preview": "import UIKit\nimport core\nenum AppSettingsSection: Int, CaseIterable {\n case header\n case generic\n case server..."
},
{
"path": "gaios/AppSettings/Cells/AppSettingsCell.swift",
"chars": 3290,
"preview": "import UIKit\nimport gdk\n\nclass AppSettingsCell: UITableViewCell {\n\n @IBOutlet weak var lblTitle: UILabel!\n @IBOutl..."
},
{
"path": "gaios/AppSettings/Cells/AppSettingsCell.xib",
"chars": 11786,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/AppSettings/Cells/EditCell.swift",
"chars": 1000,
"preview": "import UIKit\n\nclass EditCell: UITableViewCell {\n\n @IBOutlet weak var bg: UIView!\n @IBOutlet weak var textField: UI..."
},
{
"path": "gaios/AppSettings/Cells/EditCell.xib",
"chars": 5710,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/AppSettings/Cells/ElectrumCell.swift",
"chars": 5429,
"preview": "import UIKit\nimport core\n\nclass ElectrumCell: UITableViewCell {\n\n @IBOutlet weak var bg: UIView!\n @IBOutlet weak v..."
},
{
"path": "gaios/AppSettings/Cells/ElectrumCell.xib",
"chars": 37500,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/AppSettings/Cells/ElectrumCellModel.swift",
"chars": 663,
"preview": "class ElectrumCellModel {\n var testnetIsEnabled: Bool\n var switchTls: Bool\n var serverBTC: String\n var serve..."
},
{
"path": "gaios/AppSettings/Cells/ProxyCell.swift",
"chars": 1291,
"preview": "import UIKit\nimport core\n\nclass ProxyCell: UITableViewCell {\n\n @IBOutlet weak var bg: UIView!\n @IBOutlet weak var..."
},
{
"path": "gaios/AppSettings/Cells/ProxyCell.xib",
"chars": 9877,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/AppSettings/Cells/TitleCell.swift",
"chars": 482,
"preview": "//\n\nimport UIKit\n\nclass TitleCell: UITableViewCell {\n\n @IBOutlet weak var lblTitle: UILabel!\n class var identifier..."
},
{
"path": "gaios/AppSettings/Cells/TitleCell.xib",
"chars": 3759,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVe..."
},
{
"path": "gaios/Assets/Assets.storyboard",
"chars": 16431,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3..."
},
{
"path": "gaios/Assets/AssetsListViewController.swift",
"chars": 2603,
"preview": "import Foundation\nimport UIKit\nimport core\nimport gdk\n\nprotocol AssetsListViewControllerDelegate: AnyObject {\n func d..."
},
{
"path": "gaios/Assets/TableViewCells/AssetCell.swift",
"chars": 1428,
"preview": "import Foundation\nimport UIKit\nimport gdk\nimport core\n\nclass AssetCell: UITableViewCell {\n\n @IBOutlet weak var nameLa..."
},
{
"path": "gaios/Assets.xcassets/About/Contents.json",
"chars": 63,
"preview": "{\n \"info\" : {\n \"author\" : \"xcode\",\n \"version\" : 1\n }\n}\n"
},
{
"path": "gaios/Assets.xcassets/About/ic_about.imageset/Contents.json",
"chars": 306,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"universal\",..."
},
{
"path": "gaios/Assets.xcassets/About/ic_facebook.imageset/Contents.json",
"chars": 313,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"universal\",..."
},
{
"path": "gaios/Assets.xcassets/About/ic_github.imageset/Contents.json",
"chars": 313,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"universal\",..."
},
{
"path": "gaios/Assets.xcassets/About/ic_link.imageset/Contents.json",
"chars": 313,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"universal\",..."
},
{
"path": "gaios/Assets.xcassets/About/ic_telegram.imageset/Contents.json",
"chars": 313,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"universal\",..."
},
{
"path": "gaios/Assets.xcassets/About/ic_twitter.imageset/Contents.json",
"chars": 380,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"universal\",..."
},
{
"path": "gaios/Assets.xcassets/About/ic_website.imageset/Contents.json",
"chars": 313,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"universal\",..."
},
{
"path": "gaios/Assets.xcassets/About/ic_youtube.imageset/Contents.json",
"chars": 313,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"universal\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"universal\",..."
},
{
"path": "gaios/Assets.xcassets/AppIcons/AppIcon.appiconset/Contents.json",
"chars": 208,
"preview": "{\n \"images\" : [\n {\n \"filename\" : \"1024.png\",\n \"idiom\" : \"universal\",\n \"platform\" : \"ios\",\n \"size..."
},
{
"path": "gaios/Assets.xcassets/AppIcons/AppIconDev.appiconset/Contents.json",
"chars": 209,
"preview": "{\n \"images\" : [\n {\n \"filename\" : \"1024.jpeg\",\n \"idiom\" : \"universal\",\n \"platform\" : \"ios\",\n \"siz..."
},
{
"path": "gaios/Assets.xcassets/AppIcons/Contents.json",
"chars": 63,
"preview": "{\n \"info\" : {\n \"author\" : \"xcode\",\n \"version\" : 1\n }\n}\n"
},
{
"path": "gaios/Assets.xcassets/Asset Icons/Contents.json",
"chars": 63,
"preview": "{\n \"info\" : {\n \"author\" : \"xcode\",\n \"version\" : 1\n }\n}\n"
},
{
"path": "gaios/Assets.xcassets/Asset Icons/default_asset_amp_icon.imageset/Contents.json",
"chars": 296,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"iphone\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"iphone\",\n \"scal..."
},
{
"path": "gaios/Assets.xcassets/Asset Icons/default_asset_icon.imageset/Contents.json",
"chars": 541,
"preview": "{\n \"images\" : [\n {\n \"filename\" : \"fe8065b1c196b414d2e21edb4b5a9075e8165a37734bfaeadbb52ee8e91012b1.png\",..."
},
{
"path": "gaios/Assets.xcassets/Asset Icons/default_asset_icon_old.imageset/Contents.json",
"chars": 163,
"preview": "{\n \"images\" : [\n {\n \"filename\" : \"asset_unknown.pdf\",\n \"idiom\" : \"universal\"\n }\n ],\n \"info\" : {\n \"..."
},
{
"path": "gaios/Assets.xcassets/Asset Icons/default_asset_liquid_icon.imageset/Contents.json",
"chars": 299,
"preview": "{\n \"images\" : [\n {\n \"idiom\" : \"iphone\",\n \"scale\" : \"1x\"\n },\n {\n \"idiom\" : \"iphone\",\n \"scal..."
},
{
"path": "gaios/Assets.xcassets/Colors/Contents.json",
"chars": 63,
"preview": "{\n \"info\" : {\n \"author\" : \"xcode\",\n \"version\" : 1\n }\n}\n"
},
{
"path": "gaios/Assets.xcassets/Colors/customBtnOff.colorset/Contents.json",
"chars": 329,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"0..."
},
{
"path": "gaios/Assets.xcassets/Colors/customDestructiveRed.colorset/Contents.json",
"chars": 319,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/customGrayLight.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/customTextFieldBg.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"0..."
},
{
"path": "gaios/Assets.xcassets/Colors/customTitaniumDark.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/errorRed.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gAccent.colorset/Contents.json",
"chars": 321,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gAccountLightBlue.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gAccountOrange.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gAccountTestGray.colorset/Contents.json",
"chars": 323,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gAccountTestLightBlue.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gBlackBg.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGrayBtn.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGrayCamera.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGrayCard.colorset/Contents.json",
"chars": 320,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGrayCardBorder.colorset/Contents.json",
"chars": 320,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGrayElement.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGrayPanel.colorset/Contents.json",
"chars": 320,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGrayTxt.colorset/Contents.json",
"chars": 323,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGreenFluo.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGreenMatrix.colorset/Contents.json",
"chars": 320,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gGreenTx.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gLightning.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gOrangeTx.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gRedFluo.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gRedSwapErr1.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gRedSwapErr2.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gRedTx.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gRedWarn.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gW40.colorset/Contents.json",
"chars": 329,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"0..."
},
{
"path": "gaios/Assets.xcassets/Colors/gW60.colorset/Contents.json",
"chars": 329,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"0..."
},
{
"path": "gaios/Assets.xcassets/Colors/gWarnCardBg.colorset/Contents.json",
"chars": 319,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gWarnCardBgBlue.colorset/Contents.json",
"chars": 319,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gWarnCardBorder.colorset/Contents.json",
"chars": 321,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/gWarnCardBorderBlue.colorset/Contents.json",
"chars": 320,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/infoBlue.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Colors/warningYellow.colorset/Contents.json",
"chars": 326,
"preview": "{\n \"colors\" : [\n {\n \"color\" : {\n \"color-space\" : \"srgb\",\n \"components\" : {\n \"alpha\" : \"1..."
},
{
"path": "gaios/Assets.xcassets/Contents.json",
"chars": 63,
"preview": "{\n \"info\" : {\n \"author\" : \"xcode\",\n \"version\" : 1\n }\n}\n"
},
{
"path": "gaios/Assets.xcassets/Flags/AD-flag.imageset/Contents.json",
"chars": 157,
"preview": "{\n \"images\" : [\n {\n \"filename\" : \"AD-flag.svg\",\n \"idiom\" : \"universal\"\n }\n ],\n \"info\" : {\n \"author..."
},
{
"path": "gaios/Assets.xcassets/Flags/AE-flag.imageset/Contents.json",
"chars": 157,
"preview": "{\n \"images\" : [\n {\n \"filename\" : \"AE-flag.svg\",\n \"idiom\" : \"universal\"\n }\n ],\n \"info\" : {\n \"author..."
},
{
"path": "gaios/Assets.xcassets/Flags/AG-flag.imageset/Contents.json",
"chars": 157,
"preview": "{\n \"images\" : [\n {\n \"filename\" : \"AG-flag.svg\",\n \"idiom\" : \"universal\"\n }\n ],\n \"info\" : {\n \"author..."
}
]
// ... and 1316 more files (download for full content)
About this extraction
This page contains the full source code of the Blockstream/green_ios GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1535 files (10.4 MB), approximately 2.8M tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.