Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Apply suggestions from code review
Co-authored-by: Byron Gravenorst <[email protected]>
  • Loading branch information
AyushBherwani1998 and bgravenorst authored Dec 15, 2025
commit 27b80e140c5a34c39704f5882b4e21d4ca288ec6
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ keywords: [metamask, smart account, signer, metamask smart account]

# Use Externally Owned Account (EOA) with MetaMask Smart Accounts

Externally Owned Accounts (EOAs) are one of the most widely used wallet (such as MetaMask, Phantom, and more). They consist of a public and private
keypair where the private key is only known to the user. MetaMask Smart Accounts is a signer agnostic implementation that allows you
to use an EOA as a signer for MetaMask Smart Accounts.
Externally Owned Accounts (EOAs) are accounts controlled by a user’s private key (paired with a public address) and are typically accessed through wallet apps like MetaMask. MetaMask Smart Accounts is signer-agnostic, so
you can use an EOA as the signer.

:::info
This guide supports React and React-based frameworks. For Vue, see [Wagmi docs](https://wagmi.sh/vue/getting-started).
Expand Down Expand Up @@ -109,6 +108,6 @@ const smartAccount = await toMetaMaskSmartAccount({

## Next steps

- See how to use [MetaMask Embedded Wallets as a signer](./eoa-wallets.md) to make user onboarding journey easier.
- See how to [send a user operations](../send-user-operation.md).
- See how to use [MetaMask Embedded Wallets as a signer](./eoa-wallets.md) to make the user onboarding journey easier.
- See how to [send a user operation](../send-user-operation.md).
- To sponsor gas for end users, see how to [send a gasless transaction](../send-gasless-transaction.md).
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Checkout the following guides to learn how to configure different signers:
{
href: "/smart-accounts-kit/development/guides/smart-accounts/signers/eoa-wallets",
title: "EOA (e.g. MetaMask)",
description: "Learn how to use EOAs like MetaMAsk with MetaMask Smart Accounts.",
description: "Learn how to use EOAs like MetaMask with MetaMask Smart Accounts.",
},
{
href: "/smart-accounts-kit/development/guides/smart-accounts/signers/privy",
Expand Down
Loading