# Common Frontend Flow

#### Fund Account Flow

1. Call `fundClient.getSupportedAssets()` to populate an asset picker in your UI.
2. Once the user selects an asset and network, call `fundClient.getUdaAddress(...)` via your backend route to retrieve a deposit address.
3. Display the UDA to the user with the expected asset, network, and any minimum-amount guidance.
4. Poll or subscribe to on-chain events on the destination network to confirm asset arrival at `recipientAddr`.
5. Once confirmed, update the UI to reflect the user's new balance — at which point they can trade, pay, save, or allocate into vaults using `CityClient`.


---

# 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://city-protocol.gitbook.io/docs/software-development-kit/deposit-add-fund/common-frontend-flow.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.
