Understand Authentication Modes: `connect-and-sign` vs `connect-only`
masterThe SDK supports two primary authentication modes during the connection process:
connect-and-sign:connectTo()resolves only after both the connection and the authorization (signing) are complete. External wallets must complete the auth challenge and return a usable ID token.connect-only:connectTo()resolves immediately after the connection step is successful, without triggering an unnecessary authentication challenge.
Ensure that switching between these modes across app reloads does not leave stale state and that failed authorization steps leave the connector in a recoverable state.