> For the complete documentation index, see [llms.txt](https://timelessx.gitbook.io/timeless-x/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://timelessx.gitbook.io/timeless-x/smart-wallet/account-abstraction-101/what-is-externally-owned-account-eoa.md).

# What is Externally Owned Account (EOA)?

An Externally Owned Account (EOA) serves as a means for storing and transferring ETH, ERC-20 tokens, and various digital assets. An EOA is generated from a public key and is secured by a private key:

* Public key: This is a 20-byte hexadecimal identifier, such as 0x0000000000000000000000000000000000000001. It is derived from the Ethereum network address and used for identifying the account during transactions.
* Private key: Essentially the EOA's password or seed phrase, the private key is used for signing transactions and is exclusively known to the account owner.

The legitimacy of transactions from an EOA is not determined by code or smart contract logic. Provided the private key is known, the account owner has the capability to execute any transaction. This process is contingent upon the verification of the user’s signature and nonce.

> **Sources**: [Ethereum](https://eips.ethereum.org/EIPS/eip-4337), [ERC4337.io](https://www.erc4337.io/), [Alchemy](https://www.alchemy.com/learn/account-abstraction)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://timelessx.gitbook.io/timeless-x/smart-wallet/account-abstraction-101/what-is-externally-owned-account-eoa.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
