Skip to content
Merged
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: 2 additions & 3 deletions embedded-wallets/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ export const GetStarted = [
'web3 onboarding',
'smart contract wallet',
'account abstraction',
'passkey authentication',
'biometric wallet login',
'gasless transactions',
]}
Expand Down Expand Up @@ -138,8 +137,8 @@ The SDKs are now branded as MetaMask Embedded Wallet SDKs (formerly Web3Auth Plu

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

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

### 🛡️ Bank-grade security
Expand Down
2 changes: 1 addition & 1 deletion embedded-wallets/features/user-account-dashboard.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ We recommend encouraging users to:

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

## FAQs

Expand Down
2 changes: 1 addition & 1 deletion embedded-wallets/features/wallet-pregeneration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pregenerated Wallets simplify user onboarding by creating wallets for your users
## Why Use Pregenerated Wallets?

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

## Use Cases
Expand Down
1 change: 0 additions & 1 deletion embedded-wallets/sdk/js/advanced/mfa.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ mfaSettings?: MfaSettings;
| `BACKUP_SHARE` | "backUpShareFactor" | Backup share (typically seed phrase) |
| `SOCIAL_BACKUP` | "socialBackupFactor" | Social account backup |
| `PASSWORD` | "passwordFactor" | Password-based authentication |
| `PASSKEYS` | "passkeysFactor" | WebAuthn passkeys support |
| `AUTHENTICATOR` | "authenticatorFactor" | Authenticator app (TOTP) |

### MFA Settings Properties
Expand Down
1 change: 0 additions & 1 deletion embedded-wallets/sdk/js/advanced/whitelabel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ export declare const AUTH_CONNECTION: {
readonly EMAIL_PASSWORDLESS: 'email_passwordless'
readonly SMS_PASSWORDLESS: 'sms_passwordless'
readonly CUSTOM: 'custom'
readonly PASSKEYS: 'passkeys'
readonly AUTHENTICATOR: 'authenticator'
}
```
Expand Down
1 change: 0 additions & 1 deletion embedded-wallets/sdk/react/advanced/mfa.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ mfaSettings?: MfaSettings;
| `BACKUP_SHARE` | "backUpShareFactor" | Backup share (typically seed phrase) |
| `SOCIAL_BACKUP` | "socialBackupFactor" | Social account backup |
| `PASSWORD` | "passwordFactor" | Password-based authentication |
| `PASSKEYS` | "passkeysFactor" | WebAuthn passkeys support |
| `AUTHENTICATOR` | "authenticatorFactor" | Authenticator app (TOTP) |

### MFA Settings Properties
Expand Down
1 change: 0 additions & 1 deletion embedded-wallets/sdk/react/advanced/whitelabel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ export declare const AUTH_CONNECTION: {
readonly EMAIL_PASSWORDLESS: 'email_passwordless'
readonly SMS_PASSWORDLESS: 'sms_passwordless'
readonly CUSTOM: 'custom'
readonly PASSKEYS: 'passkeys'
readonly AUTHENTICATOR: 'authenticator'
}
```
Expand Down
1 change: 0 additions & 1 deletion embedded-wallets/sdk/vue/advanced/mfa.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ mfaSettings?: MfaSettings;
| `BACKUP_SHARE` | "backUpShareFactor" | Backup share (typically seed phrase) |
| `SOCIAL_BACKUP` | "socialBackupFactor" | Social account backup |
| `PASSWORD` | "passwordFactor" | Password-based authentication |
| `PASSKEYS` | "passkeysFactor" | WebAuthn passkeys support |
| `AUTHENTICATOR` | "authenticatorFactor" | Authenticator app (TOTP) |

### MFA Settings Properties
Expand Down
1 change: 0 additions & 1 deletion embedded-wallets/sdk/vue/advanced/whitelabel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ export declare const AUTH_CONNECTION: {
readonly EMAIL_PASSWORDLESS: 'email_passwordless'
readonly SMS_PASSWORDLESS: 'sms_passwordless'
readonly CUSTOM: 'custom'
readonly PASSKEYS: 'passkeys'
readonly AUTHENTICATOR: 'authenticator'
}
```
Expand Down
2 changes: 1 addition & 1 deletion sdk/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ buttonIcon: 'external-arrow',

:::tip Build embedded wallet experiences that work seamlessly with MetaMask
Introducing our latest [Embedded Wallets SDK](connect/javascript-web3auth.md) (Web3Auth), you can now onboard users
instantly and design seamless onchain experiences with social logins, passkeys and more.
instantly and design seamless onchain experiences with social logins and more.
:::
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function Home(): JSX.Element {
{
title: 'Create embedded wallets',
description:
'Onboard power users and first-time users in seconds via social logins, passkeys, or by integrating your own authentication providers.',
'Onboard power users and first-time users in seconds via social logins, or by integrating your own authentication providers.',
href: '/embedded-wallets',
buttonIcon: 'arrow-right',
},
Expand Down
Loading