├── .assetsReadme ├── app_icon_256.png └── screenshots │ ├── dapp_request_account_permission.png │ ├── home.png │ ├── start.png │ └── transaction_review.png ├── .github ├── pull_request_template.md └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── babylon-wallet-ios.iml ├── misc.xml └── modules.xml ├── .ruby-version ├── .swiftformat ├── .xcode-version ├── Aux ├── Config │ ├── Common.xcconfig │ ├── Project │ │ ├── Project-Alpha.xcconfig │ │ ├── Project-Beta.xcconfig │ │ ├── Project-Debug-Opt.xcconfig │ │ ├── Project-Dev.xcconfig │ │ ├── Project-PreAlpha.xcconfig │ │ ├── Project-Release-Opt.xcconfig │ │ ├── Project-Release.xcconfig │ │ ├── Project-Shared.xcconfig │ │ └── README.md │ └── iOS │ │ ├── iOS-alpha.xcconfig │ │ ├── iOS-beta.xcconfig │ │ ├── iOS-dev-test.xcconfig │ │ ├── iOS-dev.xcconfig │ │ ├── iOS-preAlpha.xcconfig │ │ ├── iOS-release-opt.xcconfig │ │ ├── iOS-release.xcconfig │ │ └── iOS-shared.xcconfig ├── GoogleService-Info-Sample.plist ├── PrivacyInfo.xcprivacy ├── Radix-Wallet--iOS--Info.plist ├── SensitiveInfo-Sample.plist └── en.lproj │ └── InfoPlist.strings ├── DEVELOPMENT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── PreviewApps ├── AnswerSecurityQuestionsPreview │ ├── AnswerSecurityQuestionsPreviewApp.swift │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ └── Contents.json │ │ └── Contents.json ├── AssetsFeaturePreview │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── AssetsFeaturePreview.entitlements │ ├── AssetsFeaturePreviewApp.swift │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── ImportMnemonicPreview │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ └── ImportMnemonicPreviewApp.swift ├── ManageSecurityStructurePreview │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ └── ManageSecurityStructurePreviewApp.swift ├── ManageTrustedContactPreview │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ └── ManageTrustedContactPreviewApp.swift ├── OnboardingPreview │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── OnboardingPreview.entitlements │ ├── OnboardingPreviewApp.swift │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── PersonaDetailsPreview │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── PersonaDetailsPreview.entitlements │ ├── PersonaDetailsPreviewApp.swift │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json └── SecurityStructureConfigurationListPreview │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SecurityStructureConfigurationListPreviewApp.swift ├── README.md ├── RadixWallet.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── sajjon.xcuserdatad │ │ └── IDEFindNavigatorScopes.plist └── xcshareddata │ └── xcschemes │ ├── Radix Wallet Alpha.xcscheme │ ├── Radix Wallet Beta.xcscheme │ ├── Radix Wallet Dev.xcscheme │ ├── Radix Wallet PROD.xcscheme │ ├── Radix Wallet Pre-Alpha.xcscheme │ └── RadixWalletTests.xcscheme ├── RadixWallet ├── AppIcon.xcassets │ ├── AppIcon.alpha.appiconset │ │ ├── AppIcon~iOS-Marketing-1024@1x.png │ │ ├── AppIcon~iPad-20@1x.png │ │ ├── AppIcon~iPad-20@2x.png │ │ ├── AppIcon~iPad-29@1x.png │ │ ├── AppIcon~iPad-29@2x.png │ │ ├── AppIcon~iPad-40@1x.png │ │ ├── AppIcon~iPad-40@2x.png │ │ ├── AppIcon~iPad-76@1x.png │ │ ├── AppIcon~iPad-76@2x.png │ │ ├── AppIcon~iPad-83.5@2x.png │ │ ├── AppIcon~iPhone-20@2x.png │ │ ├── AppIcon~iPhone-20@3x.png │ │ ├── AppIcon~iPhone-29@1x.png │ │ ├── AppIcon~iPhone-29@2x.png │ │ ├── AppIcon~iPhone-29@3x.png │ │ ├── AppIcon~iPhone-40@2x.png │ │ ├── AppIcon~iPhone-40@3x.png │ │ ├── AppIcon~iPhone-57@1x.png │ │ ├── AppIcon~iPhone-57@2x.png │ │ ├── AppIcon~iPhone-60@2x.png │ │ ├── AppIcon~iPhone-60@3x.png │ │ ├── AppIcon~macOS-128@1x.png │ │ ├── AppIcon~macOS-128@2x.png │ │ ├── AppIcon~macOS-16@1x.png │ │ ├── AppIcon~macOS-16@2x.png │ │ ├── AppIcon~macOS-256@1x.png │ │ ├── AppIcon~macOS-256@2x.png │ │ ├── AppIcon~macOS-32@1x.png │ │ ├── AppIcon~macOS-32@2x.png │ │ ├── AppIcon~macOS-512@1x.png │ │ ├── AppIcon~macOS-512@2x.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon~iOS-Marketing-1024@1x.png │ │ ├── AppIcon~iPad-20@1x.png │ │ ├── AppIcon~iPad-20@2x.png │ │ ├── AppIcon~iPad-29@1x.png │ │ ├── AppIcon~iPad-29@2x.png │ │ ├── AppIcon~iPad-40@1x.png │ │ ├── AppIcon~iPad-40@2x.png │ │ ├── AppIcon~iPad-76@1x.png │ │ ├── AppIcon~iPad-76@2x.png │ │ ├── AppIcon~iPad-83.5@2x.png │ │ ├── AppIcon~iPhone-20@2x.png │ │ ├── AppIcon~iPhone-20@3x.png │ │ ├── AppIcon~iPhone-29@1x.png │ │ ├── AppIcon~iPhone-29@2x.png │ │ ├── AppIcon~iPhone-29@3x.png │ │ ├── AppIcon~iPhone-40@2x.png │ │ ├── AppIcon~iPhone-40@3x.png │ │ ├── AppIcon~iPhone-57@1x.png │ │ ├── AppIcon~iPhone-57@2x.png │ │ ├── AppIcon~iPhone-60@2x.png │ │ ├── AppIcon~iPhone-60@3x.png │ │ ├── AppIcon~macOS-128@1x.png │ │ ├── AppIcon~macOS-128@2x.png │ │ ├── AppIcon~macOS-16@1x.png │ │ ├── AppIcon~macOS-16@2x.png │ │ ├── AppIcon~macOS-256@1x.png │ │ ├── AppIcon~macOS-256@2x.png │ │ ├── AppIcon~macOS-32@1x.png │ │ ├── AppIcon~macOS-32@2x.png │ │ ├── AppIcon~macOS-512@1x.png │ │ ├── AppIcon~macOS-512@2x.png │ │ └── Contents.json │ ├── AppIcon.beta.appiconset │ │ ├── AppIcon~iOS-Marketing-1024@1x.png │ │ ├── AppIcon~iPad-20@1x.png │ │ ├── AppIcon~iPad-20@2x.png │ │ ├── AppIcon~iPad-29@1x.png │ │ ├── AppIcon~iPad-29@2x.png │ │ ├── AppIcon~iPad-40@1x.png │ │ ├── AppIcon~iPad-40@2x.png │ │ ├── AppIcon~iPad-76@1x.png │ │ ├── AppIcon~iPad-76@2x.png │ │ ├── AppIcon~iPad-83.5@2x.png │ │ ├── AppIcon~iPhone-20@2x.png │ │ ├── AppIcon~iPhone-20@3x.png │ │ ├── AppIcon~iPhone-29@1x.png │ │ ├── AppIcon~iPhone-29@2x.png │ │ ├── AppIcon~iPhone-29@3x.png │ │ ├── AppIcon~iPhone-40@2x.png │ │ ├── AppIcon~iPhone-40@3x.png │ │ ├── AppIcon~iPhone-57@1x.png │ │ ├── AppIcon~iPhone-57@2x.png │ │ ├── AppIcon~iPhone-60@2x.png │ │ ├── AppIcon~iPhone-60@3x.png │ │ ├── AppIcon~macOS-128@1x.png │ │ ├── AppIcon~macOS-128@2x.png │ │ ├── AppIcon~macOS-16@1x.png │ │ ├── AppIcon~macOS-16@2x.png │ │ ├── AppIcon~macOS-256@1x.png │ │ ├── AppIcon~macOS-256@2x.png │ │ ├── AppIcon~macOS-32@1x.png │ │ ├── AppIcon~macOS-32@2x.png │ │ ├── AppIcon~macOS-512@1x.png │ │ ├── AppIcon~macOS-512@2x.png │ │ └── Contents.json │ ├── AppIcon.dev.appiconset │ │ ├── AppIcon~iOS-Marketing-1024@1x.png │ │ ├── AppIcon~iPad-20@1x.png │ │ ├── AppIcon~iPad-20@2x.png │ │ ├── AppIcon~iPad-29@1x.png │ │ ├── AppIcon~iPad-29@2x.png │ │ ├── AppIcon~iPad-40@1x.png │ │ ├── AppIcon~iPad-40@2x.png │ │ ├── AppIcon~iPad-76@1x.png │ │ ├── AppIcon~iPad-76@2x.png │ │ ├── AppIcon~iPad-83.5@2x.png │ │ ├── AppIcon~iPhone-20@2x.png │ │ ├── AppIcon~iPhone-20@3x.png │ │ ├── AppIcon~iPhone-29@1x.png │ │ ├── AppIcon~iPhone-29@2x.png │ │ ├── AppIcon~iPhone-29@3x.png │ │ ├── AppIcon~iPhone-40@2x.png │ │ ├── AppIcon~iPhone-40@3x.png │ │ ├── AppIcon~iPhone-57@1x.png │ │ ├── AppIcon~iPhone-57@2x.png │ │ ├── AppIcon~iPhone-60@2x.png │ │ ├── AppIcon~iPhone-60@3x.png │ │ ├── AppIcon~macOS-128@1x.png │ │ ├── AppIcon~macOS-128@2x.png │ │ ├── AppIcon~macOS-16@1x.png │ │ ├── AppIcon~macOS-16@2x.png │ │ ├── AppIcon~macOS-256@1x.png │ │ ├── AppIcon~macOS-256@2x.png │ │ ├── AppIcon~macOS-32@1x.png │ │ ├── AppIcon~macOS-32@2x.png │ │ ├── AppIcon~macOS-512@1x.png │ │ ├── AppIcon~macOS-512@2x.png │ │ └── Contents.json │ └── Contents.json ├── BuildConfiguration.swift ├── Clients │ ├── AccountLockersClient │ │ ├── AccountLockerClaimDetails.swift │ │ ├── AccountLockersClient+Interface.swift │ │ ├── AccountLockersClient+Live.swift │ │ └── AccountLockersClient+Test.swift │ ├── AccountPortfoliosClient │ │ ├── AccountPortfoliosClient+Interface.swift │ │ ├── AccountPortfoliosClient+Live.swift │ │ ├── AccountPortfoliosClient+Mock.swift │ │ └── AccountPortfoliosClient+State.swift │ ├── AccountsClient │ │ ├── AccountsClient+Interface.swift │ │ ├── AccountsClient+Live.swift │ │ └── AccountsClient+Test.swift │ ├── AppEventsClient │ │ ├── AppEventsClient+Interface.swift │ │ ├── AppEventsClient+Live.swift │ │ └── AppEventsClient+Test.swift │ ├── AppPreferencesClient │ │ ├── AppPreferencesClient+Interface.swift │ │ ├── AppPreferencesClient+Live.swift │ │ └── AppPreferencesClient+Test.swift │ ├── AppsFlyerClient │ │ ├── AppsFlyerClient+Interface.swift │ │ └── AppsFlyerClient+Live.swift │ ├── ArculusCardClient │ │ ├── ArculusCardClient+Interface.swift │ │ ├── ArculusCardClient+Live.swift │ │ └── ArculusCardClient+Test.swift │ ├── AuthorizedDappsClient │ │ ├── AuthorizedDappsClient+Interface.swift │ │ ├── AuthorizedDappsClient+Live.swift │ │ └── AuthorizedDappsClient+Test.swift │ ├── BlogPostsClient │ │ ├── BlogPostsClient+Interface.swift │ │ ├── BlogPostsClient+Live.swift │ │ └── BlogPostsClient+Test.swift │ ├── BootstrapClient │ │ ├── BootstrapClient+Interface.swift │ │ └── BootstrapClient+Live.swift │ ├── CacheClient │ │ ├── CacheClient+Interface.swift │ │ ├── CacheClient+Live.swift │ │ └── CacheClient+Test.swift │ ├── CameraPermissionClient │ │ ├── CameraPermissionClient+Interface.swift │ │ ├── CameraPermissionClient+Live.swift │ │ └── CameraPermissionClient+Test.swift │ ├── CloudBackupClient │ │ ├── CloudBackupClient+Interface.swift │ │ ├── CloudBackupClient+Live.swift │ │ └── CloudBackupClient+Test.swift │ ├── ContactSupportClient │ │ ├── ContactSupportClient+Live.swift │ │ └── ContactSupportClient.swift │ ├── DAppsDirectoryClient │ │ ├── DAppsDirectoryClient+Interface.swift │ │ ├── DAppsDirectoryClient+Live.swift │ │ └── DAppsDirectoryClient+Test.swift │ ├── DappInteractionClient │ │ ├── DappInteractionClient+Interfce.swift │ │ ├── DappInteractionClient+Live.swift │ │ └── DappInteractionClient+Test.swift │ ├── DeepLinkHandlerClient │ │ ├── DeepLinkHandlerClient+Interface.swift │ │ ├── DeepLinkHandlerClient+Live.swift │ │ └── DeepLinkHandlerClient+Test.swift │ ├── DeviceFactorSourceClient │ │ ├── DeviceFactorSourceClient+Interface.swift │ │ ├── DeviceFactorSourceClient+Live.swift │ │ └── DeviceFactorSourceClient+Test.swift │ ├── DiskPersistenceClient │ │ ├── DiskPersistenceClient+Interface.swift │ │ ├── DiskPersistenceClient+Live.swift │ │ └── DiskPersistenceClient+Test.swift │ ├── EntitiesVisibilityClient │ │ ├── EntitiesVisibilityClient+Interface.swift │ │ ├── EntitiesVisibilityClient+Live.swift │ │ └── EntitiesVisibilityClient+Test.swift │ ├── FactorSourcesClient │ │ ├── FactorSourcesClient+Interface.swift │ │ ├── FactorSourcesClient+Live.swift │ │ └── FactorSourcesClient+Test.swift │ ├── FaucetClient │ │ ├── FaucetClient+Interface.swift │ │ ├── FaucetClient+Live.swift │ │ └── FaucetClient+Test.swift │ ├── GatewayAPI │ │ ├── CodeGen │ │ │ ├── Gateway │ │ │ │ └── Classes │ │ │ │ │ └── OpenAPIs │ │ │ │ │ └── Configuration.swift │ │ │ ├── Generated │ │ │ │ ├── AUXILARY │ │ │ │ │ ├── CodableHelper.swift │ │ │ │ │ ├── Extensions.swift │ │ │ │ │ ├── Models.swift │ │ │ │ │ └── OpenISO8601DateFormatter.swift │ │ │ │ ├── AccountAuthorizedDepositorBadgeType.swift │ │ │ │ ├── AccountAuthorizedDepositorsCollection.swift │ │ │ │ ├── AccountAuthorizedDepositorsNonFungibleBadge.swift │ │ │ │ ├── AccountAuthorizedDepositorsResourceBadge.swift │ │ │ │ ├── AccountAuthorizedDepositorsResponseItem.swift │ │ │ │ ├── AccountDefaultDepositRule.swift │ │ │ │ ├── AccountDepositPreValidationDecidingFactors.swift │ │ │ │ ├── AccountDepositPreValidationDecidingFactorsResourceSpecificDetailsItem.swift │ │ │ │ ├── AccountDepositPreValidationNonFungibleBadge.swift │ │ │ │ ├── AccountDepositPreValidationRequest.swift │ │ │ │ ├── AccountDepositPreValidationResourceBadge.swift │ │ │ │ ├── AccountDepositPreValidationResourceSpecificBehaviourItem.swift │ │ │ │ ├── AccountDepositPreValidationResponse.swift │ │ │ │ ├── AccountLockerAddress.swift │ │ │ │ ├── AccountLockerNotFoundError.swift │ │ │ │ ├── AccountLockerVaultCollection.swift │ │ │ │ ├── AccountLockerVaultCollectionItemFungible.swift │ │ │ │ ├── AccountLockerVaultCollectionItemNonFungible.swift │ │ │ │ ├── AccountLockerVaultCollectionItemType.swift │ │ │ │ ├── AccountResourcePreferenceRule.swift │ │ │ │ ├── AccountResourcePreferencesCollection.swift │ │ │ │ ├── AccountResourcePreferencesResponseItem.swift │ │ │ │ ├── AtLedgerStateMixin.swift │ │ │ │ ├── BlueprintMethodRoyalty.swift │ │ │ │ ├── BlueprintRoyaltyConfig.swift │ │ │ │ ├── CommittedTransactionInfo.swift │ │ │ │ ├── ComponentEntityRoleAssignmentEntry.swift │ │ │ │ ├── ComponentEntityRoleAssignmentEntryAssignment.swift │ │ │ │ ├── ComponentEntityRoleAssignments.swift │ │ │ │ ├── ComponentMethodRoyalty.swift │ │ │ │ ├── ComponentRoyaltyConfig.swift │ │ │ │ ├── CursorLimitMixin.swift │ │ │ │ ├── EntityMetadataCollection.swift │ │ │ │ ├── EntityMetadataItem.swift │ │ │ │ ├── EntityMetadataItemValue.swift │ │ │ │ ├── EntityNotFoundError.swift │ │ │ │ ├── EntitySchemaCollection.swift │ │ │ │ ├── EntitySchemaCollectionItem.swift │ │ │ │ ├── EventsItem.swift │ │ │ │ ├── FromLedgerStateMixin.swift │ │ │ │ ├── FungibleResourcesCollection.swift │ │ │ │ ├── FungibleResourcesCollectionItemGloballyAggregated.swift │ │ │ │ ├── FungibleResourcesCollectionItemVaultAggregated.swift │ │ │ │ ├── FungibleResourcesCollectionItemVaultAggregatedVault.swift │ │ │ │ ├── FungibleResourcesCollectionItemVaultAggregatedVaultItem.swift │ │ │ │ ├── GatewayInfoResponseKnownTarget.swift │ │ │ │ ├── GatewayInfoResponseReleaseInfo.swift │ │ │ │ ├── GatewayStatusResponse.swift │ │ │ │ ├── InternalServerError.swift │ │ │ │ ├── InvalidEntityError.swift │ │ │ │ ├── InvalidRequestError.swift │ │ │ │ ├── InvalidTransactionError.swift │ │ │ │ ├── LedgerState.swift │ │ │ │ ├── LedgerStateMixin.swift │ │ │ │ ├── LedgerStateSelector.swift │ │ │ │ ├── ManifestClass.swift │ │ │ │ ├── MetadataBoolArrayValue.swift │ │ │ │ ├── MetadataBoolValue.swift │ │ │ │ ├── MetadataDecimalArrayValue.swift │ │ │ │ ├── MetadataDecimalValue.swift │ │ │ │ ├── MetadataGlobalAddressArrayValue.swift │ │ │ │ ├── MetadataGlobalAddressValue.swift │ │ │ │ ├── MetadataI32ArrayValue.swift │ │ │ │ ├── MetadataI32Value.swift │ │ │ │ ├── MetadataI64ArrayValue.swift │ │ │ │ ├── MetadataI64Value.swift │ │ │ │ ├── MetadataInstantArrayValue.swift │ │ │ │ ├── MetadataInstantValue.swift │ │ │ │ ├── MetadataNonFungibleGlobalIdArrayValue.swift │ │ │ │ ├── MetadataNonFungibleGlobalIdArrayValueAllOfValues.swift │ │ │ │ ├── MetadataNonFungibleGlobalIdValue.swift │ │ │ │ ├── MetadataNonFungibleLocalIdArrayValue.swift │ │ │ │ ├── MetadataNonFungibleLocalIdValue.swift │ │ │ │ ├── MetadataOriginArrayValue.swift │ │ │ │ ├── MetadataOriginValue.swift │ │ │ │ ├── MetadataPublicKeyArrayValue.swift │ │ │ │ ├── MetadataPublicKeyHashArrayValue.swift │ │ │ │ ├── MetadataPublicKeyHashValue.swift │ │ │ │ ├── MetadataPublicKeyValue.swift │ │ │ │ ├── MetadataStringArrayValue.swift │ │ │ │ ├── MetadataStringValue.swift │ │ │ │ ├── MetadataU32ArrayValue.swift │ │ │ │ ├── MetadataU32Value.swift │ │ │ │ ├── MetadataU64ArrayValue.swift │ │ │ │ ├── MetadataU64Value.swift │ │ │ │ ├── MetadataU8ArrayValue.swift │ │ │ │ ├── MetadataU8Value.swift │ │ │ │ ├── MetadataUrlArrayValue.swift │ │ │ │ ├── MetadataUrlValue.swift │ │ │ │ ├── MetadataValueType.swift │ │ │ │ ├── ModelErrorResponse.swift │ │ │ │ ├── NativeResourceAccessControllerRecoveryBadgeValue.swift │ │ │ │ ├── NativeResourceAccountOwnerBadgeValue.swift │ │ │ │ ├── NativeResourceDetails.swift │ │ │ │ ├── NativeResourceEd25519SignatureResourceValue.swift │ │ │ │ ├── NativeResourceGlobalCallerResourceValue.swift │ │ │ │ ├── NativeResourceIdentityOwnerBadgeValue.swift │ │ │ │ ├── NativeResourceKind.swift │ │ │ │ ├── NativeResourceMultiResourcePoolUnitValue.swift │ │ │ │ ├── NativeResourceOneResourcePoolUnitValue.swift │ │ │ │ ├── NativeResourcePackageOfDirectCallerResourceValue.swift │ │ │ │ ├── NativeResourcePackageOwnerBadgeValue.swift │ │ │ │ ├── NativeResourceRedemptionValueItem.swift │ │ │ │ ├── NativeResourceSecp256k1SignatureResourceValue.swift │ │ │ │ ├── NativeResourceSystemExecutionResourceValue.swift │ │ │ │ ├── NativeResourceTwoResourcePoolUnitValue.swift │ │ │ │ ├── NativeResourceValidatorClaimNftValue.swift │ │ │ │ ├── NativeResourceValidatorLiquidStakeUnitValue.swift │ │ │ │ ├── NativeResourceValidatorOwnerBadgeValue.swift │ │ │ │ ├── NativeResourceXrdValue.swift │ │ │ │ ├── NetworkConfigurationResponse.swift │ │ │ │ ├── NetworkConfigurationResponseWellKnownAddresses.swift │ │ │ │ ├── NonFungibleIdType.swift │ │ │ │ ├── NonFungibleIdsCollection.swift │ │ │ │ ├── NonFungibleResourcesCollection.swift │ │ │ │ ├── NonFungibleResourcesCollectionItemGloballyAggregated.swift │ │ │ │ ├── NonFungibleResourcesCollectionItemVaultAggregated.swift │ │ │ │ ├── NonFungibleResourcesCollectionItemVaultAggregatedVault.swift │ │ │ │ ├── NonFungibleResourcesCollectionItemVaultAggregatedVaultItem.swift │ │ │ │ ├── NotSyncedUpError.swift │ │ │ │ ├── ObjectModuleId.swift │ │ │ │ ├── OptionalNonFungibleIdsCollection.swift │ │ │ │ ├── PackageBlueprintCollection.swift │ │ │ │ ├── PackageBlueprintCollectionItem.swift │ │ │ │ ├── PackageCodeCollection.swift │ │ │ │ ├── PackageCodeCollectionItem.swift │ │ │ │ ├── PackageVmType.swift │ │ │ │ ├── ProgrammaticScryptoSborValueArray.swift │ │ │ │ ├── ProgrammaticScryptoSborValueBool.swift │ │ │ │ ├── ProgrammaticScryptoSborValueBytes.swift │ │ │ │ ├── ProgrammaticScryptoSborValueDecimal.swift │ │ │ │ ├── ProgrammaticScryptoSborValueEnum.swift │ │ │ │ ├── ProgrammaticScryptoSborValueI128.swift │ │ │ │ ├── ProgrammaticScryptoSborValueI16.swift │ │ │ │ ├── ProgrammaticScryptoSborValueI32.swift │ │ │ │ ├── ProgrammaticScryptoSborValueI64.swift │ │ │ │ ├── ProgrammaticScryptoSborValueI8.swift │ │ │ │ ├── ProgrammaticScryptoSborValueKind.swift │ │ │ │ ├── ProgrammaticScryptoSborValueMap.swift │ │ │ │ ├── ProgrammaticScryptoSborValueMapEntry.swift │ │ │ │ ├── ProgrammaticScryptoSborValueNonFungibleLocalId.swift │ │ │ │ ├── ProgrammaticScryptoSborValueOwn.swift │ │ │ │ ├── ProgrammaticScryptoSborValuePreciseDecimal.swift │ │ │ │ ├── ProgrammaticScryptoSborValueReference.swift │ │ │ │ ├── ProgrammaticScryptoSborValueString.swift │ │ │ │ ├── ProgrammaticScryptoSborValueTuple.swift │ │ │ │ ├── ProgrammaticScryptoSborValueU128.swift │ │ │ │ ├── ProgrammaticScryptoSborValueU16.swift │ │ │ │ ├── ProgrammaticScryptoSborValueU32.swift │ │ │ │ ├── ProgrammaticScryptoSborValueU64.swift │ │ │ │ ├── ProgrammaticScryptoSborValueU8.swift │ │ │ │ ├── PublicKeyEcdsaSecp256k1.swift │ │ │ │ ├── PublicKeyEddsaEd25519.swift │ │ │ │ ├── PublicKeyHashEcdsaSecp256k1.swift │ │ │ │ ├── PublicKeyHashEddsaEd25519.swift │ │ │ │ ├── PublicKeyHashType.swift │ │ │ │ ├── PublicKeyType.swift │ │ │ │ ├── ResourceAggregationLevel.swift │ │ │ │ ├── ResourceHoldersCollection.swift │ │ │ │ ├── ResourceHoldersCollectionFungibleResourceItem.swift │ │ │ │ ├── ResourceHoldersCollectionItem.swift │ │ │ │ ├── ResourceHoldersCollectionNonFungibleResourceItem.swift │ │ │ │ ├── ResourceHoldersRequest.swift │ │ │ │ ├── ResourceHoldersResourceType.swift │ │ │ │ ├── ResourceHoldersResponse.swift │ │ │ │ ├── ResultSetCursorMixin.swift │ │ │ │ ├── RoleAssignmentResolution.swift │ │ │ │ ├── RoleKey.swift │ │ │ │ ├── RoyaltyAmount.swift │ │ │ │ ├── ScryptoSborValue.swift │ │ │ │ ├── StateAccountAuthorizedDepositorsPageRequest.swift │ │ │ │ ├── StateAccountAuthorizedDepositorsPageResponse.swift │ │ │ │ ├── StateAccountLockerPageVaultsRequest.swift │ │ │ │ ├── StateAccountLockerPageVaultsResponse.swift │ │ │ │ ├── StateAccountLockersTouchedAtRequest.swift │ │ │ │ ├── StateAccountLockersTouchedAtResponse.swift │ │ │ │ ├── StateAccountLockersTouchedAtResponseItem.swift │ │ │ │ ├── StateAccountResourcePreferencesPageRequest.swift │ │ │ │ ├── StateAccountResourcePreferencesPageResponse.swift │ │ │ │ ├── StateEntityDetailsOptIns.swift │ │ │ │ ├── StateEntityDetailsRequest.swift │ │ │ │ ├── StateEntityDetailsResponse.swift │ │ │ │ ├── StateEntityDetailsResponseComponentDetails.swift │ │ │ │ ├── StateEntityDetailsResponseFungibleResourceDetails.swift │ │ │ │ ├── StateEntityDetailsResponseFungibleVaultDetails.swift │ │ │ │ ├── StateEntityDetailsResponseItem.swift │ │ │ │ ├── StateEntityDetailsResponseItemAncestorIdentities.swift │ │ │ │ ├── StateEntityDetailsResponseItemDetailsType.swift │ │ │ │ ├── StateEntityDetailsResponseNonFungibleResourceDetails.swift │ │ │ │ ├── StateEntityDetailsResponseNonFungibleVaultDetails.swift │ │ │ │ ├── StateEntityDetailsResponsePackageDetails.swift │ │ │ │ ├── StateEntityFungibleResourceVaultsPageRequest.swift │ │ │ │ ├── StateEntityFungibleResourceVaultsPageResponse.swift │ │ │ │ ├── StateEntityFungiblesPageRequest.swift │ │ │ │ ├── StateEntityFungiblesPageRequestOptIns.swift │ │ │ │ ├── StateEntityFungiblesPageResponse.swift │ │ │ │ ├── StateEntityMetadataPageRequest.swift │ │ │ │ ├── StateEntityMetadataPageResponse.swift │ │ │ │ ├── StateEntityNonFungibleIdsPageRequest.swift │ │ │ │ ├── StateEntityNonFungibleIdsPageResponse.swift │ │ │ │ ├── StateEntityNonFungibleResourceVaultsPageOptIns.swift │ │ │ │ ├── StateEntityNonFungibleResourceVaultsPageRequest.swift │ │ │ │ ├── StateEntityNonFungibleResourceVaultsPageResponse.swift │ │ │ │ ├── StateEntityNonFungiblesPageRequest.swift │ │ │ │ ├── StateEntityNonFungiblesPageRequestOptIns.swift │ │ │ │ ├── StateEntityNonFungiblesPageResponse.swift │ │ │ │ ├── StateEntitySchemaPageRequest.swift │ │ │ │ ├── StateEntitySchemaPageResponse.swift │ │ │ │ ├── StateKeyValueStoreDataRequest.swift │ │ │ │ ├── StateKeyValueStoreDataRequestKeyItem.swift │ │ │ │ ├── StateKeyValueStoreDataResponse.swift │ │ │ │ ├── StateKeyValueStoreDataResponseItem.swift │ │ │ │ ├── StateKeyValueStoreKeysCollection.swift │ │ │ │ ├── StateKeyValueStoreKeysRequest.swift │ │ │ │ ├── StateKeyValueStoreKeysResponse.swift │ │ │ │ ├── StateKeyValueStoreKeysResponseItem.swift │ │ │ │ ├── StateNonFungibleDataRequest.swift │ │ │ │ ├── StateNonFungibleDataResponse.swift │ │ │ │ ├── StateNonFungibleDetailsResponseItem.swift │ │ │ │ ├── StateNonFungibleIdsRequest.swift │ │ │ │ ├── StateNonFungibleIdsResponse.swift │ │ │ │ ├── StateNonFungibleLocationRequest.swift │ │ │ │ ├── StateNonFungibleLocationResponse.swift │ │ │ │ ├── StateNonFungibleLocationResponseItem.swift │ │ │ │ ├── StatePackageBlueprintPageRequest.swift │ │ │ │ ├── StatePackageBlueprintPageResponse.swift │ │ │ │ ├── StatePackageCodePageRequest.swift │ │ │ │ ├── StatePackageCodePageResponse.swift │ │ │ │ ├── StateValidatorsListRequest.swift │ │ │ │ ├── StateValidatorsListResponse.swift │ │ │ │ ├── StreamTransactionsRequest.swift │ │ │ │ ├── StreamTransactionsRequestAllOfManifestClassFilter.swift │ │ │ │ ├── StreamTransactionsRequestEventFilterItem.swift │ │ │ │ ├── StreamTransactionsResponse.swift │ │ │ │ ├── TransactionAccountDepositPreValidationAuthorizedDepositorBadge.swift │ │ │ │ ├── TransactionBalanceChanges.swift │ │ │ │ ├── TransactionCommittedDetailsRequest.swift │ │ │ │ ├── TransactionCommittedDetailsResponse.swift │ │ │ │ ├── TransactionConstructionResponse.swift │ │ │ │ ├── TransactionDetailsOptIns.swift │ │ │ │ ├── TransactionFungibleBalanceChanges.swift │ │ │ │ ├── TransactionFungibleFeeBalanceChangeType.swift │ │ │ │ ├── TransactionFungibleFeeBalanceChanges.swift │ │ │ │ ├── TransactionIntentStatus.swift │ │ │ │ ├── TransactionNonFungibleBalanceChanges.swift │ │ │ │ ├── TransactionNotFoundError.swift │ │ │ │ ├── TransactionPayloadGatewayHandlingStatus.swift │ │ │ │ ├── TransactionPayloadStatus.swift │ │ │ │ ├── TransactionPreviewOptIns.swift │ │ │ │ ├── TransactionPreviewRequest.swift │ │ │ │ ├── TransactionPreviewRequestFlags.swift │ │ │ │ ├── TransactionPreviewResponse.swift │ │ │ │ ├── TransactionPreviewResponseLogsInner.swift │ │ │ │ ├── TransactionReceipt.swift │ │ │ │ ├── TransactionStatus.swift │ │ │ │ ├── TransactionStatusRequest.swift │ │ │ │ ├── TransactionStatusResponse.swift │ │ │ │ ├── TransactionStatusResponseKnownPayloadItem.swift │ │ │ │ ├── TransactionSubmitRequest.swift │ │ │ │ ├── TransactionSubmitResponse.swift │ │ │ │ ├── TwoWayLinkedDappOnLedgerDetails.swift │ │ │ │ ├── TwoWayLinkedDappsCollection.swift │ │ │ │ ├── TwoWayLinkedDappsCollectionItem.swift │ │ │ │ ├── TwoWayLinkedEntitiesCollection.swift │ │ │ │ ├── TwoWayLinkedEntitiesCollectionItem.swift │ │ │ │ ├── ValidationErrorsAtPath.swift │ │ │ │ ├── ValidatorCollection.swift │ │ │ │ ├── ValidatorCollectionItem.swift │ │ │ │ ├── ValidatorCollectionItemActiveInEpoch.swift │ │ │ │ ├── ValidatorCollectionItemEffectiveFeeFactor.swift │ │ │ │ ├── ValidatorCollectionItemEffectiveFeeFactorCurrent.swift │ │ │ │ ├── ValidatorCollectionItemEffectiveFeeFactorPending.swift │ │ │ │ ├── ValidatorUptimeCollection.swift │ │ │ │ ├── ValidatorUptimeCollectionItem.swift │ │ │ │ ├── ValidatorVaultItem.swift │ │ │ │ ├── ValidatorsUptimeRequest.swift │ │ │ │ └── ValidatorsUptimeResponse.swift │ │ │ └── Input │ │ │ │ ├── gateway-api-schema.yml │ │ │ │ └── generate.sh │ │ ├── CoreAPI │ │ │ ├── CoreAPI.swift │ │ │ ├── CoreAPI_BinaryPlaintextMessageContent.swift │ │ │ ├── CoreAPI_PlaintextMessageContent.swift │ │ │ ├── CoreAPI_PlaintextTransactionMessage.swift │ │ │ ├── CoreAPI_StringPlaintextMessageContent.swift │ │ │ ├── CoreAPI_TransactionMessage.swift │ │ │ ├── CoreAPI_TransactionReceipt.swift │ │ │ └── CoreAPI_TransactionStatus.swift │ │ ├── CreatedModels │ │ │ ├── AccountLockerVaultCollectionItem.swift │ │ │ ├── FungibleResourcesCollectionItem.swift │ │ │ ├── GatewayAPI+PublicKey.swift │ │ │ ├── GatewayError.swift │ │ │ ├── MetadataTypedValue.swift │ │ │ ├── NonFungibleResourcesCollectionItem.swift │ │ │ ├── ProgrammaticScryptoSborValue.swift │ │ │ ├── PublicKeyHash.swift │ │ │ ├── ResourcePoolState.swift │ │ │ ├── StateEntityDetailsResponseItemDetails.swift │ │ │ ├── TransactionReceiptStatus.swift │ │ │ └── ValidatorState.swift │ │ ├── GatewayAPI+Utils.swift │ │ ├── GatewayAPI.swift │ │ ├── GatewayAPIClient+Extension.swift │ │ └── GatewayAPIClient │ │ │ ├── GatewayAPIClient+Interface.swift │ │ │ ├── GatewayAPIClient+Live.swift │ │ │ └── GatewayAPIClient+Mock.swift │ ├── GatewaysClient │ │ ├── GatewaysClient+Interface.swift │ │ ├── GatewaysClient+Live.swift │ │ └── GatewaysClient+Test.swift │ ├── HTTPClient │ │ ├── HTTPClient+Interface.swift │ │ ├── HTTPClient+Live.swift │ │ └── HTTPClient+Mock.swift │ ├── HomeCardsClient │ │ ├── HomeCardsClient+Interface.swift │ │ ├── HomeCardsClient+Live.swift │ │ └── HomeCardsClient+Test.swift │ ├── IOSSecurityClient │ │ ├── IOSSecurityClient+Interface.swift │ │ ├── IOSSecurityClient+Live.swift │ │ └── IOSSecurityClient+Test.swift │ ├── ImportLegacyWalletClient │ │ ├── ImportLegacyWalletClient+Interface.swift │ │ ├── ImportLegacyWalletClient+Live.swift │ │ ├── ImportLegacyWalletClient+Request+Response.swift │ │ ├── ImportLegacyWalletClient+Test.swift │ │ └── ParseOlympiaPayloads.swift │ ├── KeychainClient │ │ ├── KeychainClient+Interface.swift │ │ ├── KeychainClient+Live.swift │ │ ├── KeychainClient+Mocked.swift │ │ └── KeychainHolder.swift │ ├── LedgerHardwareWalletClient │ │ ├── ImportLegacyWalletModels │ │ │ ├── CAP33 │ │ │ │ └── Olympia.swift │ │ │ ├── ImportLegacyWalletErrors.swift │ │ │ ├── MigratedAccount.swift │ │ │ ├── MigratedHardwareAccounts.swift │ │ │ ├── MigratedSoftwareAccounts.swift │ │ │ └── OlympiaAccountToMigrate.swift │ │ ├── LedgerHardwareWalletClient+Interface.swift │ │ ├── LedgerHardwareWalletClient+Live.swift │ │ └── LedgerHardwareWalletClient+Test.swift │ ├── LocalAuthenticationClient │ │ ├── LocalAuthenticationClient+Interface.swift │ │ ├── LocalAuthenticationClient+Live.swift │ │ ├── LocalAuthenticationClient+Test.swift │ │ └── LocalAuthenticationConfig.swift │ ├── MnemonicClient │ │ ├── MnemonicClient+Interface.swift │ │ ├── MnemonicClient+Live.swift │ │ └── MnemonicClient+Test.swift │ ├── NPSSurveyClient │ │ ├── NPSSurveyClient+Interface.swift │ │ └── NPSSurveyClient+Live.swift │ ├── NetworkSwitchingClient │ │ ├── NetworkSwitchingClient+Interface.swift │ │ ├── NetworkSwitchingClient+Live.swift │ │ └── NetworkSwitchingClient+Test.swift │ ├── OnLedgerEntitiesClient │ │ ├── Helpers │ │ │ ├── EntityBehaviors.swift │ │ │ ├── EntityMetadata+GWMetadata.swift │ │ │ ├── OnLedgerEntitiesClient+ComplexTypes.swift │ │ │ └── OnLedgerEntitiesClient+CreateEntity.swift │ │ ├── OnLedgerEntitiesClient+Interface.swift │ │ ├── OnLedgerEntitiesClient+Live.swift │ │ └── OnLedgerEntitiesClient+Test.swift │ ├── OnboardingClient │ │ ├── OnboardingClient+Interface.swift │ │ ├── OnboardingClient+Live.swift │ │ └── OnboardingClient+Test.swift │ ├── OverlayWindowClient │ │ ├── OverlayWindowClient+Interface.swift │ │ ├── OverlayWindowClient+Live.swift │ │ └── OverlayWindowClient+Test.swift │ ├── P2PLinksClient │ │ ├── P2PLinksClient+Interface.swift │ │ ├── P2PLinksClient+Live.swift │ │ └── P2PLinksClient+Test.swift │ ├── PasteboardClient │ │ ├── PasteboardClient+Interface.swift │ │ ├── PasteboardClient+Live.swift │ │ └── PasteboardClient+Test.swift │ ├── PersonasClient │ │ ├── PersonasClient+Interface.swift │ │ ├── PersonasClient+Live.swift │ │ └── PersonasClient+Test.swift │ ├── PreAuthorizationClient │ │ ├── Models │ │ │ ├── PreAuthorizationFailure.swift │ │ │ └── PreAuthorizationModels.swift │ │ ├── PreAuthorizationClient+Interface.swift │ │ ├── PreAuthorizationClient+Live.swift │ │ └── PreAuthorizationClient+Test.swift │ ├── ProfileStore │ │ ├── ProfileStore+AsyncSequence+Updates.swift │ │ └── ProfileStore.swift │ ├── QRGeneratorClient │ │ ├── QRGeneratorClient+Interface.swift │ │ ├── QRGeneratorClient+Live.swift │ │ └── QRGeneratorClient+Test.swift │ ├── ROLAClient │ │ ├── ROLAClient+Interface.swift │ │ ├── ROLAClient+Live.swift │ │ ├── ROLAClient+Mock.swift │ │ └── ROLAFailure.swift │ ├── RadixConnectClient │ │ ├── RadixConnectClient+Interface.swift │ │ ├── RadixConnectClient+Live.swift │ │ └── RadixConnectClient+Test.swift │ ├── RadixNameServiceClient │ │ ├── RadixNameService+Interface.swift │ │ ├── RadixNameService+Live.swift │ │ └── RadixNameService+Test.swift │ ├── ResetWalletClient │ │ ├── ResetWalletClient+Interface.swift │ │ ├── ResetWalletClient+Live.swift │ │ └── ResetWalletClient+Test.swift │ ├── ResourcesVisibilityClient │ │ ├── ResourcesVisibilityClient+Interface.swift │ │ ├── ResourcesVisibilityClient+Live.swift │ │ └── ResourcesVisibilityClient+Test.swift │ ├── SecureStorageClient │ │ ├── SecureStorageClient+Interface.swift │ │ ├── SecureStorageClient+Live.swift │ │ └── SecureStorageClient+Test.swift │ ├── SecurityCenterClient │ │ ├── SecurityCenterClient+Interface.swift │ │ ├── SecurityCenterClient+Live.swift │ │ └── SecurityCenterClient+Test.swift │ ├── SensitiveInfoClient │ │ ├── SensitiveInfoClient+Interface.swift │ │ └── SensitiveInfoClient+Live.swift │ ├── SubmitTransactionClient │ │ ├── SubmitTransactionClient+Interface.swift │ │ ├── SubmitTransactionClient+Live.swift │ │ └── SubmitTransactionClient+Test.swift │ ├── TokenPriceClient │ │ ├── TokenPriceClient+Interface.swift │ │ ├── TokenPriceClient+Live.swift │ │ └── TokenPriceClient+Mock.swift │ ├── TransactionClient │ │ ├── Models │ │ │ ├── MakeTransactionHeaderInput.swift │ │ │ ├── TransactionFailure.swift │ │ │ ├── TransactionFee.swift │ │ │ └── TransactionModels.swift │ │ ├── TransactionClient+Interface.swift │ │ ├── TransactionClient+Live.swift │ │ └── TransactionClient+TestValue.swift │ ├── TransactionHistoryClient │ │ ├── TransactionHistoryClient+Interface.swift │ │ ├── TransactionHistoryClient+Live.swift │ │ └── TransactionHistoryClient+Mock.swift │ ├── TransportProfileClient │ │ ├── TransportProfileClient+Interface.swift │ │ ├── TransportProfileClient+Live.swift │ │ └── TransportProfileClient+Test.swift │ ├── URLFormatterClient │ │ ├── URLFormatterClient+Interface.swift │ │ ├── URLFormatterClient+Live.swift │ │ └── URLFormatterClient+Test.swift │ └── UserDefaults+Dependency+Extension │ │ └── UserDefaults+Dependency+Extension.swift ├── Core │ ├── DesignSystem │ │ ├── AccountBannerView.swift │ │ ├── Colors.swift │ │ ├── Components │ │ │ ├── AppTextEditor.swift │ │ │ ├── AppTextField.swift │ │ │ ├── ApprovalSlider.swift │ │ │ ├── AssetIcon.swift │ │ │ ├── AssetRow.swift │ │ │ ├── BackButton.swift │ │ │ ├── Button+Asset.swift │ │ │ ├── Card.swift │ │ │ ├── CheckmarkView.swift │ │ │ ├── CloseButton.swift │ │ │ ├── ConfirmationView.swift │ │ │ ├── DarkModeTintedImage.swift │ │ │ ├── DeveloperDisclaimerBanner.swift │ │ │ ├── FixedSpacer.swift │ │ │ ├── Footer.swift │ │ │ ├── GeometryExtensions.swift │ │ │ ├── Hint.swift │ │ │ ├── InfoButton.swift │ │ │ ├── JaggedEdge.swift │ │ │ ├── LoadingOverlayView.swift │ │ │ ├── LoadingView.swift │ │ │ ├── NoContentView.swift │ │ │ ├── PlainListRow.swift │ │ │ ├── RadioButton.swift │ │ │ ├── RoundedCornerBackground.swift │ │ │ ├── Selection.swift │ │ │ ├── SelectionList.swift │ │ │ ├── Separator.swift │ │ │ ├── Shapes.swift │ │ │ ├── ShareView.swift │ │ │ ├── StatusMessageView.swift │ │ │ ├── Thumbnails.swift │ │ │ └── TransferPoolUnitView.swift │ │ ├── ControlRequirements.swift │ │ ├── ControlState.swift │ │ ├── EntitySecurityProblemsView.swift │ │ ├── ExpandableTextView.swift │ │ ├── Extensions │ │ │ ├── Binding+Extra.swift │ │ │ ├── Button+Extra.swift │ │ │ ├── Geometry.swift │ │ │ ├── Image+Extra.swift │ │ │ ├── Label+Extra.swift │ │ │ ├── Stroke.swift │ │ │ ├── Text+Extra.swift │ │ │ ├── TextInputAutocapitalization+Extra.swift │ │ │ ├── UIKeyboardType+Extra.swift │ │ │ └── View+Extra.swift │ │ ├── Fonts.swift │ │ ├── Grid.swift │ │ ├── HScrollBar.swift │ │ ├── HeaderListViewContainer.swift │ │ ├── HitTargetSize.swift │ │ ├── InfoPair.swift │ │ ├── JSONView.swift │ │ ├── LabelledDate.swift │ │ ├── Layouts │ │ │ ├── FlowLayout.swift │ │ │ └── StackedViewsLayout.swift │ │ ├── LinearGradients.swift │ │ ├── Measure+Position.swift │ │ ├── MultiPickerView.swift │ │ ├── OnLedgerTagsView.swift │ │ ├── ShimmeringAnimation.swift │ │ ├── Styles │ │ │ ├── BlueTextButtonStyle.swift │ │ │ ├── HeaderButtonStyle.swift │ │ │ ├── InertButtonStyle.swift │ │ │ ├── InfoButtonStyle.swift │ │ │ ├── PrimaryRectangularButtonStyle.swift │ │ │ ├── PrimaryTextButtonStyle.swift │ │ │ ├── SecondaryRectangularButtonStyle.swift │ │ │ ├── TappableRowStyle.swift │ │ │ ├── TrailingIconLabelStyle.swift │ │ │ └── URLButtonStyle.swift │ │ ├── ToggleView.swift │ │ ├── TotalCurrencyWorthView.swift │ │ ├── TruncationMask.swift │ │ └── ViewModifiers │ │ │ ├── Modifier.swift │ │ │ ├── OnSizeChanged.swift │ │ │ ├── OnWillDisappear.swift │ │ │ ├── PresentationBackground.swift │ │ │ ├── PresentationDetentIntrinsicHeight.swift │ │ │ ├── TextStyleModifier.swift │ │ │ └── TokenShadowModifier.swift │ ├── Dictionary+Extensions.swift │ ├── FeaturePrelude │ │ ├── AccountCard │ │ │ ├── AccountCard+DataSource.swift │ │ │ └── AccountCard.swift │ │ ├── AddressView │ │ │ ├── AddressDetails+View.swift │ │ │ ├── AddressDetails.swift │ │ │ └── AddressView.swift │ │ ├── Extensions │ │ │ ├── AnyRange.swift │ │ │ ├── AppearanceID+Extra.swift │ │ │ ├── AttributedString+Extra.swift │ │ │ ├── Selection+Extra.swift │ │ │ ├── Store+Extra.swift │ │ │ ├── SwiftUINavigation+Extra.swift │ │ │ ├── TaskResult+Unit.swift │ │ │ └── Validation+Extra.swift │ │ ├── FactorSourceCard │ │ │ ├── FactorSourceCard+DataSource.swift │ │ │ └── FactorSourceCard.swift │ │ ├── FactorSourcePreviewCard.swift │ │ ├── FeatureReducer.swift │ │ ├── LedgerRowView.swift │ │ ├── Loadable.swift │ │ ├── LoadableView.swift │ │ ├── OnAnimationCompletedViewModifier.swift │ │ ├── OnFirstAppearViewModifier.swift │ │ ├── OnFirstTaskViewModifier.swift │ │ ├── Radix+Dashboard.swift │ │ ├── RadixDateFormatter.swift │ │ ├── RenameLabel │ │ │ ├── RenameLabel+View.swift │ │ │ └── RenameLabel.swift │ │ ├── ShieldCard │ │ │ └── ShieldCard.swift │ │ ├── UserDefaultsClient+AccountRecovery.swift │ │ └── WithNavigationBar.swift │ ├── Resources │ │ ├── Generated │ │ │ ├── AssetResource.generated.swift │ │ │ ├── Fonts.generated.swift │ │ │ └── L10n.generated.swift │ │ ├── ImageAsset+Extension.swift │ │ └── Resources │ │ │ ├── Assets.xcassets │ │ │ ├── AccountDepositSettings │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-accept-airdrop.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-accept-airdrop.pdf │ │ │ │ ├── icon-accept-known-airdrop.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_accept_known.pdf │ │ │ │ │ └── icon-accept-known-airdrop.pdf │ │ │ │ ├── icon-decline-airdrop.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-decline-airdrop.pdf │ │ │ │ ├── icon-minus-circle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-minus-circle.pdf │ │ │ │ └── icon-plus-circle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-add-circle.pdf │ │ │ ├── ApplyShield │ │ │ │ ├── Contents.json │ │ │ │ └── applyShieldIntro.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── applyShieldIntro.pdf │ │ │ ├── AssetTransfer │ │ │ │ ├── Contents.json │ │ │ │ ├── addAccount.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-AddAccount.pdf │ │ │ │ ├── addMessage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-AddMessage.pdf │ │ │ │ ├── chooseAccount.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chooseAccount.pdf │ │ │ │ └── transfer.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transfer.pdf │ │ │ ├── AssetsList │ │ │ │ ├── Contents.json │ │ │ │ ├── fungible-tokens.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Icon-Market-Cap.pdf │ │ │ │ ├── nft.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ICON-NFTS.pdf │ │ │ │ ├── pool-units.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-Pool-Shares.pdf │ │ │ │ └── stakes.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-Staking.pdf │ │ │ ├── Behaviors │ │ │ │ ├── Contents.json │ │ │ │ ├── freezable-by-anyone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── freezable-by-anyone.pdf │ │ │ │ │ └── ic_freeze_asset_anyone.pdf │ │ │ │ ├── freezable-by-third-party.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── freezable-by-thirdparty.pdf │ │ │ │ │ └── ic_freeze_asset_thirdparty.pdf │ │ │ │ ├── information-changeable-by-anyone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_change_update_metadata.pdf │ │ │ │ │ └── renaming-anyone.pdf │ │ │ │ ├── information-changeable.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_perform_update_metadata.pdf │ │ │ │ │ └── renaming.pdf │ │ │ │ ├── movement-restrictable-in-future-by-anyone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_movement_restricted_future_anyone.pdf │ │ │ │ │ └── movement-restricted-future-anyone.pdf │ │ │ │ ├── movement-restrictable-in-future.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_movement_restricted_future.pdf │ │ │ │ │ └── movement-restricted-future.pdf │ │ │ │ ├── movement-restricted.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_movement_restricted.pdf │ │ │ │ │ └── movement-restricted.pdf │ │ │ │ ├── nft-data-changeable-by-anyone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── change-data-anyone.pdf │ │ │ │ │ └── ic_change_update_non_fungible_data.pdf │ │ │ │ ├── nft-data-changeable.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── change-data.pdf │ │ │ │ │ └── ic_perform_update_non_fungible_data.pdf │ │ │ │ ├── removable-by-anyone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_change_recall.pdf │ │ │ │ │ └── removing-anyone.pdf │ │ │ │ ├── removable-by-third-party.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_perform_recall.pdf │ │ │ │ │ └── removing-third-party.pdf │ │ │ │ ├── simple-asset.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_simple_resource_behaviour.pdf │ │ │ │ │ └── simple-asset.pdf │ │ │ │ ├── supply-decreasable-by-anyone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_supply_decrease_anyone.pdf │ │ │ │ │ └── supply-decrease-anyone.pdf │ │ │ │ ├── supply-decreasable.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_supply_decrease.pdf │ │ │ │ │ └── supply-decrease.pdf │ │ │ │ ├── supply-flexible-by-anyone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_supply_increase_decrease_anyone.pdf │ │ │ │ │ └── supply-increase-decrease-anyone.pdf │ │ │ │ ├── supply-flexible.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_supply_increase_decrease.pdf │ │ │ │ │ └── supply-increase-decrease.pdf │ │ │ │ ├── supply-increasable-by-anyone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_supply_increase_anyone.pdf │ │ │ │ │ └── supply-increase-anyone.pdf │ │ │ │ └── supply-increasable.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_supply_increase.pdf │ │ │ │ │ └── supply-increase.pdf │ │ │ ├── CardCarousel │ │ │ │ ├── Contents.json │ │ │ │ ├── carousel_background_connect.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── carousel_background_connect.pdf │ │ │ │ ├── carousel_background_ecosystem.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── carousel_background_ecosystem.pdf │ │ │ │ ├── carousel_background_radquest.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── carousel_background_radquest.pdf │ │ │ │ └── rewards.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── rewards.pdf │ │ │ ├── Common │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow-back.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrow-back.pdf │ │ │ │ ├── check.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── check.pdf │ │ │ │ ├── checkCircleOutline.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── checkCircleOutline.pdf │ │ │ │ ├── checkmark-dark-selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── checkmark-dark-selected.pdf │ │ │ │ ├── checkmark-dark-unselected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── checkmark-dark-unselected.pdf │ │ │ │ ├── checkmark-light-selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── checkmark-light-selected.pdf │ │ │ │ ├── checkmark-light-unselected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── checkmark-light-unselected.pdf │ │ │ │ ├── chevron-down.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chevron-down.pdf │ │ │ │ ├── chevron-right.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chevron-right.pdf │ │ │ │ ├── chevron-up.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chevron-up.pdf │ │ │ │ ├── close.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── close.pdf │ │ │ │ ├── code.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── code.pdf │ │ │ │ ├── copy-big.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Copy.pdf │ │ │ │ ├── copy.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── copy.pdf │ │ │ │ ├── create.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── create.pdf │ │ │ │ ├── delete_account.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── delete_account.pdf │ │ │ │ ├── ellipsis.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ellipsis.pdf │ │ │ │ ├── error.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── error.pdf │ │ │ │ ├── full-screen.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── full-screen.pdf │ │ │ │ ├── icon-hardware-ledger.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-hardware-ledger.pdf │ │ │ │ ├── icon-history.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-history.pdf │ │ │ │ ├── icon-link-out.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-link-out.pdf │ │ │ │ ├── icon-txn-blocks.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-txn-blocks.pdf │ │ │ │ ├── icon-validator.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-validator.pdf │ │ │ │ ├── info.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── info.pdf │ │ │ │ ├── infoCircle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── info.circle.png │ │ │ │ ├── lock-metadata.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── lock_closed.svg │ │ │ │ ├── lock.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── lock.pdf │ │ │ │ ├── minus-circle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── minus-circle.pdf │ │ │ │ ├── plus-circle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── plus-circle.pdf │ │ │ │ ├── radioButton-dark-disabled-unselected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── radioButton-dark-disabled-unselected.pdf │ │ │ │ ├── radioButton-dark-disabled.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── radioButton-dark-disabled.pdf │ │ │ │ ├── radioButton-dark-selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── radioButton-dark-selected.pdf │ │ │ │ ├── radioButton-dark-unselected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── radioButton-dark-unselected.pdf │ │ │ │ ├── radioButton-light-disabled-unselected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── radioButton-light-disabled-unselected.pdf │ │ │ │ ├── radioButton-light-disabled.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── radioButton-light-disabled.pdf │ │ │ │ ├── radioButton-light-selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── radioButton-light-selected.pdf │ │ │ │ ├── radioButton-light-unselected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── radioButton-light-unselected.pdf │ │ │ │ ├── share.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── share.pdf │ │ │ │ ├── signing-key.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── signing-key.pdf │ │ │ │ ├── trash.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── trash.pdf │ │ │ │ └── wallet-app-icon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── wallet-app-icon.pdf │ │ │ ├── Contents.json │ │ │ ├── FactorSourceCard │ │ │ │ ├── Contents.json │ │ │ │ ├── arculusFactor.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arculusFactor.pdf │ │ │ │ ├── deviceFactor.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── deviceFactor.pdf │ │ │ │ ├── ledgerFactor.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ledgerFactor.pdf │ │ │ │ ├── passphraseFactor.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── passphraseFactor.pdf │ │ │ │ └── passwordFactor.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── passwordFactor.pdf │ │ │ ├── Home │ │ │ │ ├── Contents.json │ │ │ │ ├── home-account-security.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── security.png │ │ │ │ │ ├── security@2x.png │ │ │ │ │ └── security@3x.png │ │ │ │ ├── home-aggregatedValue-hidden.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── home-aggregatedValue-hidden.pdf │ │ │ │ ├── home-aggregatedValue-shown.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── home-aggregatedValue-shown.pdf │ │ │ │ └── settings.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── home-header-settings.pdf │ │ │ ├── Placeholders │ │ │ │ ├── Contents.json │ │ │ │ ├── PLACEHOLDER_SecurityStructure.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── PLACEHOLDER_SecurityStructure.jpg │ │ │ │ ├── broken-image-placeholder.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── broken-image-placeholder.pdf │ │ │ │ ├── persona.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_persona.pdf │ │ │ │ │ └── persona-icon.pdf │ │ │ │ ├── token.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── fungible-token-placeholder.pdf │ │ │ │ │ └── ic_token.pdf │ │ │ │ ├── tokenIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tokenIcon.pdf │ │ │ │ ├── unknown-component.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_dapp.pdf │ │ │ │ │ └── icon-unknown-component.pdf │ │ │ │ ├── unknown_deposits.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── unknown_deposits.pdf │ │ │ │ │ └── unknown_resources.pdf │ │ │ │ └── xrd.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-xrd.pdf │ │ │ ├── SecurityCenter │ │ │ │ ├── Contents.json │ │ │ │ ├── configuration_backup.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── configuration_backup 1.pdf │ │ │ │ │ └── configuration_backup.pdf │ │ │ │ ├── security_factors.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── security_factors.pdf │ │ │ │ └── security_shields.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── security_shields.pdf │ │ │ ├── Settings │ │ │ │ ├── Contents.json │ │ │ │ ├── advancedLock.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── advancedLock.pdf │ │ │ │ ├── appSettings.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── appSettings.pdf │ │ │ │ ├── authorized-dapps.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── connected-dapps.pdf │ │ │ │ ├── backups.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Icon-Backup.pdf │ │ │ │ ├── delete.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── delete.pdf │ │ │ │ ├── depositGuarantees.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── depositGuarantees.pdf │ │ │ │ ├── desktop-connections.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── desktop-connections.pdf │ │ │ │ ├── desktop-link-connector.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── desktop-link-connector.pdf │ │ │ │ ├── developerMode.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── developerMode.pdf │ │ │ │ ├── entityHiding.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── accounts-persona-hidding.pdf │ │ │ │ ├── gateway.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── gateway.pdf │ │ │ │ ├── ledger.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ledger.pdf │ │ │ │ ├── link-connector.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── link-connector.pdf │ │ │ │ ├── personas.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── personas.pdf │ │ │ │ ├── qr-code-scanner.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── qr-code-scanner.pdf │ │ │ │ ├── recovery.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── recovery.pdf │ │ │ │ ├── security.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── security.pdf │ │ │ │ ├── seedPhrases.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── seedPhrases.pdf │ │ │ │ └── troubleshooting.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── troubleshooting.pdf │ │ │ ├── ShieldSetup │ │ │ │ ├── AddShieldBuilderSeedingFactors │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── addShieldBuilderSeedingFactorsAdd.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── prepareFactorSourcesAdd.pdf │ │ │ │ │ ├── addShieldBuilderSeedingFactorsCompletion.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── prepareFactorSourcesCompletion.pdf │ │ │ │ │ └── addShieldBuilderSeedingFactorsIntro.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── prepareFactorSourcesIntro.pdf │ │ │ │ ├── Contents.json │ │ │ │ ├── Onboarding │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── shieldSetupOnboardingApply.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shieldSetupOnboardingApply.pdf │ │ │ │ │ ├── shieldSetupOnboardingBuild.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shieldSetupOnboardingBuild.pdf │ │ │ │ │ └── shieldSetupOnboardingIntro.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shieldSetupOnboardingIntro.pdf │ │ │ │ ├── PickShieldBuilderSeedingFactors │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── pickShieldBuilderSeedingFactors.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── selectFactorSources.pdf │ │ │ │ └── RolesSetup │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── emergencyFallbackCalendar.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── emergencyFallbackCalendar.pdf │ │ │ │ │ ├── recoverySetup.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── recoverySetup.pdf │ │ │ │ │ └── recoverySetupDark.pdf │ │ │ │ │ └── regularAccessSetup.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── regularAccessSetup.pdf │ │ │ │ │ └── regularAccessSetupDark.pdf │ │ │ ├── ShieldsList │ │ │ │ ├── Contents.json │ │ │ │ ├── shieldStatusActionRequired.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shieldStatusActionRequired.pdf │ │ │ │ ├── shieldStatusApplied.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shieldStatusApplied.pdf │ │ │ │ └── shieldStatusNotApplied.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shieldStatusNotApplied.pdf │ │ │ ├── SocialMediaIcons │ │ │ │ ├── Contents.json │ │ │ │ ├── discord.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Discord-Symbol-Blurple.png │ │ │ │ ├── telegram.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Logo.png │ │ │ │ └── twitter.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── x.pdf │ │ │ ├── Splash │ │ │ │ ├── Contents.json │ │ │ │ ├── Splash.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── RadixWallet.png │ │ │ │ │ ├── RadixWallet@2x.png │ │ │ │ │ └── RadixWallet@3x.png │ │ │ │ ├── splash-item-1.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── splash-item-1.png │ │ │ │ ├── splash-item-2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── splash-item-2.png │ │ │ │ ├── splash-item-3.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── splash-item-3.png │ │ │ │ ├── splash-item-4.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── splash-item-4.png │ │ │ │ ├── splash-item-5.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── splash-item-5.png │ │ │ │ └── splash-phone-frame.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── splash-phone-frame.png │ │ │ ├── Tags │ │ │ │ ├── Contents.json │ │ │ │ ├── official-tag-icon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── official-tag-icon.pdf │ │ │ │ └── tag-icon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tag-icon.pdf │ │ │ ├── Theme │ │ │ │ ├── Background │ │ │ │ │ ├── CardBackgroundSecondary.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ExternalAccountBackground.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── PrimaryBackground.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SecondaryBackground.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── TertiaryBackground.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Button │ │ │ │ │ ├── Button.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── SecondaryButton.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── TextButton.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Gradients │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── GradientBlue1.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientBlue2.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientBlue3.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientBlue4.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientBlue5.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientBlue6.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientGreen1.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientGreen2.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientGreen3.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientGreen4.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientGreen5.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientPink1.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientPink2.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientPink3.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientPink4.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── GradientPink5.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Icon │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── IconPrimary.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── IconSecondary.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── IconTertiary.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Misc │ │ │ │ │ ├── BackgroundTransparent.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Border.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ChipBackground.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Separator.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shadow.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Shimmer.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── ToggleActive.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Text │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── FiatWorthHidden.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── PrimaryText.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── PrimaryTextInverse.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── SecondaryText.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── TertiaryText.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── TextField │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── TextFieldBackground.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── TextFieldBorder.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── TextFieldFocusedBorder.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ └── Warning │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Error.colorset │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── LightError.colorset │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Warning.colorset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── WarningSecondary.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── TransactionHistory │ │ │ │ ├── Contents.json │ │ │ │ ├── transactionHistory_deposit.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionHistory_deposit.pdf │ │ │ │ ├── transactionHistory_filter-list.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionHistory_filter-list.pdf │ │ │ │ ├── transactionHistory_filter_deposit.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionHistory_filter_deposit.pdf │ │ │ │ ├── transactionHistory_filter_withdrawal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionHistory_filter_withdrawal.pdf │ │ │ │ ├── transactionHistory_settings.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionHistory_settings.pdf │ │ │ │ └── transactionHistory_withdrawal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionHistory_withdrawal.pdf │ │ │ ├── TransactionReview │ │ │ │ ├── Contents.json │ │ │ │ ├── transactionReview-message.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionReview-message.pdf │ │ │ │ ├── transactionReview-pools.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionReview-contributing-to-pools.pdf │ │ │ │ ├── transactionReview_dapps.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionReview_dapps.pdf │ │ │ │ ├── transactionReview_deletingAccount.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionReview_deletingAccount.pdf │ │ │ │ ├── transactionReview_depositSetting.imageset │ │ │ │ │ ├── Accounts.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── transactionReview_depositing.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionReview_depositing.pdf │ │ │ │ ├── transactionReview_updateShield.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transactionReview_updateShield.pdf │ │ │ │ └── transactionReview_withdrawing.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrow_sent_upwards.pdf │ │ │ ├── check_circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── check_circle.pdf │ │ │ ├── cloud.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cloud.pdf │ │ │ ├── dApp │ │ │ │ ├── Contents.json │ │ │ │ ├── error_large.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── error_large.pdf │ │ │ │ ├── success-checkmark.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── success-checkmark.pdf │ │ │ │ └── transaction_in_progress.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── transaction_in_progress.pdf │ │ │ ├── folder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── folder.pdf │ │ │ ├── icon-fungible.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon-fungible.pdf │ │ │ ├── iconLiquidStakeUnits.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconLiquidStakeUnits.pdf │ │ │ ├── iconPackageOwnerBadge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconPackageOwnerBadge.pdf │ │ │ └── radix-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── radix-icon-white.pdf │ │ │ ├── Fonts │ │ │ ├── IBMPlexSans-Bold.ttf │ │ │ ├── IBMPlexSans-Medium.ttf │ │ │ ├── IBMPlexSans-Regular.ttf │ │ │ └── IBMPlexSans-SemiBold.ttf │ │ │ └── en.lproj │ │ │ └── Localizable.strings │ ├── SargonExtensions │ │ ├── DisplayName+NonEmptyString.swift │ │ ├── FactorSourceCommon+New+Dependencies.swift │ │ └── IntoSargon+Bridge.swift │ └── SharedModels │ │ ├── AppTheme.swift │ │ ├── Asset │ │ └── Protocols │ │ │ └── Asset.swift │ │ ├── Assets │ │ ├── AccountPortfolio+Extensions.swift │ │ ├── AssetBehavior.swift │ │ ├── AtLedgerState.swift │ │ ├── FiatWorth.swift │ │ ├── OnLedgerEntity.swift │ │ ├── OnLedgerTag.swift │ │ └── ResourceAmount.swift │ │ ├── Entities │ │ └── EntitiesControlledByFactorSource.swift │ │ ├── HTTPURLSessionResponse │ │ └── HTTPURLSessionResponse.swift │ │ ├── LedgerIdentifiable.swift │ │ ├── P2P │ │ ├── Application │ │ │ ├── IncomingMessage │ │ │ │ ├── P2P+RTCIncomingMessage.swift │ │ │ │ └── P2P+RTCMessageFromPeer.swift │ │ │ ├── OutgoingMessage │ │ │ │ └── P2P+RTCOutgoingMessage.swift │ │ │ └── README.md │ │ ├── ConnectorExtension │ │ │ ├── ConnectorExtension+Messages.swift │ │ │ ├── DappDefinitionAddress.swift │ │ │ ├── P2P+ConnectorExtension+Request.swift │ │ │ ├── P2P+ConnectorExtension+Response.swift │ │ │ └── P2P+LedgerHardwareWallet.swift │ │ ├── Dapp │ │ │ ├── Models │ │ │ │ ├── WalletInteraction+Extensions.swift │ │ │ │ └── WalletInteraction+PreviewValue.swift │ │ │ └── README.md │ │ └── P2P.swift │ │ └── PreviewValues │ │ └── Profile │ │ ├── Account+PreviewValues.swift │ │ └── Persona+PreviewValues.swift ├── Cryptography │ ├── Encryption │ │ ├── EncryptionScheme.swift │ │ └── VersionedAlgorithm.swift │ └── KeyDerivation │ │ └── KeyDerivationScheme.swift ├── Exports.swift ├── Features │ ├── AccountDetailsFeature │ │ ├── Coordinator │ │ │ ├── AccountDetails+Reducer.swift │ │ │ └── AccountDetails+View.swift │ │ └── ShieldCallToActionButton.swift │ ├── AccountPreferencesFeature │ │ ├── AccountPreferences+Reducer.swift │ │ ├── AccountPreferences+View.swift │ │ ├── Children │ │ │ ├── DeleteAccount │ │ │ │ ├── AccountDeletedView.swift │ │ │ │ ├── ChooseReceivingAccountOnDelete+Reducer.swift │ │ │ │ ├── ChooseReceivingAccountOnDelete+View.swift │ │ │ │ ├── DeleteAccountConfirmation+Reducer.swift │ │ │ │ ├── DeleteAccountConfirmation+View.swift │ │ │ │ ├── DeleteAccountCoordinator+Reducer.swift │ │ │ │ └── DeleteAccountCoordinator+View.swift │ │ │ ├── DevAccountPreferences+Reducer.swift │ │ │ ├── DevAccountPreferences+View.swift │ │ │ ├── EntityShieldDetails │ │ │ │ ├── EntityShieldDetails+View.swift │ │ │ │ └── EntityShieldDetails.swift │ │ │ └── ThirdPartyDeposits │ │ │ │ ├── AddAsset+Reducer.swift │ │ │ │ ├── AddAssets+View.swift │ │ │ │ ├── ResourcesList+Reducer.swift │ │ │ │ ├── ResourcesList+View.swift │ │ │ │ ├── ThirdPartyDeposits+Reducer.swift │ │ │ │ └── ThirdPartyDeposits+View.swift │ │ └── Common │ │ │ └── PreferenceList.swift │ ├── AccountRecoveryScan │ │ ├── AccountsRecoveredFromScanning.swift │ │ ├── Children │ │ │ ├── AccountRecoveryScanInProgress │ │ │ │ ├── AccountRecoveryScanInProgress+View.swift │ │ │ │ └── AccountRecoveryScanInProgress.swift │ │ │ └── SelectInactiveAccountsToAdd │ │ │ │ ├── SelectInactiveAccountsToAdd+View.swift │ │ │ │ └── SelectInactiveAccountsToAdd.swift │ │ └── Coordinator │ │ │ ├── AccountRecoveryScanCoordinator+View.swift │ │ │ └── AccountRecoveryScanCoordinator.swift │ ├── AddFactorSource │ │ ├── AddFactorSourceCoordinator+View.swift │ │ ├── AddFactorSourceCoordinator.swift │ │ └── Children │ │ │ ├── Arculus │ │ │ ├── ArculusCreatePIN+View.swift │ │ │ ├── ArculusCreatePIN.swift │ │ │ ├── ArculusPINInput+View.swift │ │ │ └── ArculusPINInput.swift │ │ │ ├── DeviceSeedPhrase │ │ │ ├── AddFactorSource-ConfirmSeedPhrase+View.swift │ │ │ ├── AddFactorSource-ConfirmSeedPhrase.swift │ │ │ ├── AddFactorSource-InputSeedPhrase+View.swift │ │ │ ├── AddFactorSource-InputSeedPhrase.swift │ │ │ ├── AddFactorSource-NameFactorSource+View.swift │ │ │ ├── AddFactorSource-NameFactorSource.swift │ │ │ └── MnemonicBuilder+SharedState.swift │ │ │ ├── IdnetifyingFactor │ │ │ ├── AddFactorSource-IdentifyingFactor+View.swift │ │ │ └── AddFactorSource-IdentifyingFactor.swift │ │ │ ├── Intro │ │ │ ├── AddFactorSourceIntro+View.swift │ │ │ ├── AddFactorSourceIntro.swift │ │ │ └── LinkAConnector.swift │ │ │ ├── SelectKind │ │ │ ├── AddFactorSoruce-SelectKind+View.swift │ │ │ └── AddFactorSource-SelectKind.swift │ │ │ └── Success │ │ │ └── AddFactorSource-SuccessView.swift │ ├── AddLedgerFactorSource │ │ ├── AddLedgerFactorSource+View.swift │ │ ├── AddLedgerFactorSource.swift │ │ ├── NameLedgerFactorSource+View.swift │ │ └── NameLedgerFactorSource.swift │ ├── AppFeature │ │ ├── App+Reducer.swift │ │ ├── App+View.swift │ │ ├── AppDelegate.swift │ │ ├── Overlay │ │ │ ├── Children │ │ │ │ ├── FullScreenOverlayCoordinator+Reducer.swift │ │ │ │ ├── FullScreenOverlayCoordinator+View.swift │ │ │ │ ├── HUD+Reducer.swift │ │ │ │ ├── HUD+View.swift │ │ │ │ ├── InfoLinkSheet+Reducer.swift │ │ │ │ ├── InfoLinkSheet+View.swift │ │ │ │ ├── SheetOverlayCoordinator+Reducer.swift │ │ │ │ └── SheetOverlayCoordinator+View.swift │ │ │ ├── ContentOverlay+Reducer.swift │ │ │ ├── ContentOverlay+View.swift │ │ │ ├── StatusOverlay+Reducer.swift │ │ │ └── StatusOverlay+View.swift │ │ └── SceneDelegate.swift │ ├── ApplyShield │ │ ├── ApplyShieldCoordinator+View.swift │ │ ├── ApplyShieldCoordinator.swift │ │ └── Children │ │ │ ├── ChooseAccountsForShield │ │ │ ├── ChooseAccountsForShield+View.swift │ │ │ └── ChooseAccountsForShield.swift │ │ │ ├── ChoosePersonasForShield │ │ │ ├── ChoosePersonasForShield+View.swift │ │ │ └── ChoosePersonasForShield.swift │ │ │ ├── Completion │ │ │ └── ApplyShield-CompletionView.swift │ │ │ └── Intro │ │ │ ├── ApplyShield-Intro+View.swift │ │ │ └── ApplyShield-Intro.swift │ ├── AssetTransferFeature │ │ ├── AssetTransfer+Reducer.swift │ │ ├── AssetTransfer+View.swift │ │ ├── Common │ │ │ └── Style.swift │ │ └── Components │ │ │ ├── AssetTransferMessage │ │ │ ├── AssetTransferMessage+Reducer.swift │ │ │ ├── AssetTransferMessage+View.swift │ │ │ └── MessageMode │ │ │ │ ├── MessageMode+Reducer.swift │ │ │ │ └── MessageMode+View.swift │ │ │ ├── ChooseRecipient │ │ │ ├── ChooseTransferRecipient+Reducer.swift │ │ │ └── ChooseTransferRecipient+View.swift │ │ │ └── TransferAccountList │ │ │ ├── ReceivingAccount │ │ │ ├── Asset │ │ │ │ ├── DepositStatus.swift │ │ │ │ ├── FungibleResourceAsset+Reducer.swift │ │ │ │ ├── FungibleResourceAsset+View.swift │ │ │ │ ├── NonFungibleResourceAsset+Reducer.swift │ │ │ │ ├── NonFungibleResourceAsset+View.swift │ │ │ │ ├── ResourceAsset+Reducer.swift │ │ │ │ └── ResourceAsset+View.swift │ │ │ ├── ReceivingAccount+Reducer.swift │ │ │ └── ReceivingAccount+View.swift │ │ │ ├── TransferAccountList+Reducer.swift │ │ │ └── TransferAccountList+View.swift │ ├── AssetsFeature │ │ ├── AssetsView+Reducer.swift │ │ ├── AssetsView+Selection.swift │ │ ├── AssetsView+Update.swift │ │ ├── AssetsView+View.swift │ │ └── Components │ │ │ ├── DetailsContainerWithHeaderView.swift │ │ │ ├── FungibleAssetList │ │ │ ├── Components │ │ │ │ ├── Details │ │ │ │ │ ├── FungibleTokenDetails+Reducer.swift │ │ │ │ │ └── FungibleTokenDetails+View.swift │ │ │ │ ├── Row │ │ │ │ │ ├── FungibleAssetList+Row+Reducer.swift │ │ │ │ │ └── FungibleAssetList+Row+View.swift │ │ │ │ └── Section │ │ │ │ │ └── FungibleAssetListSection+Reducer.swift │ │ │ ├── FungibleAssetList+Reducer.swift │ │ │ └── FungibleAssetList+View.swift │ │ │ ├── HelperViews │ │ │ ├── ArbitraryDataField │ │ │ │ ├── ArbitraryDataField+Helpers.swift │ │ │ │ ├── ArbitraryDataField+Models.swift │ │ │ │ └── ArbitraryDataFieldView.swift │ │ │ ├── AssetBehaviorsView.swift │ │ │ ├── AssetListSeparator.swift │ │ │ ├── AssetResourceDetails.swift │ │ │ ├── EmptyAssetListView.swift │ │ │ ├── GeneralHelperViews.swift │ │ │ ├── NFTHelperViews.swift │ │ │ └── ResourceBalance │ │ │ │ ├── ResourceBalance+Helpers.swift │ │ │ │ ├── ResourceBalance.swift │ │ │ │ ├── ResourceBalanceButton.swift │ │ │ │ ├── ResourceBalanceView+Helpers.swift │ │ │ │ ├── ResourceBalanceView.swift │ │ │ │ └── ResourceBalancesView.swift │ │ │ ├── HideResource │ │ │ ├── HIdeResource.swift │ │ │ └── HideResource+View.swift │ │ │ ├── NonFungibleAssetList │ │ │ ├── Components │ │ │ │ ├── Details │ │ │ │ │ ├── NonFungibleTokenDetails+Reducer.swift │ │ │ │ │ └── NonFungibleTokenDetails+View.swift │ │ │ │ └── Row │ │ │ │ │ ├── NonFungbileAssetRow+Reducer.swift │ │ │ │ │ └── NonFungibleAssetRow+View.swift │ │ │ ├── NonFungibleAssetList+Reducer.swift │ │ │ └── NonFungibleAssetList+View.swift │ │ │ ├── PoolUnitsList │ │ │ ├── Components │ │ │ │ ├── PoolUnitDetails+View.swift │ │ │ │ └── PoolUnitDetails.swift │ │ │ ├── PoolUnitsList+View.swift │ │ │ └── PoolUnitsList.swift │ │ │ └── StakeUnitList │ │ │ ├── Components │ │ │ ├── LSUDetails+View.swift │ │ │ ├── LSUDetails.swift │ │ │ ├── StakeSummaryView.swift │ │ │ ├── ValidatorHeaderView.swift │ │ │ └── ValidatorStakeView.swift │ │ │ ├── StakeUnitList+View.swift │ │ │ └── StakeUnitList.swift │ ├── Authorization │ │ ├── Authorization+View.swift │ │ └── Authorization.swift │ ├── CardCarousel │ │ ├── CardCarousel+Reducer.swift │ │ └── CardCarousel+View.swift │ ├── ChooseAccounts │ │ ├── ChooseAccounts+Reducer.swift │ │ ├── ChooseAccounts+View.swift │ │ └── Row │ │ │ ├── ChooseAccountsRow+View.swift │ │ │ └── ChooseAccountsRow.swift │ ├── ChoosePersonas │ │ ├── ChoosePersonas+View.swift │ │ └── ChoosePersonas.swift │ ├── ClaimWallet │ │ ├── ClaimWallet+Reducer.swift │ │ └── ClaimWallet+View.swift │ ├── CreateAccount │ │ ├── Children │ │ │ ├── NameAccount │ │ │ │ ├── NameAccount+Reducer.swift │ │ │ │ └── NameAccount+View.swift │ │ │ └── NewAccountCompletion │ │ │ │ ├── NewAccountCompletion+Reducer.swift │ │ │ │ └── NewAccountCompletion+View.swift │ │ └── Coordinator │ │ │ ├── CreateAccountCoordinator+Models.swift │ │ │ ├── CreateAccountCoordinator+Reducer.swift │ │ │ └── CreateAccountCoordinator+View.swift │ ├── CreatePersona │ │ ├── Children │ │ │ ├── IntroductionToPersonasView.swift │ │ │ └── NewPersonaCompletion │ │ │ │ ├── NewPersonaCompletion+Reducer.swift │ │ │ │ └── NewPersonaCompletion+View.swift │ │ └── Coordinator │ │ │ ├── CreatePersonaCoordinator+Models.swift │ │ │ ├── CreatePersonaCoordinator+Reducer.swift │ │ │ └── CreatePersonaCoordinator+View.swift │ ├── DApps │ │ ├── AllDapps │ │ │ ├── DAppsDirectory+AllDapps+View.swift │ │ │ └── DAppsDirectory+AllDapps.swift │ │ ├── AuthorizedDApps │ │ │ ├── AuthorizedDApps+View.swift │ │ │ └── AuthorizedDApps.swift │ │ ├── DAppsDirectory+View.swift │ │ ├── DAppsDirectory.swift │ │ └── Filtering │ │ │ ├── DAppDirectory+Filtering+View.swift │ │ │ ├── DAppDirectory+Filtering.swift │ │ │ ├── DAppTagsSelection+View.swift │ │ │ └── DAppTagsSelection.swift │ ├── DappInteractionFeature │ │ ├── Children │ │ │ ├── AccountPermission │ │ │ │ ├── AccountPermission+View.swift │ │ │ │ └── AccountPermission.swift │ │ │ ├── AccountPermissionChooseAccounts │ │ │ │ ├── AccountPermissionChooseAccounts+Reducer.swift │ │ │ │ └── AccountPermissionChooseAccounts+View.swift │ │ │ ├── DappInteractionCompletion │ │ │ │ ├── DappInteractionCompletion+View.swift │ │ │ │ └── DappInteractionCompletion.swift │ │ │ ├── DappOriginVerification │ │ │ │ ├── DappInteractionOriginVerification+View.swift │ │ │ │ └── DappInteractionOriginVerification.swift │ │ │ ├── Login │ │ │ │ ├── Coordinator │ │ │ │ │ ├── Login+View.swift │ │ │ │ │ └── Login.swift │ │ │ │ └── Row │ │ │ │ │ ├── PersonaRow+View.swift │ │ │ │ │ └── PersonaRow.swift │ │ │ ├── OneTimePersonaData │ │ │ │ ├── OneTimePersonaData+View.swift │ │ │ │ └── OneTimePersonaData.swift │ │ │ ├── PersonaDataPermission │ │ │ │ ├── PersonaDataPermission+View.swift │ │ │ │ ├── PersonaDataPermission.swift │ │ │ │ ├── PersonaDataPermissionBox+View.swift │ │ │ │ └── PersonaDataPermissionBox.swift │ │ │ └── ProofOfOwnership │ │ │ │ ├── ProofOfOwnership+View.swift │ │ │ │ └── ProofOfOwnership.swift │ │ ├── Coordinator │ │ │ ├── DappInteractionCoordinator+View.swift │ │ │ ├── DappInteractionCoordinator.swift │ │ │ ├── DappInteractionFlow+View.swift │ │ │ ├── DappInteractionFlow.swift │ │ │ ├── DappInteractionLoading+View.swift │ │ │ ├── DappInteractionLoading.swift │ │ │ └── DappInteractionModels.swift │ │ ├── Interactor │ │ │ ├── DappInteractor+ViewModifier.swift │ │ │ └── DappInteractor.swift │ │ └── Views │ │ │ ├── DappHeader.swift │ │ │ └── DappPermissionBox.swift │ ├── DappsAndPersonas │ │ ├── DappDetails │ │ │ ├── DappDetails+View.swift │ │ │ └── DappDetails.swift │ │ ├── PersonaDetails │ │ │ ├── PersonaDetails+View.swift │ │ │ └── PersonaDetails.swift │ │ └── Personas │ │ │ ├── Child │ │ │ ├── List │ │ │ │ ├── PersonaList+Reducer.swift │ │ │ │ └── PersonaList+View.swift │ │ │ └── Row │ │ │ │ ├── Persona+View.swift │ │ │ │ └── PersonaFeature.swift │ │ │ └── Coordinator │ │ │ ├── PersonasCoordinator+Reducer.swift │ │ │ └── PersonasCoordinator+View.swift │ ├── DebugInspectProfile │ │ ├── DebugInspectProfile+View.swift │ │ ├── DebugInspectProfile.swift │ │ └── InspectProfile+View.swift │ ├── DerivePublicKeys │ │ ├── DerivePublicKeys+View.swift │ │ └── DerivePublicKeys.swift │ ├── Discover │ │ ├── BlogPosts │ │ │ ├── BlogPostCard.swift │ │ │ ├── BlogPosts+View.swift │ │ │ ├── BlogPosts.swift │ │ │ ├── BlogPostsCarousel+View.swift │ │ │ └── BlogPostsCarousel.swift │ │ ├── Discover+View.swift │ │ ├── Discover.swift │ │ └── LearnAbout │ │ │ ├── LearnAbout+View.swift │ │ │ ├── LearnAbout.swift │ │ │ ├── LearnItemsList+View.swift │ │ │ └── LearnItemsList.swift │ ├── DisplayEntitiesControlledByMnemonic │ │ ├── DisplayEntitiesControlledByMnemonic+Reducer.swift │ │ └── DisplayEntitiesControlledByMnemonic+View.swift │ ├── EditPersonaFeature │ │ ├── EditPersona │ │ │ ├── EditPersona+View.swift │ │ │ └── EditPersona.swift │ │ ├── EditPersonaAddEntryKinds │ │ │ ├── EditPersonaAddEntryKinds+View.swift │ │ │ └── EditPersonaAddEntryKinds.swift │ │ ├── EditPersonaEntries │ │ │ ├── EditPersonaEntries+View.swift │ │ │ └── EditPersonaEntries.swift │ │ ├── EditPersonaEntry │ │ │ ├── EditPersonaEntry+View.swift │ │ │ └── EditPersonaEntry.swift │ │ ├── EditPersonaField │ │ │ ├── EditPersonaField+View.swift │ │ │ └── EditPersonaField.swift │ │ └── EditPersonaName │ │ │ ├── EditPersonaName+View.swift │ │ │ └── EditPersonaName.swift │ ├── FactorSourceAccess │ │ ├── Arculus │ │ │ ├── ArculusFactorSourceAccess+View.swift │ │ │ └── ArculusFactorSourceAccess.swift │ │ ├── FactorSourceAccess+Models.swift │ │ ├── FactorSourceAccess+View.swift │ │ ├── FactorSourceAccess+ViewState.swift │ │ ├── FactorSourceAccess.swift │ │ ├── OffDeviceMnemonic │ │ │ ├── OffDeviceMnemonicFactorSourceAccess+View.swift │ │ │ └── OffDeviceMnemonicFactorSourceAccess.swift │ │ ├── Password │ │ │ ├── PasswordFactorSourceAccess+View.swift │ │ │ └── PasswordFactorSourceAccess.swift │ │ └── PrivateFactorSource.swift │ ├── FeaturesPreviewer │ │ ├── FeaturesPreviewer.swift │ │ ├── PreviewOfSomeFeatureReducer │ │ │ ├── PreviewOfSomeFeatureReducer+View.swift │ │ │ ├── PreviewOfSomeFeatureReducer.swift │ │ │ └── PreviewResult │ │ │ │ ├── PreviewResult+View.swift │ │ │ │ └── PreviewResult.swift │ │ └── PreviewedFeature.swift │ ├── GatewaySettingsFeature │ │ ├── Children │ │ │ └── AddNewGateway │ │ │ │ ├── AddNewGateway+Reducer.swift │ │ │ │ └── AddNewGateway+View.swift │ │ ├── Components │ │ │ ├── GatewayList │ │ │ │ ├── GatewayList+Reducer.swift │ │ │ │ └── GatewayList+View.swift │ │ │ └── GatewayRow │ │ │ │ ├── GatewayRow+Reducer.swift │ │ │ │ └── GatewayRow+View.swift │ │ ├── GatewaySettings+Reducer.swift │ │ └── GatewaySettings+View.swift │ ├── HomeFeature │ │ ├── Children │ │ │ ├── AccountRow │ │ │ │ ├── Home+AccountRow+Reducer.swift │ │ │ │ └── Home+AccountRow+View.swift │ │ │ └── NPSSurvey │ │ │ │ ├── NPSSurvey+View.swift │ │ │ │ └── NPSSurvey.swift │ │ ├── Coordinator │ │ │ ├── Home+View.swift │ │ │ └── Home.swift │ │ └── Models │ │ │ ├── AccountWithInfo.swift │ │ │ └── AccountWithInfoHolder.swift │ ├── ImportOlympiaLedgerAccountsAndFactorSources │ │ ├── ImportOlympiaLedgerAccountsAndFactorSources+View.swift │ │ ├── ImportOlympiaLedgerAccountsAndFactorSources.swift │ │ ├── ImportOlympiaNameLedger+View.swift │ │ └── ImportOlympiaNameLedger.swift │ ├── InteractionReview │ │ ├── Components │ │ │ ├── ExpandableHeadingView.swift │ │ │ ├── HeaderView.swift │ │ │ ├── HeadingView.swift │ │ │ ├── InteractionInProgressView.swift │ │ │ ├── MessageView.swift │ │ │ ├── RawManifestView.swift │ │ │ ├── TransferLineView.swift │ │ │ └── ValidatorsView.swift │ │ ├── Destinations │ │ │ └── UnknownDappComponents │ │ │ │ ├── UnknownDappComponents+View.swift │ │ │ │ └── UnknownDappComponents.swift │ │ ├── Helpers │ │ │ ├── DisplayMode.swift │ │ │ ├── InteractionReview+Extra.swift │ │ │ ├── InteractionReview+Typealias.swift │ │ │ └── Kind.swift │ │ ├── InteractionReview.swift │ │ └── Sections │ │ │ ├── Accounts │ │ │ ├── Accounts+View.swift │ │ │ └── Accounts.swift │ │ │ ├── Dapps │ │ │ ├── InteractionReviewDapps+View.swift │ │ │ └── InteractionReviewDapps.swift │ │ │ ├── DepositExceptions │ │ │ └── DepositExceptionsView.swift │ │ │ ├── DepositSetting │ │ │ └── DepositSettingView.swift │ │ │ ├── Proofs │ │ │ ├── Proofs+View.swift │ │ │ └── Proofs.swift │ │ │ ├── Sections+Data.swift │ │ │ ├── Sections+ExecutionSummary.swift │ │ │ ├── Sections+ManifestSummary.swift │ │ │ ├── Sections+View.swift │ │ │ ├── Sections.swift │ │ │ └── Shield │ │ │ └── InteractionReview-ShieldView.swift │ ├── MainFeature │ │ ├── Main+Reducer.swift │ │ └── Main+View.swift │ ├── MnemonicFeature │ │ ├── DisplayMnemonic │ │ │ ├── DisplayMnemonic+View.swift │ │ │ └── DisplayMnemonic.swift │ │ ├── ImportMnemonic+View.swift │ │ ├── ImportMnemonic.swift │ │ ├── ImportMnemonicGrid │ │ │ ├── ImportMnemonicGrid+View.swift │ │ │ └── ImportMnemonicGrid.swift │ │ ├── ImportWord │ │ │ ├── ImportMnemonicWord+View.swift │ │ │ └── ImportMnemonicWord.swift │ │ └── VerifyMnemonic │ │ │ ├── VerifyMnemonic+View.swift │ │ │ └── VerifyMnemonic.swift │ ├── NewConnectionFeature │ │ ├── Children │ │ │ ├── LocalNetworkAuthorization │ │ │ │ ├── LocalNetworkPermission+Reducer.swift │ │ │ │ └── LocalNetworkPermission+View.swift │ │ │ ├── NewConnectionApproval │ │ │ │ ├── NewConnectionApproval+Reducer.swift │ │ │ │ └── NewConnectionApproval+View.swift │ │ │ └── NewConnectionName │ │ │ │ ├── NewConnectionName+Reducer.swift │ │ │ │ └── NewConnectionName+View.swift │ │ └── Coordinator │ │ │ ├── NewConnection+Reducer.swift │ │ │ └── NewConnection+View.swift │ ├── OnboardingFeature │ │ ├── Children │ │ │ └── Startup │ │ │ │ ├── OnboardingStartup+Reducer.swift │ │ │ │ └── OnboardingStartup+View.swift │ │ └── Coordinator │ │ │ ├── OnboardingCoordinator+Reducer.swift │ │ │ └── OnboardingCoordinator+View.swift │ ├── P2PLinksFeature │ │ └── Coordinator │ │ │ ├── P2PLinksFeature+Reducer.swift │ │ │ └── P2PLinksFeature+View.swift │ ├── PreAuthorizationReview │ │ ├── PollPreAuthorizationStatus │ │ │ ├── PollPreAuthorizationStatus+View.swift │ │ │ └── PollPreAuthorizationStatus.swift │ │ ├── PreAuthorizationReview+View.swift │ │ ├── PreAuthorizationReview.swift │ │ └── TimeFormatter │ │ │ └── TimeFormatter.swift │ ├── ProfileBackupsFeature │ │ ├── RestoreProfileFromBackup │ │ │ ├── Children │ │ │ │ ├── ImportSeedPhrasesFlow │ │ │ │ │ ├── ImportMnemonicForFactorSource+View.swift │ │ │ │ │ ├── ImportMnemonicForFactorSource.swift │ │ │ │ │ ├── ImportMnemonicsFlowCoordinator+View.swift │ │ │ │ │ └── ImportMnemonicsFlowCoordinator.swift │ │ │ │ ├── RecoverWalletWithoutProfile │ │ │ │ │ ├── Children │ │ │ │ │ │ ├── Completed │ │ │ │ │ │ │ ├── RecoverWalletControlWithBDFSComplete+View.swift │ │ │ │ │ │ │ └── RecoverWalletControlWithBDFSComplete.swift │ │ │ │ │ │ ├── Info │ │ │ │ │ │ │ ├── RecoverWalletControlWithBDFSOnly+View.swift │ │ │ │ │ │ │ └── RecoverWalletControlWithBDFSOnly.swift │ │ │ │ │ │ └── Start │ │ │ │ │ │ │ ├── RecoverWalletWithoutProfileStart+View.swift │ │ │ │ │ │ │ └── RecoverWalletWithoutProfileStart.swift │ │ │ │ │ └── Coordinator │ │ │ │ │ │ ├── RecoverWalletWithoutProfileCoordinator+View.swift │ │ │ │ │ │ └── RecoverWalletWithoutProfileCoordinator.swift │ │ │ │ └── SelectBackup │ │ │ │ │ ├── SelectBackup+Reducer.swift │ │ │ │ │ └── SelectBackup+View.swift │ │ │ └── Coordinator │ │ │ │ ├── RestoreProfileFromBackupCoordinator+View.swift │ │ │ │ └── RestoreProfileFromBackupCoordinator.swift │ │ └── Shared │ │ │ ├── EncryptOrDecryptProfile+Reducer.swift │ │ │ ├── EncryptOrDecryptProfile+View.swift │ │ │ └── ExportableProfileFile.swift │ ├── ScanQR │ │ ├── Children │ │ │ ├── CameraPermission │ │ │ │ ├── CameraPermission+Reducer.swift │ │ │ │ └── CameraPermission+View.swift │ │ │ └── ScanQR │ │ │ │ ├── ScanQR+Reducer.swift │ │ │ │ └── ScanQR+View.swift │ │ └── Coordinator │ │ │ ├── ScanQRCoordinator+Reducer.swift │ │ │ └── ScanQRCoordinator+View.swift │ ├── SecurityCenterFeature │ │ ├── ConfigurationBackup │ │ │ ├── ConfigurationBackup+Reducer.swift │ │ │ └── ConfigurationBackup+View.swift │ │ ├── SecurityCenter+Reducer.swift │ │ ├── SecurityCenter+View.swift │ │ └── SecurityFactors │ │ │ ├── Details │ │ │ ├── Arculus │ │ │ │ ├── ChangePIN │ │ │ │ │ ├── ArculusChangePIN-EnterNewPIN+View.swift │ │ │ │ │ ├── ArculusChangePIN-EnterNewPIN.swift │ │ │ │ │ ├── ArculusChangePIN-EnterOldPIN+View.swift │ │ │ │ │ └── ArculusChangePIN-EnterOldPIN.swift │ │ │ │ └── ForgotPIN │ │ │ │ │ ├── ArculusForgotPIN-EnterNewPIN+View.swift │ │ │ │ │ ├── ArculusForgotPIN-EnterNewPIN.swift │ │ │ │ │ ├── ArculusForgotPIN-InputSeedPhrase+View.swift │ │ │ │ │ └── ArculusForgotPIN-InputSeedPhrase.swift │ │ │ ├── FactorSourceDetail+View.swift │ │ │ └── FactorSourceDetail.swift │ │ │ ├── FactorSourcesList+View.swift │ │ │ ├── FactorSourcesList.swift │ │ │ ├── SecurityFactors+Reducer.swift │ │ │ └── SecurityFactors+View.swift │ ├── SelectFactorSource │ │ ├── SelectFactorSource+View.swift │ │ └── SelectFactorSource.swift │ ├── SettingsFeature │ │ ├── DebugSettings │ │ │ ├── Children │ │ │ │ ├── DebugFactorInstancesCacheContents │ │ │ │ │ ├── DebugFactorInstancesCacheContents+View.swift │ │ │ │ │ └── DebugFactorInstancesCacheContents.swift │ │ │ │ ├── DebugKeychainContents │ │ │ │ │ ├── DebugKeychainContents+View.swift │ │ │ │ │ └── DebugKeychainContents.swift │ │ │ │ ├── DebugKeychainTest │ │ │ │ │ ├── DebugKeychainTest+View.swift │ │ │ │ │ └── DebugKeychainTest.swift │ │ │ │ ├── DebugManageFactorSourcesFeature │ │ │ │ │ ├── DebugManageFactorSources+View.swift │ │ │ │ │ └── DebugManageFactorSources.swift │ │ │ │ └── DebugUserDefaultsContents │ │ │ │ │ ├── DebugUserDefaultsContents+View.swift │ │ │ │ │ └── DebugUserDefaultsContents.swift │ │ │ └── Coordinator │ │ │ │ ├── DebugSettingsCoordinator+Reducer.swift │ │ │ │ └── DebugSettingsCoordinator+View.swift │ │ ├── Preferences │ │ │ ├── DefaultDepositGuarantees │ │ │ │ ├── DefaultDepositGuarantees+Reducer.swift │ │ │ │ └── DefaultDepositGuarantees+View.swift │ │ │ ├── HiddenAssets │ │ │ │ ├── HiddenAssets+View.swift │ │ │ │ └── HiddenAssets.swift │ │ │ ├── HiddenEntities │ │ │ │ ├── HiddenEntities+View.swift │ │ │ │ └── HiddenEntities.swift │ │ │ ├── Preferences+View.swift │ │ │ ├── Preferences.swift │ │ │ └── ThemeSelection │ │ │ │ ├── ThemeSelection+View.swift │ │ │ │ └── ThemeSelection.swift │ │ ├── Settings+Reducer.swift │ │ ├── Settings+View.swift │ │ ├── SettingsRow.swift │ │ └── Troubleshooting │ │ │ ├── FactoryReset │ │ │ ├── FactoryReset+Reducer.swift │ │ │ └── FactoryReset+View.swift │ │ │ ├── ImportFromOlympiaLegacyWallet │ │ │ ├── Children │ │ │ │ ├── AccountsToImport │ │ │ │ │ ├── AccountsToImport+View.swift │ │ │ │ │ └── AccountsToImport.swift │ │ │ │ ├── Completion │ │ │ │ │ ├── CompletionMigrateOlympiaAccountsToBabylon+View.swift │ │ │ │ │ └── CompletionMigrateOlympiaAccountsToBabylon.swift │ │ │ │ └── ScanMultipleQRCodes │ │ │ │ │ ├── ScanMultipleOlympiaQRCodes+View.swift │ │ │ │ │ └── ScanMultipleOlympiaQRCodes.swift │ │ │ └── Coordinator │ │ │ │ ├── ImportOlympiaWalletCoordinator+View.swift │ │ │ │ └── ImportOlympiaWalletCoordinator.swift │ │ │ ├── ManualAccountRecoveryScan │ │ │ ├── ManualAccountRecoveryCoordinator+Reducer.swift │ │ │ └── ManualAccountRecoveryCoordinator+View.swift │ │ │ ├── Troubleshooting+View.swift │ │ │ └── Troubleshooting.swift │ ├── ShieldSetup │ │ ├── AddShieldBuilderSeedingFactors │ │ │ ├── AddShieldBuilderSeedingFactorsCoordinator+View.swift │ │ │ ├── AddShieldBuilderSeedingFactorsCoordinator.swift │ │ │ └── Children │ │ │ │ ├── AddShieldBuilderSeedingFactors-AddFactorSource+View.swift │ │ │ │ ├── AddShieldBuilderSeedingFactors-AddFactorSource.swift │ │ │ │ ├── AddShieldBuilderSeedingFactors-CompletionView.swift │ │ │ │ └── AddShieldBuilderSeedingFactors-IntroView.swift │ │ ├── ChooseFactorSource │ │ │ ├── Children │ │ │ │ ├── ChooseFactorSourceKind+View.swift │ │ │ │ └── ChooseFactorSourceKind.swift │ │ │ ├── ChooseFactorSourceCoordinator+View.swift │ │ │ └── ChooseFactorSourceCoordinator.swift │ │ ├── EditSecurityShieldCoordinator+View.swift │ │ ├── EditSecurityShieldCoordinator.swift │ │ ├── NameShield │ │ │ ├── NameShield+Reducer.swift │ │ │ └── NameShield+View.swift │ │ ├── Onboarding │ │ │ ├── ShieldSetupOnboarding+Reducer.swift │ │ │ ├── ShieldSetupOnboarding+View.swift │ │ │ └── ShieldSetupOnboardingStepView.swift │ │ ├── PickShieldBuilderSeedingFactors │ │ │ ├── Children │ │ │ │ ├── PickShieldBuilderSeedingFactors+Reducer.swift │ │ │ │ └── PickShieldBuilderSeedingFactors+View.swift │ │ │ ├── PickShieldBuilderSeedingFactorsCoordinator+View.swift │ │ │ └── PickShieldBuilderSeedingFactorsCoordinator.swift │ │ ├── RolesSetup │ │ │ ├── Children │ │ │ │ ├── PrimaryRoleSetup │ │ │ │ │ ├── PrimaryRoleSetup+Reducer.swift │ │ │ │ │ ├── PrimaryRoleSetup+View.swift │ │ │ │ │ └── SelectNumberOfFactorsView.swift │ │ │ │ └── RecoveryRoleSetup │ │ │ │ │ ├── RecoveryRoleSetup+Reducer.swift │ │ │ │ │ ├── RecoveryRoleSetup+View.swift │ │ │ │ │ └── SelectEmergencyFallbackPeriodView.swift │ │ │ ├── RolesSetupCoordinator+View.swift │ │ │ └── RolesSetupCoordinator.swift │ │ ├── SecurityShieldBuilder+SharedState.swift │ │ ├── ShieldSetupCoordinator+View.swift │ │ ├── ShieldSetupCoordinator.swift │ │ └── TodoView.swift │ ├── ShieldsList │ │ ├── SecurityStructureOfFactorSourcesView+View.swift │ │ ├── SelectShield+View.swift │ │ ├── SelectShield.swift │ │ ├── ShieldTemplateDetails+View.swift │ │ ├── ShieldTemplateDetails.swift │ │ ├── ShieldsList+Reducer.swift │ │ └── ShieldsList+View.swift │ ├── Signing │ │ ├── Error+FactorSources.swift │ │ ├── Signer.swift │ │ ├── Signing+View.swift │ │ ├── Signing.swift │ │ └── SigningPurpose.swift │ ├── SplashFeature │ │ ├── Splash+View.swift │ │ └── Splash.swift │ ├── SpotCheck │ │ ├── SpotCheck+View.swift │ │ └── SpotCheck.swift │ ├── TransactionHistory │ │ ├── TransactionHistory+Reducer.swift │ │ ├── TransactionHistory+TableView.swift │ │ ├── TransactionHistory+View.swift │ │ ├── TransactionHistoryFilters+Reducer.swift │ │ └── TransactionHistoryFilters+View.swift │ └── TransactionReviewFeature │ │ ├── CustomizeFees │ │ ├── AdvancedFeesCustomization+View.swift │ │ ├── AdvancedFeesCustomization.swift │ │ ├── CustomizeFees+View.swift │ │ ├── CustomizeFees.swift │ │ ├── FeesView.swift │ │ ├── NormalFeesCustomization+View.swift │ │ └── NormalFeesCustomization.swift │ │ ├── SelectFeePayer │ │ ├── SelectFeePayer+View.swift │ │ └── SelectFeePayer.swift │ │ ├── Signing │ │ ├── SigningTooManyFactorsSkipped+View.swift │ │ └── SigningTooManyFactorsSkipped.swift │ │ ├── SubmitTransaction │ │ ├── SubmitTransaction+View.swift │ │ └── SubmitTransaction.swift │ │ ├── TrackedPoolInteraction.swift │ │ ├── TrackedValidatorInteraction.swift │ │ ├── TransactionReview+View.swift │ │ ├── TransactionReview.swift │ │ ├── TransactionReviewGuarantees │ │ ├── MinimumPercentageStepper │ │ │ ├── MinimumPercentageStepper+View.swift │ │ │ └── MinimumPercentageStepper.swift │ │ ├── TransactionReviewGuarantees+View.swift │ │ └── TransactionReviewGuarantees.swift │ │ └── TransactionReviewNetworkFee │ │ ├── TransactionReviewNetworkFee+View.swift │ │ └── TransactionReviewNetworkFee.swift ├── MIGRATE_TO_SARGON │ ├── Stage0 │ │ └── Stage0MigrateToSargon+Accounts.swift │ ├── Stage1 │ │ ├── Stage1MigrateToSargon+Account.swift │ │ ├── Stage1MigrateToSargon+AssetException.swift │ │ ├── Stage1MigrateToSargon+BIP39+Lookup.swift │ │ ├── Stage1MigrateToSargon+DepositAddressExceptionRule.swift │ │ ├── Stage1MigrateToSargon+DerivationPath.swift │ │ ├── Stage1MigrateToSargon+DisplayName.swift │ │ ├── Stage1MigrateToSargon+FactorInstance.swift │ │ ├── Stage1MigrateToSargon+FactorSourceCryptoParameters.swift │ │ ├── Stage1MigrateToSargon+Factors.swift │ │ ├── Stage1MigrateToSargon+Header.swift │ │ ├── Stage1MigrateToSargon+HierarchicalDeterministicPublicKey.swift │ │ ├── Stage1MigrateToSargon+MnemonicWithPassphrase.swift │ │ ├── Stage1MigrateToSargon+NetworkDefinition.swift │ │ ├── Stage1MigrateToSargon+OnLedgerSettings.swift │ │ ├── Stage1MigrateToSargon+Persona.swift │ │ ├── Stage1MigrateToSargon+SignatureOfEntity.swift │ │ └── Stage1MigrateToSargon+ThirdPartyDeposits.swift │ └── Stage2 │ │ ├── Atoms │ │ ├── Stage2MigrateToSargon+AppPreferences.swift │ │ ├── Stage2MigrateToSargon+Gateways.swift │ │ ├── Stage2MigrateToSargon+LedgerHardwareWalletFactorSource+New.swift │ │ ├── Stage2MigrateToSargon+Persona.swift │ │ ├── Stage2MigrateToSargon+ProfileNetwork.swift │ │ ├── Stage2MigrateToSargon+SharedPersonaData.swift │ │ └── Stage2MigrateToSargpn+PersonaData.swift │ │ ├── Profile │ │ ├── Profile │ │ │ ├── Profile+Account+Add.swift │ │ │ ├── Profile+AuthorizedDapps+Edit.swift │ │ │ ├── Profile+DetailsForConnectedDapp.swift │ │ │ ├── Profile+Persona+Add.swift │ │ │ └── Profile+UpdateNetwork.swift │ │ ├── ProfileNetwork+Entity+Lookup.swift │ │ └── ViaProfile │ │ │ └── Stage2MigrateToSargon+AppPreferences+ViaProfile.swift │ │ └── RadixConnect │ │ └── Stage2MigrateToSargon+RadixConnectModels+Logic.swift ├── Prelude │ ├── Constants.swift │ ├── DefaultValueDecodable.swift │ ├── EmailAddress.swift │ ├── ErrorQueue │ │ ├── ErrorQueue+Interface.swift │ │ ├── ErrorQueue+Live.swift │ │ └── ErrorQueue+Test.swift │ ├── Extensions │ │ ├── Array+Identifiable.swift │ │ ├── Async+Extra.swift │ │ ├── AsyncExtension+Sendable.swift │ │ ├── BitArray+Extra.swift │ │ ├── ByteArray+Hex.swift │ │ ├── Collection+Extra.swift │ │ ├── CryptoKit │ │ │ └── PublicKey+Extensions.swift │ │ ├── CustomDumpConformance.swift │ │ ├── Data+Hex.swift │ │ ├── Date+Extension.swift │ │ ├── Dispatch+Extra.swift │ │ ├── Effect+Extra.swift │ │ ├── Either+Extra.swift │ │ ├── Foundation │ │ │ ├── Data_Extensions.swift │ │ │ ├── JSON+ISO8601.swift │ │ │ ├── LocalizedError+Equatable.swift │ │ │ ├── Result+Async.swift │ │ │ ├── SafeCompare.swift │ │ │ ├── String+Extra.swift │ │ │ ├── URL+Extra.swift │ │ │ └── URLRequest+Extra.swift │ │ ├── Identifiable+RawRepresentable.swift │ │ ├── Identified+Extensions.swift │ │ ├── IdentifiedArrayOf+Extensions.swift │ │ ├── KeyPath+Sendable.swift │ │ ├── NonEmpty+Extra.swift │ │ ├── OrderedSet+Extensions.swift │ │ ├── RandomBytes.swift │ │ ├── Swift.DecodingError+Equatable.swift │ │ ├── Tagged+Comparable.swift │ │ ├── Tuple+Extra.swift │ │ └── Unit.swift │ ├── Functions.swift │ ├── HexCodable.swift │ ├── InsecureRandomNumberGeneratorWithSeed.swift │ ├── JSON │ │ ├── JSONDecoder+Live.swift │ │ └── JSONEncoder+Live.swift │ ├── JSONValue.swift │ ├── Logger.swift │ ├── NoopError.swift │ ├── QRAddressPrefix.swift │ ├── RawRepresentable+Extensions.swift │ ├── Sorted │ │ └── Sorted.swift │ ├── Throwable.swift │ ├── UInt11.swift │ ├── UnknownCaseDecodable.swift │ └── Validation │ │ └── Validation.swift ├── RadixConnect │ ├── RadixConnect │ │ ├── Mobile │ │ │ ├── RadixConnectMobile.swift │ │ │ └── RadixConnectMobileSessionStorage.swift │ │ ├── RTC │ │ │ ├── DataChannel │ │ │ │ ├── DataChannelClient.swift │ │ │ │ └── DataChannelMessage │ │ │ │ │ ├── DataChannelAssembledMessage.swift │ │ │ │ │ ├── DataChannelMessage+Codable.swift │ │ │ │ │ └── DataChannelMessage.swift │ │ │ ├── Infrastructure │ │ │ │ ├── AsyncWebSocket.swift │ │ │ │ └── WebRTC │ │ │ │ │ ├── RTCDataChannel+Delegate.swift │ │ │ │ │ ├── RTCPeerConnection+PeerConnection.swift │ │ │ │ │ ├── RTCPeerConnectionAsyncDelegate.swift │ │ │ │ │ └── WebRTCFactory.swift │ │ │ ├── Models │ │ │ │ ├── RTCPrimitive.swift │ │ │ │ └── RemoteClientID.swift │ │ │ ├── PeerConnection │ │ │ │ ├── PeerConnectionClient.swift │ │ │ │ ├── PeerConnectionDelegate.swift │ │ │ │ └── PeerConnectionNegotiator.swift │ │ │ ├── RTCClients.swift │ │ │ └── SignalingClient │ │ │ │ ├── ClientMessage.swift │ │ │ │ ├── IncomingMessage │ │ │ │ ├── IncomingMessage+Decoding.swift │ │ │ │ └── IncomingMessage.swift │ │ │ │ ├── SignalingClient.swift │ │ │ │ ├── SignalingClientFactory.swift │ │ │ │ └── SignalingClientTypes.swift │ │ └── Utils │ │ │ ├── Async.swift │ │ │ └── Hashing.swift │ └── RadixConnectModels │ │ ├── RadixConnectConstants.swift │ │ └── Types.swift ├── RadixWalletBeta.entitlements ├── RadixWalletDebug-Alpha.entitlements ├── RadixWalletDebug-Dev.entitlements ├── RadixWalletDebug-PreAlpha.entitlements ├── RadixWalletRelease.entitlements ├── SargonExtensions │ ├── ArculusCSDKDriver.swift │ ├── NFCSessionClient.swift │ ├── SargonHostInteractor.swift │ └── SargonSecureStorageDriver.swift └── WalletApp.swift ├── RadixWalletTests ├── Clients │ ├── CacheClientTests │ │ └── CacheClientTests.swift │ ├── DiskPersistenceClientTests │ │ └── DiskPersistenceClientTests.swift │ ├── FactorSourcesClientLiveTests │ │ └── FactorSourcesClientLiveTests.swift │ ├── FaucetClientTests │ │ └── FaucetClientTests.swift │ ├── ImportLegacyWalletClientTests │ │ ├── ImportLegacyWalletClientTests.swift │ │ └── TestVectors │ │ │ └── import_olympia_wallet_parse_test.json │ ├── KeychainClientTests │ │ └── KeychainHolderTests.swift │ ├── OnLedgerEntitiesClientTests │ │ ├── OnLedgerEntitiesClientTests.swift │ │ └── TestVectors │ │ │ ├── behaviors1.json │ │ │ └── behaviors2.json │ ├── ROLAClientTests │ │ ├── ROLAClientTests.swift │ │ └── TestVectors │ │ │ └── rola_challenge_payload_hash_vectors.json │ ├── SecureStorageClientTests │ │ └── SecureStorageClientTests.swift │ ├── TokenPriceCientTests │ │ └── TokenPriceCientTests.swift │ └── TransactionClientTests │ │ └── TransactionClientTests.swift ├── Core │ ├── FeaturePreludeTests │ │ └── Validation+ExtraTests.swift │ └── LedgerModelsTests │ │ └── LedgerModelTests.swift ├── Features │ ├── AccountDetailsFeatureTests │ │ └── AccountDetailsFeatureTests.swift │ ├── AccountPreferencesTests │ │ └── AccountPreferencesTests.swift │ ├── AppFeatureTests │ │ └── AppFeatureTests.swift │ ├── AssetTransferTests │ │ └── AssetTransferDepositRuleTests.swift │ ├── DappInteractionFeatureTests │ │ └── DappInteractorTests.swift │ ├── GatewaySettingsFeatureTests │ │ └── GatewaySettingsFeatureTests.swift │ ├── ImportMnemonicGridTests.swift │ ├── MainFeatureTests │ │ └── MainFeatureTests.swift │ ├── NewConnectionFeatureTests │ │ └── NewConnectionFeatureTests.swift │ ├── PreAuthorizationReviewTests │ │ └── PreAuthorizationReviewTests.swift │ ├── SettingsFeatureTests │ │ └── SettingsViewStateTests.swift │ ├── SplashFeatureTests │ │ └── SplashFeatureTests.swift │ ├── TransactionReviewFeatureTests │ │ └── CustomizeFeePayerTests.swift │ └── TransactionSigningFeatureTests │ │ └── TransactionSigningFeatureTests.swift ├── PreludeTests │ ├── DataExtensionTests.swift │ ├── DataHex │ │ ├── DataToHexStringTests.swift │ │ └── HexStringToDataTests.swift │ ├── IdentifiedArrayOf+Mutation+Position.swift │ ├── KeychainClientTests │ │ └── KeychainClientTests.swift │ ├── Sorted │ │ └── SortedPropertyWrapperTests.swift │ ├── UserDefaultsClientTests │ │ └── UserDefaultsClientTests.swift │ └── ValidationTests │ │ └── ValidationTests.swift ├── ProfileTests │ └── EntitiesHidingTests.swift ├── RadixConnect │ ├── RadixConnectModelsTests │ │ └── RadixConnectModelsTest.swift │ └── RadixConnectTests │ │ ├── DataChannel │ │ ├── DataChannelClientTests.swift │ │ └── PackagesEncodingDecodingTests.swift │ │ ├── Helpers │ │ ├── DataChannelMocks.swift │ │ ├── PeerConnectionMocks.swift │ │ ├── RadixConnectCustomData.swift │ │ ├── RadixConnectJSONValues.swift │ │ └── WebSocketClientMock.swift │ │ ├── Mobile │ │ └── SessionStorageTests.swift │ │ ├── Negotiation │ │ ├── PeerConnectionNegotiatorTests.swift │ │ └── RadixConnectE2E.swift │ │ └── SignalingServerClient │ │ └── SignalingServerClientTests.swift ├── RadixWallet.xctestplan └── TestExtensions │ ├── JSON+Sendable.swift │ ├── Misc+Extensions.swift │ ├── MockURLProtocol.swift │ ├── NSError+TestValue.swift │ ├── TestCase.swift │ ├── TestFixture.swift │ ├── TestUtils.swift │ └── TimeLimit.swift ├── SETUP_DEV.md ├── crowdin.yml ├── fastlane ├── .env ├── .env.ios ├── .env.ios.alpha ├── .env.ios.beta ├── .env.ios.dev ├── .env.ios.pre-alpha ├── .env.ios.release ├── Fastfile ├── Pluginfile └── README.md ├── scripts ├── bootstrap ├── git-format-staged └── pre-commit ├── swiftgen.yml └── templates └── Xcode ├── TCA Client.xctemplate ├── TemplateIcon.png ├── TemplateIcon@2x.png ├── TemplateInfo.plist ├── ___FILEBASENAME___+Interface.swift ├── ___FILEBASENAME___+Live.swift └── ___FILEBASENAME___+Test.swift ├── TCA Feature.xctemplate ├── TemplateIcon.png ├── TemplateIcon@2x.png ├── TemplateInfo.plist ├── ___FILEBASENAME___+View.swift └── ___FILEBASENAME___.swift └── TCA Observable Feature.xctemplate ├── TemplateIcon.png ├── TemplateIcon@2x.png ├── TemplateInfo.plist ├── ___FILEBASENAME___+View.swift └── ___FILEBASENAME___.swift /.assetsReadme/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.assetsReadme/app_icon_256.png -------------------------------------------------------------------------------- /.assetsReadme/screenshots/dapp_request_account_permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.assetsReadme/screenshots/dapp_request_account_permission.png -------------------------------------------------------------------------------- /.assetsReadme/screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.assetsReadme/screenshots/home.png -------------------------------------------------------------------------------- /.assetsReadme/screenshots/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.assetsReadme/screenshots/start.png -------------------------------------------------------------------------------- /.assetsReadme/screenshots/transaction_review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.assetsReadme/screenshots/transaction_review.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/babylon-wallet-ios.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.idea/babylon-wallet-ios.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.2 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/.swiftformat -------------------------------------------------------------------------------- /.xcode-version: -------------------------------------------------------------------------------- 1 | 16.3 2 | -------------------------------------------------------------------------------- /Aux/Config/Common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Common.xcconfig -------------------------------------------------------------------------------- /Aux/Config/Project/Project-Alpha.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Project/Project-Alpha.xcconfig -------------------------------------------------------------------------------- /Aux/Config/Project/Project-Beta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Project/Project-Beta.xcconfig -------------------------------------------------------------------------------- /Aux/Config/Project/Project-Debug-Opt.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Project/Project-Debug-Opt.xcconfig -------------------------------------------------------------------------------- /Aux/Config/Project/Project-Dev.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Project/Project-Dev.xcconfig -------------------------------------------------------------------------------- /Aux/Config/Project/Project-PreAlpha.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Project/Project-PreAlpha.xcconfig -------------------------------------------------------------------------------- /Aux/Config/Project/Project-Release-Opt.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Project/Project-Release-Opt.xcconfig -------------------------------------------------------------------------------- /Aux/Config/Project/Project-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Project/Project-Release.xcconfig -------------------------------------------------------------------------------- /Aux/Config/Project/Project-Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Project/Project-Shared.xcconfig -------------------------------------------------------------------------------- /Aux/Config/Project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/Project/README.md -------------------------------------------------------------------------------- /Aux/Config/iOS/iOS-alpha.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/iOS/iOS-alpha.xcconfig -------------------------------------------------------------------------------- /Aux/Config/iOS/iOS-beta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/iOS/iOS-beta.xcconfig -------------------------------------------------------------------------------- /Aux/Config/iOS/iOS-dev-test.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/iOS/iOS-dev-test.xcconfig -------------------------------------------------------------------------------- /Aux/Config/iOS/iOS-dev.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/iOS/iOS-dev.xcconfig -------------------------------------------------------------------------------- /Aux/Config/iOS/iOS-preAlpha.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/iOS/iOS-preAlpha.xcconfig -------------------------------------------------------------------------------- /Aux/Config/iOS/iOS-release-opt.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/iOS/iOS-release-opt.xcconfig -------------------------------------------------------------------------------- /Aux/Config/iOS/iOS-release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/iOS/iOS-release.xcconfig -------------------------------------------------------------------------------- /Aux/Config/iOS/iOS-shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Config/iOS/iOS-shared.xcconfig -------------------------------------------------------------------------------- /Aux/GoogleService-Info-Sample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/GoogleService-Info-Sample.plist -------------------------------------------------------------------------------- /Aux/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Aux/Radix-Wallet--iOS--Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/Radix-Wallet--iOS--Info.plist -------------------------------------------------------------------------------- /Aux/SensitiveInfo-Sample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/SensitiveInfo-Sample.plist -------------------------------------------------------------------------------- /Aux/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Aux/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PreviewApps/AnswerSecurityQuestionsPreview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/AnswerSecurityQuestionsPreview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PreviewApps/AssetsFeaturePreview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/AssetsFeaturePreview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PreviewApps/AssetsFeaturePreview/AssetsFeaturePreview.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/AssetsFeaturePreview/AssetsFeaturePreview.entitlements -------------------------------------------------------------------------------- /PreviewApps/AssetsFeaturePreview/AssetsFeaturePreviewApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/AssetsFeaturePreview/AssetsFeaturePreviewApp.swift -------------------------------------------------------------------------------- /PreviewApps/ImportMnemonicPreview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/ImportMnemonicPreview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PreviewApps/ImportMnemonicPreview/ImportMnemonicPreviewApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/ImportMnemonicPreview/ImportMnemonicPreviewApp.swift -------------------------------------------------------------------------------- /PreviewApps/ManageSecurityStructurePreview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/ManageSecurityStructurePreview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PreviewApps/ManageTrustedContactPreview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/ManageTrustedContactPreview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PreviewApps/OnboardingPreview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/OnboardingPreview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PreviewApps/OnboardingPreview/OnboardingPreview.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/OnboardingPreview/OnboardingPreview.entitlements -------------------------------------------------------------------------------- /PreviewApps/OnboardingPreview/OnboardingPreviewApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/OnboardingPreview/OnboardingPreviewApp.swift -------------------------------------------------------------------------------- /PreviewApps/PersonaDetailsPreview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/PersonaDetailsPreview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PreviewApps/PersonaDetailsPreview/PersonaDetailsPreview.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/PersonaDetailsPreview/PersonaDetailsPreview.entitlements -------------------------------------------------------------------------------- /PreviewApps/PersonaDetailsPreview/PersonaDetailsPreviewApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/PersonaDetailsPreview/PersonaDetailsPreviewApp.swift -------------------------------------------------------------------------------- /PreviewApps/SecurityStructureConfigurationListPreview/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/PreviewApps/SecurityStructureConfigurationListPreview/ContentView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/README.md -------------------------------------------------------------------------------- /RadixWallet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RadixWallet.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RadixWallet.xcodeproj/xcshareddata/xcschemes/Radix Wallet Alpha.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet.xcodeproj/xcshareddata/xcschemes/Radix Wallet Alpha.xcscheme -------------------------------------------------------------------------------- /RadixWallet.xcodeproj/xcshareddata/xcschemes/Radix Wallet Beta.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet.xcodeproj/xcshareddata/xcschemes/Radix Wallet Beta.xcscheme -------------------------------------------------------------------------------- /RadixWallet.xcodeproj/xcshareddata/xcschemes/Radix Wallet Dev.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet.xcodeproj/xcshareddata/xcschemes/Radix Wallet Dev.xcscheme -------------------------------------------------------------------------------- /RadixWallet.xcodeproj/xcshareddata/xcschemes/Radix Wallet PROD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet.xcodeproj/xcshareddata/xcschemes/Radix Wallet PROD.xcscheme -------------------------------------------------------------------------------- /RadixWallet.xcodeproj/xcshareddata/xcschemes/RadixWalletTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet.xcodeproj/xcshareddata/xcschemes/RadixWalletTests.xcscheme -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.alpha.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.alpha.appiconset/Contents.json -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-20@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-20@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-29@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-29@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-40@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-40@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-76@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-76@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPad-83.5@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-20@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-20@3x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-29@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-29@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-29@3x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-40@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-40@3x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-57@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-57@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-60@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~iPhone-60@3x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-128@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-128@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-128@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-16@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-16@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-16@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-256@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-256@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-256@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-32@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-32@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-32@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-512@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/AppIcon~macOS-512@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-20@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-20@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-29@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-29@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-40@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-40@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-76@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/AppIcon~iPad-76@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.beta.appiconset/Contents.json -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-20@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-20@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-29@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-29@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-40@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-40@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-76@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~iPad-76@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~macOS-16@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~macOS-16@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~macOS-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~macOS-16@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~macOS-32@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~macOS-32@1x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~macOS-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/AppIcon~macOS-32@2x.png -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/AppIcon.dev.appiconset/Contents.json -------------------------------------------------------------------------------- /RadixWallet/AppIcon.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/AppIcon.xcassets/Contents.json -------------------------------------------------------------------------------- /RadixWallet/BuildConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/BuildConfiguration.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AccountLockersClient/AccountLockerClaimDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AccountLockersClient/AccountLockerClaimDetails.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AccountLockersClient/AccountLockersClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AccountLockersClient/AccountLockersClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AccountLockersClient/AccountLockersClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AccountLockersClient/AccountLockersClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AccountsClient/AccountsClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AccountsClient/AccountsClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AccountsClient/AccountsClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AccountsClient/AccountsClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AccountsClient/AccountsClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AccountsClient/AccountsClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AppEventsClient/AppEventsClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AppEventsClient/AppEventsClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AppEventsClient/AppEventsClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AppEventsClient/AppEventsClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AppEventsClient/AppEventsClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AppEventsClient/AppEventsClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AppPreferencesClient/AppPreferencesClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AppPreferencesClient/AppPreferencesClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AppPreferencesClient/AppPreferencesClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AppPreferencesClient/AppPreferencesClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AppsFlyerClient/AppsFlyerClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AppsFlyerClient/AppsFlyerClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AppsFlyerClient/AppsFlyerClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AppsFlyerClient/AppsFlyerClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ArculusCardClient/ArculusCardClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ArculusCardClient/ArculusCardClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ArculusCardClient/ArculusCardClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ArculusCardClient/ArculusCardClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ArculusCardClient/ArculusCardClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ArculusCardClient/ArculusCardClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AuthorizedDappsClient/AuthorizedDappsClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AuthorizedDappsClient/AuthorizedDappsClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/AuthorizedDappsClient/AuthorizedDappsClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/AuthorizedDappsClient/AuthorizedDappsClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/BlogPostsClient/BlogPostsClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/BlogPostsClient/BlogPostsClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/BlogPostsClient/BlogPostsClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/BlogPostsClient/BlogPostsClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/BlogPostsClient/BlogPostsClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/BlogPostsClient/BlogPostsClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/BootstrapClient/BootstrapClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/BootstrapClient/BootstrapClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/BootstrapClient/BootstrapClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/BootstrapClient/BootstrapClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/CacheClient/CacheClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/CacheClient/CacheClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/CacheClient/CacheClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/CacheClient/CacheClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/CacheClient/CacheClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/CacheClient/CacheClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/CloudBackupClient/CloudBackupClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/CloudBackupClient/CloudBackupClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/CloudBackupClient/CloudBackupClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/CloudBackupClient/CloudBackupClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/CloudBackupClient/CloudBackupClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/CloudBackupClient/CloudBackupClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ContactSupportClient/ContactSupportClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ContactSupportClient/ContactSupportClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ContactSupportClient/ContactSupportClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ContactSupportClient/ContactSupportClient.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/DAppsDirectoryClient/DAppsDirectoryClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/DAppsDirectoryClient/DAppsDirectoryClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/DAppsDirectoryClient/DAppsDirectoryClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/DAppsDirectoryClient/DAppsDirectoryClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/DappInteractionClient/DappInteractionClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/DappInteractionClient/DappInteractionClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/DappInteractionClient/DappInteractionClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/DappInteractionClient/DappInteractionClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/DeepLinkHandlerClient/DeepLinkHandlerClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/DeepLinkHandlerClient/DeepLinkHandlerClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/DeepLinkHandlerClient/DeepLinkHandlerClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/DeepLinkHandlerClient/DeepLinkHandlerClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/DiskPersistenceClient/DiskPersistenceClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/DiskPersistenceClient/DiskPersistenceClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/DiskPersistenceClient/DiskPersistenceClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/DiskPersistenceClient/DiskPersistenceClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/FactorSourcesClient/FactorSourcesClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/FactorSourcesClient/FactorSourcesClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/FactorSourcesClient/FactorSourcesClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/FactorSourcesClient/FactorSourcesClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/FactorSourcesClient/FactorSourcesClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/FactorSourcesClient/FactorSourcesClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/FaucetClient/FaucetClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/FaucetClient/FaucetClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/FaucetClient/FaucetClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/FaucetClient/FaucetClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/FaucetClient/FaucetClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/FaucetClient/FaucetClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/AUXILARY/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/AUXILARY/Extensions.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/AUXILARY/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/AUXILARY/Models.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/AccountLockerAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/AccountLockerAddress.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/AtLedgerStateMixin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/AtLedgerStateMixin.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/CursorLimitMixin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/CursorLimitMixin.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/EntityMetadataItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/EntityMetadataItem.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/EntityNotFoundError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/EntityNotFoundError.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/EventsItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/EventsItem.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/FromLedgerStateMixin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/FromLedgerStateMixin.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/InternalServerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/InternalServerError.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/InvalidEntityError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/InvalidEntityError.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/InvalidRequestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/InvalidRequestError.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/LedgerState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/LedgerState.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/LedgerStateMixin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/LedgerStateMixin.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/LedgerStateSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/LedgerStateSelector.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/ManifestClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/ManifestClass.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataBoolValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataBoolValue.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataDecimalValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataDecimalValue.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataI32Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataI32Value.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataI64Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataI64Value.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataInstantValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataInstantValue.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataOriginValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataOriginValue.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataU32Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataU32Value.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataU64Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataU64Value.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataU8Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataU8Value.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataUrlValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataUrlValue.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataValueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/MetadataValueType.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/NonFungibleIdType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/NonFungibleIdType.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/NotSyncedUpError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/NotSyncedUpError.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/ObjectModuleId.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/ObjectModuleId.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/PackageVmType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/PackageVmType.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/PublicKeyHashType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/PublicKeyHashType.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/PublicKeyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/PublicKeyType.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/RoleKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/RoleKey.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/RoyaltyAmount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/RoyaltyAmount.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/ScryptoSborValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/ScryptoSborValue.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Generated/TransactionStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Generated/TransactionStatus.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Input/gateway-api-schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Input/gateway-api-schema.yml -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CodeGen/Input/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CodeGen/Input/generate.sh -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CoreAPI/CoreAPI.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | enum CoreAPI {} 4 | -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CoreAPI/CoreAPI_TransactionMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CoreAPI/CoreAPI_TransactionMessage.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CoreAPI/CoreAPI_TransactionReceipt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CoreAPI/CoreAPI_TransactionReceipt.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CoreAPI/CoreAPI_TransactionStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CoreAPI/CoreAPI_TransactionStatus.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CreatedModels/GatewayAPI+PublicKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CreatedModels/GatewayAPI+PublicKey.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CreatedModels/GatewayError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CreatedModels/GatewayError.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CreatedModels/MetadataTypedValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CreatedModels/MetadataTypedValue.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CreatedModels/PublicKeyHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CreatedModels/PublicKeyHash.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CreatedModels/ResourcePoolState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CreatedModels/ResourcePoolState.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/CreatedModels/ValidatorState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/CreatedModels/ValidatorState.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/GatewayAPI+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/GatewayAPI+Utils.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/GatewayAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/GatewayAPI.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewayAPI/GatewayAPIClient+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewayAPI/GatewayAPIClient+Extension.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewaysClient/GatewaysClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewaysClient/GatewaysClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewaysClient/GatewaysClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewaysClient/GatewaysClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/GatewaysClient/GatewaysClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/GatewaysClient/GatewaysClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/HTTPClient/HTTPClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/HTTPClient/HTTPClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/HTTPClient/HTTPClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/HTTPClient/HTTPClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/HTTPClient/HTTPClient+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/HTTPClient/HTTPClient+Mock.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/HomeCardsClient/HomeCardsClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/HomeCardsClient/HomeCardsClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/HomeCardsClient/HomeCardsClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/HomeCardsClient/HomeCardsClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/HomeCardsClient/HomeCardsClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/HomeCardsClient/HomeCardsClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/IOSSecurityClient/IOSSecurityClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/IOSSecurityClient/IOSSecurityClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/IOSSecurityClient/IOSSecurityClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/IOSSecurityClient/IOSSecurityClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/IOSSecurityClient/IOSSecurityClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/IOSSecurityClient/IOSSecurityClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ImportLegacyWalletClient/ParseOlympiaPayloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ImportLegacyWalletClient/ParseOlympiaPayloads.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/KeychainClient/KeychainClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/KeychainClient/KeychainClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/KeychainClient/KeychainClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/KeychainClient/KeychainClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/KeychainClient/KeychainClient+Mocked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/KeychainClient/KeychainClient+Mocked.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/KeychainClient/KeychainHolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/KeychainClient/KeychainHolder.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/MnemonicClient/MnemonicClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/MnemonicClient/MnemonicClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/MnemonicClient/MnemonicClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/MnemonicClient/MnemonicClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/MnemonicClient/MnemonicClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/MnemonicClient/MnemonicClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/NPSSurveyClient/NPSSurveyClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/NPSSurveyClient/NPSSurveyClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/NPSSurveyClient/NPSSurveyClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/NPSSurveyClient/NPSSurveyClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/OnLedgerEntitiesClient/Helpers/EntityBehaviors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/OnLedgerEntitiesClient/Helpers/EntityBehaviors.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/OnboardingClient/OnboardingClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/OnboardingClient/OnboardingClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/OnboardingClient/OnboardingClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/OnboardingClient/OnboardingClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/OnboardingClient/OnboardingClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/OnboardingClient/OnboardingClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/OverlayWindowClient/OverlayWindowClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/OverlayWindowClient/OverlayWindowClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/OverlayWindowClient/OverlayWindowClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/OverlayWindowClient/OverlayWindowClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/P2PLinksClient/P2PLinksClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/P2PLinksClient/P2PLinksClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/P2PLinksClient/P2PLinksClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/P2PLinksClient/P2PLinksClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/P2PLinksClient/P2PLinksClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/P2PLinksClient/P2PLinksClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/PasteboardClient/PasteboardClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/PasteboardClient/PasteboardClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/PasteboardClient/PasteboardClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/PasteboardClient/PasteboardClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/PasteboardClient/PasteboardClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/PasteboardClient/PasteboardClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/PersonasClient/PersonasClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/PersonasClient/PersonasClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/PersonasClient/PersonasClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/PersonasClient/PersonasClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/PersonasClient/PersonasClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/PersonasClient/PersonasClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ProfileStore/ProfileStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ProfileStore/ProfileStore.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/QRGeneratorClient/QRGeneratorClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/QRGeneratorClient/QRGeneratorClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/QRGeneratorClient/QRGeneratorClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/QRGeneratorClient/QRGeneratorClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/QRGeneratorClient/QRGeneratorClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/QRGeneratorClient/QRGeneratorClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ROLAClient/ROLAClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ROLAClient/ROLAClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ROLAClient/ROLAClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ROLAClient/ROLAClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ROLAClient/ROLAClient+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ROLAClient/ROLAClient+Mock.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ROLAClient/ROLAFailure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ROLAClient/ROLAFailure.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/RadixConnectClient/RadixConnectClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/RadixConnectClient/RadixConnectClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/RadixConnectClient/RadixConnectClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/RadixConnectClient/RadixConnectClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/RadixNameServiceClient/RadixNameService+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/RadixNameServiceClient/RadixNameService+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/RadixNameServiceClient/RadixNameService+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/RadixNameServiceClient/RadixNameService+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ResetWalletClient/ResetWalletClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ResetWalletClient/ResetWalletClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ResetWalletClient/ResetWalletClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ResetWalletClient/ResetWalletClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/ResetWalletClient/ResetWalletClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/ResetWalletClient/ResetWalletClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/SecureStorageClient/SecureStorageClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/SecureStorageClient/SecureStorageClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/SecureStorageClient/SecureStorageClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/SecureStorageClient/SecureStorageClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/SecurityCenterClient/SecurityCenterClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/SecurityCenterClient/SecurityCenterClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/SecurityCenterClient/SecurityCenterClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/SecurityCenterClient/SecurityCenterClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/SensitiveInfoClient/SensitiveInfoClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/SensitiveInfoClient/SensitiveInfoClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/TokenPriceClient/TokenPriceClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/TokenPriceClient/TokenPriceClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/TokenPriceClient/TokenPriceClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/TokenPriceClient/TokenPriceClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/TokenPriceClient/TokenPriceClient+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/TokenPriceClient/TokenPriceClient+Mock.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/TransactionClient/Models/TransactionFailure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/TransactionClient/Models/TransactionFailure.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/TransactionClient/Models/TransactionFee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/TransactionClient/Models/TransactionFee.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/TransactionClient/Models/TransactionModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/TransactionClient/Models/TransactionModels.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/TransactionClient/TransactionClient+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/TransactionClient/TransactionClient+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/TransactionClient/TransactionClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/TransactionClient/TransactionClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/TransactionClient/TransactionClient+TestValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/TransactionClient/TransactionClient+TestValue.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/URLFormatterClient/URLFormatterClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/URLFormatterClient/URLFormatterClient+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Clients/URLFormatterClient/URLFormatterClient+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Clients/URLFormatterClient/URLFormatterClient+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/AccountBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/AccountBannerView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Colors.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/AppTextEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/AppTextEditor.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/AppTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/AppTextField.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/ApprovalSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/ApprovalSlider.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/AssetIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/AssetIcon.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/AssetRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/AssetRow.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/BackButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/BackButton.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/Button+Asset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/Button+Asset.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/Card.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/Card.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/CheckmarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/CheckmarkView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/CloseButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/CloseButton.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/ConfirmationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/ConfirmationView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/DarkModeTintedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/DarkModeTintedImage.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/DeveloperDisclaimerBanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/DeveloperDisclaimerBanner.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/FixedSpacer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/FixedSpacer.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/Footer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/Footer.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/GeometryExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/GeometryExtensions.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/Hint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/Hint.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/InfoButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/InfoButton.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/JaggedEdge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/JaggedEdge.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/LoadingOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/LoadingOverlayView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/LoadingView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/NoContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/NoContentView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/PlainListRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/PlainListRow.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/RadioButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/RadioButton.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/RoundedCornerBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/RoundedCornerBackground.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/Selection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/Selection.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/SelectionList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/SelectionList.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/Separator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/Separator.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/Shapes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/Shapes.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/ShareView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/ShareView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/StatusMessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/StatusMessageView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/Thumbnails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/Thumbnails.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Components/TransferPoolUnitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Components/TransferPoolUnitView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ControlRequirements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ControlRequirements.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ControlState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ControlState.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/EntitySecurityProblemsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/EntitySecurityProblemsView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ExpandableTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ExpandableTextView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Extensions/Binding+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Extensions/Binding+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Extensions/Button+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Extensions/Button+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Extensions/Geometry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Extensions/Geometry.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Extensions/Image+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Extensions/Image+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Extensions/Label+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Extensions/Label+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Extensions/Stroke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Extensions/Stroke.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Extensions/Text+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Extensions/Text+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Extensions/UIKeyboardType+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Extensions/UIKeyboardType+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Extensions/View+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Extensions/View+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Fonts.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Grid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Grid.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/HScrollBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/HScrollBar.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/HeaderListViewContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/HeaderListViewContainer.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/HitTargetSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/HitTargetSize.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/InfoPair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/InfoPair.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/JSONView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/JSONView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/LabelledDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/LabelledDate.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Layouts/FlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Layouts/FlowLayout.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Layouts/StackedViewsLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Layouts/StackedViewsLayout.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/LinearGradients.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/LinearGradients.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Measure+Position.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Measure+Position.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/MultiPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/MultiPickerView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/OnLedgerTagsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/OnLedgerTagsView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ShimmeringAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ShimmeringAnimation.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Styles/BlueTextButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Styles/BlueTextButtonStyle.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Styles/HeaderButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Styles/HeaderButtonStyle.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Styles/InertButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Styles/InertButtonStyle.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Styles/InfoButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Styles/InfoButtonStyle.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Styles/PrimaryRectangularButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Styles/PrimaryRectangularButtonStyle.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Styles/PrimaryTextButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Styles/PrimaryTextButtonStyle.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Styles/TappableRowStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Styles/TappableRowStyle.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Styles/TrailingIconLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Styles/TrailingIconLabelStyle.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/Styles/URLButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/Styles/URLButtonStyle.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ToggleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ToggleView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/TotalCurrencyWorthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/TotalCurrencyWorthView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/TruncationMask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/TruncationMask.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ViewModifiers/Modifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ViewModifiers/Modifier.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ViewModifiers/OnSizeChanged.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ViewModifiers/OnSizeChanged.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ViewModifiers/OnWillDisappear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ViewModifiers/OnWillDisappear.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ViewModifiers/PresentationBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ViewModifiers/PresentationBackground.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ViewModifiers/TextStyleModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ViewModifiers/TextStyleModifier.swift -------------------------------------------------------------------------------- /RadixWallet/Core/DesignSystem/ViewModifiers/TokenShadowModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/DesignSystem/ViewModifiers/TokenShadowModifier.swift -------------------------------------------------------------------------------- /RadixWallet/Core/Dictionary+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Dictionary+Extensions.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/AccountCard/AccountCard+DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/AccountCard/AccountCard+DataSource.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/AccountCard/AccountCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/AccountCard/AccountCard.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/AddressView/AddressDetails+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/AddressView/AddressDetails+View.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/AddressView/AddressDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/AddressView/AddressDetails.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/AddressView/AddressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/AddressView/AddressView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Extensions/AnyRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Extensions/AnyRange.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Extensions/AppearanceID+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Extensions/AppearanceID+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Extensions/AttributedString+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Extensions/AttributedString+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Extensions/Selection+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Extensions/Selection+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Extensions/Store+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Extensions/Store+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Extensions/SwiftUINavigation+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Extensions/SwiftUINavigation+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Extensions/TaskResult+Unit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Extensions/TaskResult+Unit.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Extensions/Validation+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Extensions/Validation+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/FactorSourceCard/FactorSourceCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/FactorSourceCard/FactorSourceCard.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/FactorSourcePreviewCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/FactorSourcePreviewCard.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/FeatureReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/FeatureReducer.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/LedgerRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/LedgerRowView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Loadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Loadable.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/LoadableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/LoadableView.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/OnAnimationCompletedViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/OnAnimationCompletedViewModifier.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/OnFirstAppearViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/OnFirstAppearViewModifier.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/OnFirstTaskViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/OnFirstTaskViewModifier.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/Radix+Dashboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/Radix+Dashboard.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/RadixDateFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/RadixDateFormatter.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/RenameLabel/RenameLabel+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/RenameLabel/RenameLabel+View.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/RenameLabel/RenameLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/RenameLabel/RenameLabel.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/ShieldCard/ShieldCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/ShieldCard/ShieldCard.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/UserDefaultsClient+AccountRecovery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/UserDefaultsClient+AccountRecovery.swift -------------------------------------------------------------------------------- /RadixWallet/Core/FeaturePrelude/WithNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/FeaturePrelude/WithNavigationBar.swift -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Generated/AssetResource.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Generated/AssetResource.generated.swift -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Generated/Fonts.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Generated/Fonts.generated.swift -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Generated/L10n.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Generated/L10n.generated.swift -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/ImageAsset+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/ImageAsset+Extension.swift -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/Assets.xcassets/Home/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/Assets.xcassets/Home/Contents.json -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/Assets.xcassets/Tags/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/Assets.xcassets/Tags/Contents.json -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/Assets.xcassets/Theme/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/Assets.xcassets/Theme/Contents.json -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/Assets.xcassets/dApp/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/Assets.xcassets/dApp/Contents.json -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/Fonts/IBMPlexSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/Fonts/IBMPlexSans-Bold.ttf -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/Fonts/IBMPlexSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/Fonts/IBMPlexSans-Medium.ttf -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/Fonts/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/Fonts/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/Fonts/IBMPlexSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/Fonts/IBMPlexSans-SemiBold.ttf -------------------------------------------------------------------------------- /RadixWallet/Core/Resources/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/Resources/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /RadixWallet/Core/SargonExtensions/DisplayName+NonEmptyString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SargonExtensions/DisplayName+NonEmptyString.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SargonExtensions/IntoSargon+Bridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SargonExtensions/IntoSargon+Bridge.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/AppTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/AppTheme.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/Asset/Protocols/Asset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/Asset/Protocols/Asset.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/Assets/AccountPortfolio+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/Assets/AccountPortfolio+Extensions.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/Assets/AssetBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/Assets/AssetBehavior.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/Assets/AtLedgerState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/Assets/AtLedgerState.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/Assets/FiatWorth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/Assets/FiatWorth.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/Assets/OnLedgerEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/Assets/OnLedgerEntity.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/Assets/OnLedgerTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/Assets/OnLedgerTag.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/Assets/ResourceAmount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/Assets/ResourceAmount.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/LedgerIdentifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/LedgerIdentifiable.swift -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/P2P/Application/README.md: -------------------------------------------------------------------------------- 1 | Higher abstraction level than the models inside `Codable`. 2 | -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/P2P/Dapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/P2P/Dapp/README.md -------------------------------------------------------------------------------- /RadixWallet/Core/SharedModels/P2P/P2P.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Core/SharedModels/P2P/P2P.swift -------------------------------------------------------------------------------- /RadixWallet/Cryptography/Encryption/EncryptionScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Cryptography/Encryption/EncryptionScheme.swift -------------------------------------------------------------------------------- /RadixWallet/Cryptography/Encryption/VersionedAlgorithm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Cryptography/Encryption/VersionedAlgorithm.swift -------------------------------------------------------------------------------- /RadixWallet/Cryptography/KeyDerivation/KeyDerivationScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Cryptography/KeyDerivation/KeyDerivationScheme.swift -------------------------------------------------------------------------------- /RadixWallet/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Exports.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AddFactorSource/AddFactorSourceCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AddFactorSource/AddFactorSourceCoordinator.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AddFactorSource/Children/Intro/LinkAConnector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AddFactorSource/Children/Intro/LinkAConnector.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AddLedgerFactorSource/AddLedgerFactorSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AddLedgerFactorSource/AddLedgerFactorSource.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AddLedgerFactorSource/NameLedgerFactorSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AddLedgerFactorSource/NameLedgerFactorSource.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/App+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/App+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/App+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/App+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/AppDelegate.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/Overlay/Children/HUD+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/Overlay/Children/HUD+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/Overlay/Children/HUD+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/Overlay/Children/HUD+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/Overlay/ContentOverlay+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/Overlay/ContentOverlay+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/Overlay/ContentOverlay+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/Overlay/ContentOverlay+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/Overlay/StatusOverlay+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/Overlay/StatusOverlay+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/Overlay/StatusOverlay+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/Overlay/StatusOverlay+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AppFeature/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AppFeature/SceneDelegate.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ApplyShield/ApplyShieldCoordinator+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ApplyShield/ApplyShieldCoordinator+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ApplyShield/ApplyShieldCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ApplyShield/ApplyShieldCoordinator.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ApplyShield/Children/Intro/ApplyShield-Intro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ApplyShield/Children/Intro/ApplyShield-Intro.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AssetTransferFeature/AssetTransfer+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AssetTransferFeature/AssetTransfer+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AssetTransferFeature/AssetTransfer+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AssetTransferFeature/AssetTransfer+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AssetTransferFeature/Common/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AssetTransferFeature/Common/Style.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AssetsFeature/AssetsView+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AssetsFeature/AssetsView+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AssetsFeature/AssetsView+Selection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AssetsFeature/AssetsView+Selection.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AssetsFeature/AssetsView+Update.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AssetsFeature/AssetsView+Update.swift -------------------------------------------------------------------------------- /RadixWallet/Features/AssetsFeature/AssetsView+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/AssetsFeature/AssetsView+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Authorization/Authorization+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Authorization/Authorization+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Authorization/Authorization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Authorization/Authorization.swift -------------------------------------------------------------------------------- /RadixWallet/Features/CardCarousel/CardCarousel+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/CardCarousel/CardCarousel+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/CardCarousel/CardCarousel+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/CardCarousel/CardCarousel+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ChooseAccounts/ChooseAccounts+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ChooseAccounts/ChooseAccounts+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ChooseAccounts/ChooseAccounts+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ChooseAccounts/ChooseAccounts+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ChooseAccounts/Row/ChooseAccountsRow+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ChooseAccounts/Row/ChooseAccountsRow+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ChooseAccounts/Row/ChooseAccountsRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ChooseAccounts/Row/ChooseAccountsRow.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ChoosePersonas/ChoosePersonas+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ChoosePersonas/ChoosePersonas+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ChoosePersonas/ChoosePersonas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ChoosePersonas/ChoosePersonas.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ClaimWallet/ClaimWallet+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ClaimWallet/ClaimWallet+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ClaimWallet/ClaimWallet+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ClaimWallet/ClaimWallet+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/AllDapps/DAppsDirectory+AllDapps+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/AllDapps/DAppsDirectory+AllDapps+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/AllDapps/DAppsDirectory+AllDapps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/AllDapps/DAppsDirectory+AllDapps.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/AuthorizedDApps/AuthorizedDApps+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/AuthorizedDApps/AuthorizedDApps+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/AuthorizedDApps/AuthorizedDApps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/AuthorizedDApps/AuthorizedDApps.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/DAppsDirectory+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/DAppsDirectory+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/DAppsDirectory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/DAppsDirectory.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/Filtering/DAppDirectory+Filtering+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/Filtering/DAppDirectory+Filtering+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/Filtering/DAppDirectory+Filtering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/Filtering/DAppDirectory+Filtering.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/Filtering/DAppTagsSelection+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/Filtering/DAppTagsSelection+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DApps/Filtering/DAppTagsSelection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DApps/Filtering/DAppTagsSelection.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DappInteractionFeature/Views/DappHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DappInteractionFeature/Views/DappHeader.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DappsAndPersonas/DappDetails/DappDetails+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DappsAndPersonas/DappDetails/DappDetails+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DappsAndPersonas/DappDetails/DappDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DappsAndPersonas/DappDetails/DappDetails.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DebugInspectProfile/DebugInspectProfile+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DebugInspectProfile/DebugInspectProfile+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DebugInspectProfile/DebugInspectProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DebugInspectProfile/DebugInspectProfile.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DebugInspectProfile/InspectProfile+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DebugInspectProfile/InspectProfile+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DerivePublicKeys/DerivePublicKeys+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DerivePublicKeys/DerivePublicKeys+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/DerivePublicKeys/DerivePublicKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/DerivePublicKeys/DerivePublicKeys.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/BlogPosts/BlogPostCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/BlogPosts/BlogPostCard.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/BlogPosts/BlogPosts+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/BlogPosts/BlogPosts+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/BlogPosts/BlogPosts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/BlogPosts/BlogPosts.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/BlogPosts/BlogPostsCarousel+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/BlogPosts/BlogPostsCarousel+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/BlogPosts/BlogPostsCarousel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/BlogPosts/BlogPostsCarousel.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/Discover+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/Discover+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/Discover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/Discover.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/LearnAbout/LearnAbout+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/LearnAbout/LearnAbout+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/LearnAbout/LearnAbout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/LearnAbout/LearnAbout.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/LearnAbout/LearnItemsList+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/LearnAbout/LearnItemsList+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Discover/LearnAbout/LearnItemsList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Discover/LearnAbout/LearnItemsList.swift -------------------------------------------------------------------------------- /RadixWallet/Features/EditPersonaFeature/EditPersona/EditPersona.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/EditPersonaFeature/EditPersona/EditPersona.swift -------------------------------------------------------------------------------- /RadixWallet/Features/FactorSourceAccess/FactorSourceAccess+Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/FactorSourceAccess/FactorSourceAccess+Models.swift -------------------------------------------------------------------------------- /RadixWallet/Features/FactorSourceAccess/FactorSourceAccess+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/FactorSourceAccess/FactorSourceAccess+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/FactorSourceAccess/FactorSourceAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/FactorSourceAccess/FactorSourceAccess.swift -------------------------------------------------------------------------------- /RadixWallet/Features/FactorSourceAccess/PrivateFactorSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/FactorSourceAccess/PrivateFactorSource.swift -------------------------------------------------------------------------------- /RadixWallet/Features/FeaturesPreviewer/FeaturesPreviewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/FeaturesPreviewer/FeaturesPreviewer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/FeaturesPreviewer/PreviewedFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/FeaturesPreviewer/PreviewedFeature.swift -------------------------------------------------------------------------------- /RadixWallet/Features/GatewaySettingsFeature/GatewaySettings+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/GatewaySettingsFeature/GatewaySettings+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/HomeFeature/Children/NPSSurvey/NPSSurvey+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/HomeFeature/Children/NPSSurvey/NPSSurvey+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/HomeFeature/Children/NPSSurvey/NPSSurvey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/HomeFeature/Children/NPSSurvey/NPSSurvey.swift -------------------------------------------------------------------------------- /RadixWallet/Features/HomeFeature/Coordinator/Home+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/HomeFeature/Coordinator/Home+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/HomeFeature/Coordinator/Home.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/HomeFeature/Coordinator/Home.swift -------------------------------------------------------------------------------- /RadixWallet/Features/HomeFeature/Models/AccountWithInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/HomeFeature/Models/AccountWithInfo.swift -------------------------------------------------------------------------------- /RadixWallet/Features/HomeFeature/Models/AccountWithInfoHolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/HomeFeature/Models/AccountWithInfoHolder.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Components/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Components/HeaderView.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Components/HeadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Components/HeadingView.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Components/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Components/MessageView.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Components/RawManifestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Components/RawManifestView.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Components/TransferLineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Components/TransferLineView.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Components/ValidatorsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Components/ValidatorsView.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Helpers/DisplayMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Helpers/DisplayMode.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Helpers/InteractionReview+Typealias.swift: -------------------------------------------------------------------------------- 1 | extension InteractionReview { 2 | typealias Transfer = IDResourceBalance 3 | } 4 | -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Helpers/Kind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Helpers/Kind.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/InteractionReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/InteractionReview.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Sections/Accounts/Accounts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Sections/Accounts/Accounts.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Sections/Proofs/Proofs+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Sections/Proofs/Proofs+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Sections/Proofs/Proofs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Sections/Proofs/Proofs.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Sections/Sections+Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Sections/Sections+Data.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Sections/Sections+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Sections/Sections+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/InteractionReview/Sections/Sections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/InteractionReview/Sections/Sections.swift -------------------------------------------------------------------------------- /RadixWallet/Features/MainFeature/Main+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/MainFeature/Main+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/MainFeature/Main+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/MainFeature/Main+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/MnemonicFeature/ImportMnemonic+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/MnemonicFeature/ImportMnemonic+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/MnemonicFeature/ImportMnemonic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/MnemonicFeature/ImportMnemonic.swift -------------------------------------------------------------------------------- /RadixWallet/Features/MnemonicFeature/ImportWord/ImportMnemonicWord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/MnemonicFeature/ImportWord/ImportMnemonicWord.swift -------------------------------------------------------------------------------- /RadixWallet/Features/MnemonicFeature/VerifyMnemonic/VerifyMnemonic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/MnemonicFeature/VerifyMnemonic/VerifyMnemonic.swift -------------------------------------------------------------------------------- /RadixWallet/Features/PreAuthorizationReview/PreAuthorizationReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/PreAuthorizationReview/PreAuthorizationReview.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ScanQR/Children/ScanQR/ScanQR+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ScanQR/Children/ScanQR/ScanQR+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ScanQR/Children/ScanQR/ScanQR+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ScanQR/Children/ScanQR/ScanQR+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ScanQR/Coordinator/ScanQRCoordinator+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ScanQR/Coordinator/ScanQRCoordinator+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ScanQR/Coordinator/ScanQRCoordinator+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ScanQR/Coordinator/ScanQRCoordinator+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SecurityCenterFeature/SecurityCenter+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SecurityCenterFeature/SecurityCenter+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SecurityCenterFeature/SecurityCenter+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SecurityCenterFeature/SecurityCenter+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SelectFactorSource/SelectFactorSource+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SelectFactorSource/SelectFactorSource+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SelectFactorSource/SelectFactorSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SelectFactorSource/SelectFactorSource.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SettingsFeature/Preferences/Preferences+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SettingsFeature/Preferences/Preferences+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SettingsFeature/Preferences/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SettingsFeature/Preferences/Preferences.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SettingsFeature/Settings+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SettingsFeature/Settings+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SettingsFeature/Settings+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SettingsFeature/Settings+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SettingsFeature/SettingsRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SettingsFeature/SettingsRow.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldSetup/EditSecurityShieldCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldSetup/EditSecurityShieldCoordinator.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldSetup/NameShield/NameShield+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldSetup/NameShield/NameShield+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldSetup/NameShield/NameShield+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldSetup/NameShield/NameShield+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldSetup/RolesSetup/RolesSetupCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldSetup/RolesSetup/RolesSetupCoordinator.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldSetup/SecurityShieldBuilder+SharedState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldSetup/SecurityShieldBuilder+SharedState.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldSetup/ShieldSetupCoordinator+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldSetup/ShieldSetupCoordinator+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldSetup/ShieldSetupCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldSetup/ShieldSetupCoordinator.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldSetup/TodoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldSetup/TodoView.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldsList/SelectShield+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldsList/SelectShield+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldsList/SelectShield.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldsList/SelectShield.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldsList/ShieldTemplateDetails+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldsList/ShieldTemplateDetails+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldsList/ShieldTemplateDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldsList/ShieldTemplateDetails.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldsList/ShieldsList+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldsList/ShieldsList+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/ShieldsList/ShieldsList+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/ShieldsList/ShieldsList+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Signing/Error+FactorSources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Signing/Error+FactorSources.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Signing/Signer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Signing/Signer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Signing/Signing+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Signing/Signing+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Signing/Signing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Signing/Signing.swift -------------------------------------------------------------------------------- /RadixWallet/Features/Signing/SigningPurpose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/Signing/SigningPurpose.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SplashFeature/Splash+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SplashFeature/Splash+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SplashFeature/Splash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SplashFeature/Splash.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SpotCheck/SpotCheck+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SpotCheck/SpotCheck+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/SpotCheck/SpotCheck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/SpotCheck/SpotCheck.swift -------------------------------------------------------------------------------- /RadixWallet/Features/TransactionHistory/TransactionHistory+Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/TransactionHistory/TransactionHistory+Reducer.swift -------------------------------------------------------------------------------- /RadixWallet/Features/TransactionHistory/TransactionHistory+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/TransactionHistory/TransactionHistory+View.swift -------------------------------------------------------------------------------- /RadixWallet/Features/TransactionReviewFeature/TransactionReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Features/TransactionReviewFeature/TransactionReview.swift -------------------------------------------------------------------------------- /RadixWallet/MIGRATE_TO_SARGON/Stage1/Stage1MigrateToSargon+Account.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/MIGRATE_TO_SARGON/Stage1/Stage1MigrateToSargon+Account.swift -------------------------------------------------------------------------------- /RadixWallet/MIGRATE_TO_SARGON/Stage1/Stage1MigrateToSargon+Factors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/MIGRATE_TO_SARGON/Stage1/Stage1MigrateToSargon+Factors.swift -------------------------------------------------------------------------------- /RadixWallet/MIGRATE_TO_SARGON/Stage1/Stage1MigrateToSargon+Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/MIGRATE_TO_SARGON/Stage1/Stage1MigrateToSargon+Header.swift -------------------------------------------------------------------------------- /RadixWallet/MIGRATE_TO_SARGON/Stage1/Stage1MigrateToSargon+Persona.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/MIGRATE_TO_SARGON/Stage1/Stage1MigrateToSargon+Persona.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Constants.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/DefaultValueDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/DefaultValueDecodable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/EmailAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/EmailAddress.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/ErrorQueue/ErrorQueue+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/ErrorQueue/ErrorQueue+Interface.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/ErrorQueue/ErrorQueue+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/ErrorQueue/ErrorQueue+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/ErrorQueue/ErrorQueue+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/ErrorQueue/ErrorQueue+Test.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Array+Identifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Array+Identifiable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Async+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Async+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/AsyncExtension+Sendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/AsyncExtension+Sendable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/BitArray+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/BitArray+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/ByteArray+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/ByteArray+Hex.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Collection+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Collection+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/CryptoKit/PublicKey+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/CryptoKit/PublicKey+Extensions.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/CustomDumpConformance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/CustomDumpConformance.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Data+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Data+Hex.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Date+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Date+Extension.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Dispatch+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Dispatch+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Effect+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Effect+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Either+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Either+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Foundation/Data_Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Foundation/Data_Extensions.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Foundation/JSON+ISO8601.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Foundation/JSON+ISO8601.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Foundation/LocalizedError+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Foundation/LocalizedError+Equatable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Foundation/Result+Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Foundation/Result+Async.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Foundation/SafeCompare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Foundation/SafeCompare.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Foundation/String+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Foundation/String+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Foundation/URL+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Foundation/URL+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Foundation/URLRequest+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Foundation/URLRequest+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Identifiable+RawRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Identifiable+RawRepresentable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Identified+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Identified+Extensions.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/IdentifiedArrayOf+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/IdentifiedArrayOf+Extensions.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/KeyPath+Sendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/KeyPath+Sendable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/NonEmpty+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/NonEmpty+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/OrderedSet+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/OrderedSet+Extensions.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/RandomBytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/RandomBytes.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Swift.DecodingError+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Swift.DecodingError+Equatable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Tagged+Comparable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Tagged+Comparable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Tuple+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Tuple+Extra.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Extensions/Unit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Extensions/Unit.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Functions.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/HexCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/HexCodable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/InsecureRandomNumberGeneratorWithSeed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/InsecureRandomNumberGeneratorWithSeed.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/JSON/JSONDecoder+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/JSON/JSONDecoder+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/JSON/JSONEncoder+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/JSON/JSONEncoder+Live.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/JSONValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/JSONValue.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Logger.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/NoopError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/NoopError.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/QRAddressPrefix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/QRAddressPrefix.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/RawRepresentable+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/RawRepresentable+Extensions.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Sorted/Sorted.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Sorted/Sorted.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Throwable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Throwable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/UInt11.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/UInt11.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/UnknownCaseDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/UnknownCaseDecodable.swift -------------------------------------------------------------------------------- /RadixWallet/Prelude/Validation/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/Prelude/Validation/Validation.swift -------------------------------------------------------------------------------- /RadixWallet/RadixConnect/RadixConnect/Mobile/RadixConnectMobile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixConnect/RadixConnect/Mobile/RadixConnectMobile.swift -------------------------------------------------------------------------------- /RadixWallet/RadixConnect/RadixConnect/RTC/Models/RTCPrimitive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixConnect/RadixConnect/RTC/Models/RTCPrimitive.swift -------------------------------------------------------------------------------- /RadixWallet/RadixConnect/RadixConnect/RTC/Models/RemoteClientID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixConnect/RadixConnect/RTC/Models/RemoteClientID.swift -------------------------------------------------------------------------------- /RadixWallet/RadixConnect/RadixConnect/RTC/RTCClients.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixConnect/RadixConnect/RTC/RTCClients.swift -------------------------------------------------------------------------------- /RadixWallet/RadixConnect/RadixConnect/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixConnect/RadixConnect/Utils/Async.swift -------------------------------------------------------------------------------- /RadixWallet/RadixConnect/RadixConnect/Utils/Hashing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixConnect/RadixConnect/Utils/Hashing.swift -------------------------------------------------------------------------------- /RadixWallet/RadixConnect/RadixConnectModels/RadixConnectConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixConnect/RadixConnectModels/RadixConnectConstants.swift -------------------------------------------------------------------------------- /RadixWallet/RadixConnect/RadixConnectModels/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixConnect/RadixConnectModels/Types.swift -------------------------------------------------------------------------------- /RadixWallet/RadixWalletBeta.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixWalletBeta.entitlements -------------------------------------------------------------------------------- /RadixWallet/RadixWalletDebug-Alpha.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixWalletDebug-Alpha.entitlements -------------------------------------------------------------------------------- /RadixWallet/RadixWalletDebug-Dev.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixWalletDebug-Dev.entitlements -------------------------------------------------------------------------------- /RadixWallet/RadixWalletDebug-PreAlpha.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixWalletDebug-PreAlpha.entitlements -------------------------------------------------------------------------------- /RadixWallet/RadixWalletRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/RadixWalletRelease.entitlements -------------------------------------------------------------------------------- /RadixWallet/SargonExtensions/ArculusCSDKDriver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/SargonExtensions/ArculusCSDKDriver.swift -------------------------------------------------------------------------------- /RadixWallet/SargonExtensions/NFCSessionClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/SargonExtensions/NFCSessionClient.swift -------------------------------------------------------------------------------- /RadixWallet/SargonExtensions/SargonHostInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/SargonExtensions/SargonHostInteractor.swift -------------------------------------------------------------------------------- /RadixWallet/SargonExtensions/SargonSecureStorageDriver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/SargonExtensions/SargonSecureStorageDriver.swift -------------------------------------------------------------------------------- /RadixWallet/WalletApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWallet/WalletApp.swift -------------------------------------------------------------------------------- /RadixWalletTests/Clients/CacheClientTests/CacheClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Clients/CacheClientTests/CacheClientTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Clients/FaucetClientTests/FaucetClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Clients/FaucetClientTests/FaucetClientTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Clients/KeychainClientTests/KeychainHolderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Clients/KeychainClientTests/KeychainHolderTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Clients/ROLAClientTests/ROLAClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Clients/ROLAClientTests/ROLAClientTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Clients/TokenPriceCientTests/TokenPriceCientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Clients/TokenPriceCientTests/TokenPriceCientTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Core/FeaturePreludeTests/Validation+ExtraTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Core/FeaturePreludeTests/Validation+ExtraTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Core/LedgerModelsTests/LedgerModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Core/LedgerModelsTests/LedgerModelTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Features/AppFeatureTests/AppFeatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Features/AppFeatureTests/AppFeatureTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Features/ImportMnemonicGridTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Features/ImportMnemonicGridTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Features/MainFeatureTests/MainFeatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Features/MainFeatureTests/MainFeatureTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/Features/SplashFeatureTests/SplashFeatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/Features/SplashFeatureTests/SplashFeatureTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/PreludeTests/DataExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/PreludeTests/DataExtensionTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/PreludeTests/DataHex/DataToHexStringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/PreludeTests/DataHex/DataToHexStringTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/PreludeTests/DataHex/HexStringToDataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/PreludeTests/DataHex/HexStringToDataTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/PreludeTests/IdentifiedArrayOf+Mutation+Position.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/PreludeTests/IdentifiedArrayOf+Mutation+Position.swift -------------------------------------------------------------------------------- /RadixWalletTests/PreludeTests/Sorted/SortedPropertyWrapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/PreludeTests/Sorted/SortedPropertyWrapperTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/PreludeTests/ValidationTests/ValidationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/PreludeTests/ValidationTests/ValidationTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/ProfileTests/EntitiesHidingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/ProfileTests/EntitiesHidingTests.swift -------------------------------------------------------------------------------- /RadixWalletTests/RadixWallet.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/RadixWallet.xctestplan -------------------------------------------------------------------------------- /RadixWalletTests/TestExtensions/JSON+Sendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/TestExtensions/JSON+Sendable.swift -------------------------------------------------------------------------------- /RadixWalletTests/TestExtensions/Misc+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/TestExtensions/Misc+Extensions.swift -------------------------------------------------------------------------------- /RadixWalletTests/TestExtensions/MockURLProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/TestExtensions/MockURLProtocol.swift -------------------------------------------------------------------------------- /RadixWalletTests/TestExtensions/NSError+TestValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/TestExtensions/NSError+TestValue.swift -------------------------------------------------------------------------------- /RadixWalletTests/TestExtensions/TestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/TestExtensions/TestCase.swift -------------------------------------------------------------------------------- /RadixWalletTests/TestExtensions/TestFixture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/TestExtensions/TestFixture.swift -------------------------------------------------------------------------------- /RadixWalletTests/TestExtensions/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/TestExtensions/TestUtils.swift -------------------------------------------------------------------------------- /RadixWalletTests/TestExtensions/TimeLimit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/RadixWalletTests/TestExtensions/TimeLimit.swift -------------------------------------------------------------------------------- /SETUP_DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/SETUP_DEV.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | bundles: 2 | - 1 3 | -------------------------------------------------------------------------------- /fastlane/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/fastlane/.env -------------------------------------------------------------------------------- /fastlane/.env.ios: -------------------------------------------------------------------------------- 1 | SCAN_DEVICE="iPhone 16 Pro Max (18.0)" 2 | GYM_DESTINATION="generic/platform=iOS" 3 | -------------------------------------------------------------------------------- /fastlane/.env.ios.alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/fastlane/.env.ios.alpha -------------------------------------------------------------------------------- /fastlane/.env.ios.beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/fastlane/.env.ios.beta -------------------------------------------------------------------------------- /fastlane/.env.ios.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/fastlane/.env.ios.dev -------------------------------------------------------------------------------- /fastlane/.env.ios.pre-alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/fastlane/.env.ios.pre-alpha -------------------------------------------------------------------------------- /fastlane/.env.ios.release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/fastlane/.env.ios.release -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /scripts/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/scripts/bootstrap -------------------------------------------------------------------------------- /scripts/git-format-staged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/scripts/git-format-staged -------------------------------------------------------------------------------- /scripts/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/scripts/pre-commit -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/swiftgen.yml -------------------------------------------------------------------------------- /templates/Xcode/TCA Client.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Client.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /templates/Xcode/TCA Client.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Client.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /templates/Xcode/TCA Client.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Client.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Xcode/TCA Client.xctemplate/___FILEBASENAME___+Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Client.xctemplate/___FILEBASENAME___+Interface.swift -------------------------------------------------------------------------------- /templates/Xcode/TCA Client.xctemplate/___FILEBASENAME___+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Client.xctemplate/___FILEBASENAME___+Live.swift -------------------------------------------------------------------------------- /templates/Xcode/TCA Client.xctemplate/___FILEBASENAME___+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Client.xctemplate/___FILEBASENAME___+Test.swift -------------------------------------------------------------------------------- /templates/Xcode/TCA Feature.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Feature.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /templates/Xcode/TCA Feature.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Feature.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /templates/Xcode/TCA Feature.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Feature.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Xcode/TCA Feature.xctemplate/___FILEBASENAME___+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Feature.xctemplate/___FILEBASENAME___+View.swift -------------------------------------------------------------------------------- /templates/Xcode/TCA Feature.xctemplate/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Feature.xctemplate/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /templates/Xcode/TCA Observable Feature.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Observable Feature.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /templates/Xcode/TCA Observable Feature.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Observable Feature.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /templates/Xcode/TCA Observable Feature.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radixdlt/babylon-wallet-ios/HEAD/templates/Xcode/TCA Observable Feature.xctemplate/TemplateInfo.plist --------------------------------------------------------------------------------