From 6d0f2941f51fd0299cdf793e4337ca9ed624dbd7 Mon Sep 17 00:00:00 2001 From: Derrek <80121818+derrekcoleman@users.noreply.github.com> Date: Mon, 23 Dec 2024 15:25:39 -0700 Subject: [PATCH] Fix typo in "EOA" --- .../bridged-btc-gas-fee/account-abstraction/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/learn/builder-guides/bridged-btc-gas-fee/account-abstraction/index.md b/docs/docs/learn/builder-guides/bridged-btc-gas-fee/account-abstraction/index.md index 75e608c6..6a38086d 100644 --- a/docs/docs/learn/builder-guides/bridged-btc-gas-fee/account-abstraction/index.md +++ b/docs/docs/learn/builder-guides/bridged-btc-gas-fee/account-abstraction/index.md @@ -10,7 +10,7 @@ Check out the code of the demo in [this repository](https://github.com/bob-colle ## Smart Contract wallets -This demo showcases wBTC transfer from the smart contract wallet. Smart contract wallets utilize smart contracts rather than single private keys found in Externally Owned Address (EOA) wallets. The programmable nature of smart contract wallets allows for diverse use cases. Unlike EOAs, smart contract wallets can contain logic but rely on EOAs to sign the user operations. Therefore, integration of the smart contract wallet into UI adds an additional complexity - users need to distinguish between the signer (EAO) and the account that holds assets (smart contract wallet). +This demo showcases wBTC transfer from the smart contract wallet. Smart contract wallets utilize smart contracts rather than single private keys found in Externally Owned Address (EOA) wallets. The programmable nature of smart contract wallets allows for diverse use cases. Unlike EOAs, smart contract wallets can contain logic but rely on EOAs to sign the user operations. Therefore, integration of the smart contract wallet into UI adds an additional complexity - users need to distinguish between the signer (EOA) and the account that holds assets (smart contract wallet). ![preview](preview.png)