> For the complete documentation index, see [llms.txt](https://docs.bsc.lista.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bsc.lista.org/zh-cn/kai-fa-zhe/rwa/user-operations.md).

# 用户操作

用户仅调用 `RWAEarnPool` 方法进行订阅和赎回。

## 流程

1. 用户将 `USDT` 存入 `RWAEarnPool`。
2. 池向用户铸造份额。
3. 资金通过 `RWAAdapter` 路由到外部金库流程。
4. 赎回时，用户首先请求提款，然后在资金可用时领取。

## 方法

| 方法                | 描述                                        |
| ----------------- | ----------------------------------------- |
| `deposit`         | 向 `receiver` 铸造份额并从 `msg.sender` 转移资产。    |
| `requestWithdraw` | 从 `msg.sender` 销毁份额，记录请求的接收者和异步支付的金额。     |
| `claimWithdraw`   | 在适配器资助的流动性在 `RWAEarnPool` 中可用后，将资产转移给接收者。 |

## 提款生命周期

提款是异步的：

* `requestWithdraw` 创建待处理请求
* 机器人通过适配器完成外部金库的赎回
* 适配器资金返回到赚取池
* 用户调用 `claimWithdraw`


---

# 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.bsc.lista.org/zh-cn/kai-fa-zhe/rwa/user-operations.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.
