# Notes on Solana Transfers

When creating a new wallet on Solana, it generates an address with a length of either 43 or 44 characters, both of which are valid. Removing any digit from a 44-character address or adding any digit to a 43-character address will still result in a valid 43/44-character address. However, this modified address has no relation to the original address/private key, as it is not derived from the private key. Consequently, there is no corresponding private key for such an address, essentially making it a 'black hole' address.

Solana addresses are Base58 encoded without a checksum, meaning they can only verify characters and length but cannot validate if the address has been modified. Addresses with modified characters can still be used normally. Similarly, TRON (TRX) addresses also use Base58 encoding but include a checksum. If the address is modified, the checksum will fail.

<mark style="color:red;">Therefore, when making transfers using Solana wallets, it's crucial to verify the integrity of the recipient address. Otherwise, if there's an issue with the destination address, the assets transferred may be lost irreversibly.</mark>


---

# 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/sol-address.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.
