From ac53c3c7fbba5ddfbcffb8158a7fe034f3d9c626 Mon Sep 17 00:00:00 2001 From: Artur Guseinov Date: Thu, 7 Dec 2023 14:28:26 +0300 Subject: [PATCH] allApps by default --- Sources/WalletConnectNotify/Client/Wallet/NotifyClient.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/WalletConnectNotify/Client/Wallet/NotifyClient.swift b/Sources/WalletConnectNotify/Client/Wallet/NotifyClient.swift index 41ef5d1d3..7c6008ed6 100644 --- a/Sources/WalletConnectNotify/Client/Wallet/NotifyClient.swift +++ b/Sources/WalletConnectNotify/Client/Wallet/NotifyClient.swift @@ -75,7 +75,7 @@ public class NotifyClient { self.subscriptionWatcher = subscriptionWatcher } - public func prepareRegistration(account: Account, domain: String, allApps: Bool = false) async throws -> IdentityRegistrationParams { + public func prepareRegistration(account: Account, domain: String, allApps: Bool = true) async throws -> IdentityRegistrationParams { return try await identityService.prepareRegistration(account: account, domain: domain, allApps: allApps) }