If you are using SwiftUI, register the app delegate in your App:
Copy
Ask AI
import SwiftUI@mainstruct WalletKitDemoApp: App { // Register app delegate for WalletKit setup. @UIApplicationDelegateAdaptor(AppDelegate.self) var delegate var body: some Scene { WindowGroup { HomeView() } }}
At this point, the client is unauthenticated. To authenticate your client, check out the Authentication section.