Skip to content

Commit 53d6ce2

Browse files
authored
passkey removal from embedded wallets (#2546)
Co-authored-by: Yashovardhan Agrawal <[email protected]>
1 parent 17443b3 commit 53d6ce2

File tree

11 files changed

+6
-13
lines changed

11 files changed

+6
-13
lines changed

embedded-wallets/README.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ export const GetStarted = [
104104
'web3 onboarding',
105105
'smart contract wallet',
106106
'account abstraction',
107-
'passkey authentication',
108107
'biometric wallet login',
109108
'gasless transactions',
110109
]}
@@ -138,8 +137,8 @@ The SDKs are now branded as MetaMask Embedded Wallet SDKs (formerly Web3Auth Plu
138137

139138
Get your users started in seconds with familiar login methods they already use:
140139

141-
- Sign in with Google, Twitter, GitHub, and other popular social accounts
142-
- Passwordless login via email, SMS, authenticator apps, or passkeys
140+
- Sign in with Google, Twitter, GitHub and other popular social accounts
141+
- Passwordless login via email, SMS and authenticator apps.
143142
- Bring your own auth system while leveraging our secure wallet infrastructure
144143

145144
### 🛡️ Bank-grade security

embedded-wallets/features/user-account-dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ We recommend encouraging users to:
6363

6464
1. Set up at least three recovery factors.
6565
2. Regularly review connected apps and sessions.
66-
3. Periodically review devices and enable passkeys or an authenticator app.
66+
3. Periodically review devices and enable an authenticator app.
6767

6868
## FAQs
6969

embedded-wallets/features/wallet-pregeneration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Pregenerated Wallets simplify user onboarding by creating wallets for your users
1313
## Why Use Pregenerated Wallets?
1414

1515
- **Seamless Onboarding:** Create wallets as part of the invite or signup process, so users can jump into your app without additional steps.
16-
- **Deferred Wallet Setup:** Delay login setups (e.g., OAuth or passkeys) until users are ready for their first on-chain transaction.
16+
- **Deferred Wallet Setup:** Delay login setups (e.g., OAuth) until users are ready for their first on-chain transaction.
1717
- **Pre-Funding Capability:** Send tokens or rewards to wallets before users claim them, perfect for airdrops, welcome bonuses, or preloaded assets.
1818

1919
## Use Cases

embedded-wallets/sdk/js/advanced/mfa.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ mfaSettings?: MfaSettings;
8787
| `BACKUP_SHARE` | "backUpShareFactor" | Backup share (typically seed phrase) |
8888
| `SOCIAL_BACKUP` | "socialBackupFactor" | Social account backup |
8989
| `PASSWORD` | "passwordFactor" | Password-based authentication |
90-
| `PASSKEYS` | "passkeysFactor" | WebAuthn passkeys support |
9190
| `AUTHENTICATOR` | "authenticatorFactor" | Authenticator app (TOTP) |
9291

9392
### MFA Settings Properties

embedded-wallets/sdk/js/advanced/whitelabel.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ export declare const AUTH_CONNECTION: {
159159
readonly EMAIL_PASSWORDLESS: 'email_passwordless'
160160
readonly SMS_PASSWORDLESS: 'sms_passwordless'
161161
readonly CUSTOM: 'custom'
162-
readonly PASSKEYS: 'passkeys'
163162
readonly AUTHENTICATOR: 'authenticator'
164163
}
165164
```

embedded-wallets/sdk/react/advanced/mfa.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ mfaSettings?: MfaSettings;
8989
| `BACKUP_SHARE` | "backUpShareFactor" | Backup share (typically seed phrase) |
9090
| `SOCIAL_BACKUP` | "socialBackupFactor" | Social account backup |
9191
| `PASSWORD` | "passwordFactor" | Password-based authentication |
92-
| `PASSKEYS` | "passkeysFactor" | WebAuthn passkeys support |
9392
| `AUTHENTICATOR` | "authenticatorFactor" | Authenticator app (TOTP) |
9493

9594
### MFA Settings Properties

embedded-wallets/sdk/react/advanced/whitelabel.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ export declare const AUTH_CONNECTION: {
159159
readonly EMAIL_PASSWORDLESS: 'email_passwordless'
160160
readonly SMS_PASSWORDLESS: 'sms_passwordless'
161161
readonly CUSTOM: 'custom'
162-
readonly PASSKEYS: 'passkeys'
163162
readonly AUTHENTICATOR: 'authenticator'
164163
}
165164
```

embedded-wallets/sdk/vue/advanced/mfa.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ mfaSettings?: MfaSettings;
8989
| `BACKUP_SHARE` | "backUpShareFactor" | Backup share (typically seed phrase) |
9090
| `SOCIAL_BACKUP` | "socialBackupFactor" | Social account backup |
9191
| `PASSWORD` | "passwordFactor" | Password-based authentication |
92-
| `PASSKEYS` | "passkeysFactor" | WebAuthn passkeys support |
9392
| `AUTHENTICATOR` | "authenticatorFactor" | Authenticator app (TOTP) |
9493

9594
### MFA Settings Properties

embedded-wallets/sdk/vue/advanced/whitelabel.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ export declare const AUTH_CONNECTION: {
159159
readonly EMAIL_PASSWORDLESS: 'email_passwordless'
160160
readonly SMS_PASSWORDLESS: 'sms_passwordless'
161161
readonly CUSTOM: 'custom'
162-
readonly PASSKEYS: 'passkeys'
163162
readonly AUTHENTICATOR: 'authenticator'
164163
}
165164
```

sdk/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@ buttonIcon: 'external-arrow',
9191

9292
:::tip Build embedded wallet experiences that work seamlessly with MetaMask
9393
Introducing our latest [Embedded Wallets SDK](connect/javascript-web3auth.md) (Web3Auth), you can now onboard users
94-
instantly and design seamless onchain experiences with social logins, passkeys and more.
94+
instantly and design seamless onchain experiences with social logins and more.
9595
:::

0 commit comments

Comments
 (0)