# Regarding Solana's "Minimum Balance"

On the Solana blockchain, to keep an account active (i.e., to prevent the account from being frozen), a certain minimum balance must be maintained. This is to pay the rent for storing account data. The minimum balance on Solana is calculated based on the size of the account data and the current rent rate on the chain. Here are some key points:

1. **Account Rent Calculation**: Solana uses the account size and the rent rate to calculate the minimum balance. Generally, the minimum balance for a regular account is around 0.002 SOL.
2. **Data Size**: Different types of accounts (e.g., regular accounts, token accounts, contract accounts) require different minimum balances because they occupy different amounts of storage space.
3. **On-Chain Adjustments**: The rent rate and minimum balance requirements on the Solana network may change over time and with network conditions.

To ensure that your account is not frozen, it is recommended to keep some extra SOL balance to accommodate possible changes.

Data source: [Solana Documentation](https://solana.com/docs/rpc/http/getminimumbalanceforrentexemption)


---

# 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://help.tokenpocket.pro/en/wallet-faq-en/solana-wallet/minimum-balance.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.
