> For the complete documentation index, see [llms.txt](https://docs.squads.so/main/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.squads.so/main/squadsx-beta-development/understanding-the-squadsx-extension-wallet.md).

# Understanding the SquadsX Extension Wallet

Technically, SquadsX is a Wallet Standard-compliant browser extension wallet. It holds the private key of a Squad member, which it uses for signing transactions. While linked to applications, SquadsX communicates the Squads Multisig Vault PDA as the active address. The transaction signing process occurs behind the scenes as follows:

1. The application creates an original transaction (OT) that uses the Vault as the "signer" address.
2. SquadsX disassembles the OT, crafting a new Multisig Transaction (MT) from the OT's instructions. Essentially, the MT is a transaction that saves the instructions on-chain, allowing for later execution upon multisig member approval.
3. SquadsX uses the member's private key to sign the MT, returning a signed MT that "wraps" the OT back to the application.
4. The application submits the signed MT to an RPC node, creating a new Squads Multisig Transaction account on-chain.
5. With the completion of the app-side process, an asynchronous voting procedure starts, usually conducted in the Squads app or an alternative user interface.
6. Once the Squads Multisig Transaction receives approval, the transaction execution commences within the Squads app, implementing the instructions contained within the OT via one or more CPI calls "signed" by the Vault PDA.


---

# 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://docs.squads.so/main/squadsx-beta-development/understanding-the-squadsx-extension-wallet.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.
