# Typescript

- [Overview](https://docs.squads.so/main/development/typescript/overview.md): Build with the Squads v4 Typescript SDK
- [Guides](https://docs.squads.so/main/development/typescript/guides.md)
- [Create a Squad and execute your first transaction](https://docs.squads.so/main/development/typescript/guides/create-a-squad-and-execute-your-first-transaction.md): Using multisigCreateV2 and Vault Transactions to execute your first actions with Squads
- [Execute a batch of transactions](https://docs.squads.so/main/development/typescript/guides/execute-a-batch-of-transactions.md): Leverage batches to couple transactions
- [Reclaim transaction rent](https://docs.squads.so/main/development/typescript/guides/reclaim-transaction-rent.md)
- [Add members and change threshold](https://docs.squads.so/main/development/typescript/guides/add-members-and-change-threshold.md)
- [Instructions](https://docs.squads.so/main/development/typescript/instructions.md)
- [Create Multisig](https://docs.squads.so/main/development/typescript/instructions/create-multisig.md): Create a Squads multisig
- [Create Config Transaction](https://docs.squads.so/main/development/typescript/instructions/create-config-transaction.md): Change global config on your multisig
- [Create Vault Transaction](https://docs.squads.so/main/development/typescript/instructions/create-vault-transaction.md): Add arbitrary transactions to execute through your multisig
- [Create Proposal](https://docs.squads.so/main/development/typescript/instructions/create-proposal.md): Handle consensus and enable execution for Transactions
- [Approve Proposal](https://docs.squads.so/main/development/typescript/instructions/approve-proposal.md): Cast an approval on a given transaction's proposal
- [Reject Proposal](https://docs.squads.so/main/development/typescript/instructions/reject-proposal.md): Cast a rejection on a given transaction's proposal
- [Cancel Proposal](https://docs.squads.so/main/development/typescript/instructions/cancel-proposal.md): Cancel a proposal that is stale, or of approved status
- [Execute Config Transaction](https://docs.squads.so/main/development/typescript/instructions/execute-config-transaction.md): Execute an approved Config Transaction
- [Execute Vault Transaction](https://docs.squads.so/main/development/typescript/instructions/execute-vault-transaction.md): Execute an approved vault transaction
- [Create Batch](https://docs.squads.so/main/development/typescript/instructions/create-batch.md): Creating a batch for coupling transactions
- [Add To Batch](https://docs.squads.so/main/development/typescript/instructions/add-to-batch.md): Adding a transaction to an active batch account
- [Close Vault Transaction Account](https://docs.squads.so/main/development/typescript/instructions/close-vault-transaction-account.md): Reclaim rent from a stale, cancelled, or executed Vault Transaction
- [Controlled Multisig Instructions](https://docs.squads.so/main/development/typescript/instructions/controlled-multisig-instructions.md): Instructions that are only accessible to multisigs with a Config Authority.
- [Add Member](https://docs.squads.so/main/development/typescript/instructions/controlled-multisig-instructions/add-member.md): Add a Member via Config Authority
- [Remove Member](https://docs.squads.so/main/development/typescript/instructions/controlled-multisig-instructions/remove-member.md): Remove a member via Config Authority
- [Set Rent Collector](https://docs.squads.so/main/development/typescript/instructions/controlled-multisig-instructions/set-rent-collector.md): Edit rent collector address via Config Authority
- [Add spending limit](https://docs.squads.so/main/development/typescript/instructions/controlled-multisig-instructions/add-spending-limit.md): Add a spending limit via Config Authority
- [Remove Spending Limit](https://docs.squads.so/main/development/typescript/instructions/controlled-multisig-instructions/remove-spending-limit.md): Remove a spending limit via Config Authority
- [Accounts](https://docs.squads.so/main/development/typescript/accounts.md)
- [Multisig](https://docs.squads.so/main/development/typescript/accounts/multisig.md): Main configuration account for Squads multisigs
- [Vault](https://docs.squads.so/main/development/typescript/accounts/vault.md): Accounts that store assets, and sign for executed transactions
- [Transactions](https://docs.squads.so/main/development/typescript/accounts/transactions.md): Accounts that store different types of transactions
- [Proposal](https://docs.squads.so/main/development/typescript/accounts/proposal.md): Stores information on voting and status of a transaction
- [Batch](https://docs.squads.so/main/development/typescript/accounts/batch.md)


---

# Agent Instructions: 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:

```
GET https://docs.squads.so/main/development/typescript.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
