Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ cp .env.example .env

1. Go to [thirdweb Dashboard](https://thirdweb.com/dashboard) and sign in or create an account
2. Create a new project or select an existing one
3. Copy the Client ID from your project settings
4. Add this Client ID as the value for `EXPO_PUBLIC_THIRDWEB_CLIENT_ID` in your `.env` file:
3. Make sure to check the allow-all-domains flag in the Allowed domains section.
4. Copy the Client ID from your project settings
5. Add this Client ID as the value for `EXPO_PUBLIC_THIRDWEB_CLIENT_ID` in your `.env` file:

```
EXPO_PUBLIC_THIRDWEB_CLIENT_ID=your_client_id_here
Expand Down
4 changes: 2 additions & 2 deletions app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export default function TransferScreen() {
wallets={[
inAppWallet({
auth: {
options: ["email"],
options: ["email", "wallet"],
},
}),
]}
Expand Down Expand Up @@ -256,7 +256,7 @@ export default function TransferScreen() {
wallets={[
inAppWallet({
auth: {
options: ["email"],
options: ["email", "wallet"],
},
}),
]}
Expand Down