docs: add usage notes (account type/gas, recovery, EIP-1193, Expo config)#103
Open
joalavedra wants to merge 2 commits into
Open
docs: add usage notes (account type/gas, recovery, EIP-1193, Expo config)#103joalavedra wants to merge 2 commits into
joalavedra wants to merge 2 commits into
Conversation
…fig) Documents common integration gotchas: EOA vs smart account and which one gas sponsorship applies to, no-backend password/passkey recovery, the create()->setActive() lifecycle, the supported EIP-1193 methods, and the app.config.js function-form requirement for Expo. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
commit: |
The auth hooks (useGuestAuth, useEmailAuthOtp, useEmailAuth, useOAuth,
usePhoneAuthOtp, useWalletAuth) resolve with { user?, error? } and do not
throw, so try/catch silently misses failures. List the hooks and show the
error-handling pattern.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a Usage notes section to the README covering integration gotchas hit while building a recipe with the SDK:
feeSponsorshipIdonly applies to smart accounts (EOAs pay their own gas). Picking an EOA matters when it must own/sign for a Safe (smart-account owners need ERC-1271 sigs).password/passkeyrecovery vsautomatic(which needsgetEncryptionSession+ a backend).create()→setActive()lifecycle —create()doesn't auto-activate.app.config.js— use the function form so it mergesapp.json(a static object dropsscheme/plugins/iosand breaksexpo run:ios).Docs-only. Part of a set of DX follow-ups from #102.
🤖 Generated with Claude Code