> For the complete documentation index, see [llms.txt](https://docs.rome.builders/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rome.builders/ru/rukovodstva-dlya-razrabotchikov/from-home.md).

# Из дома: достигайте Rome из другой сети

Вашим пользователям не нужно переезжать в Rome. Со своей домашней сети — L2, такой как Arbitrum или Monad, либо Solana — они вносят активы, используют ваше приложение Rome и затем выводят активы обратно. Мост работает on-chain и авторизуется собственной подписью пользователя; вы подключаете к нему своё приложение через один API.

## Как это работает

* **Входящий поток (домашняя сеть → Rome):** активы пользователя зачисляются на Rome посредством `settle_inbound_bridge` программы, авторизованной собственной подписанной **EIP-712** интенцией — привилегированного участника для расчётов нет.
* **Исходящий поток (Rome → домашняя сеть):** `RomeBridgeWithdraw` (в [`rome-solidity`](https://github.com/rome-protocol/rome-solidity)) инициирует вывод; актив высвобождается в домашней сети.
* **Транспорт:** Circle **CCTP** для USDC, **Wormhole** для ETH и других активов.
* **Оркестрация:** вне блокчейна [`rome-bridge-api`](https://github.com/rome-protocol/rome-bridge-api) формирует маршрут, проверяет транзакцию в исходной сети и оплачивает комиссию за расчёт. Он не хранит средства и не имеет ключей — он может лишь инициировать то, что пользователь уже подписал.

## Соберите это

1. **Получить маршрут и котировку** из `rome-bridge-api` для исходной сети пользователя + актива → вашей сети Rome; он возвращает канал (CCTP или Wormhole) и шаги.
2. **Пусть пользователь подпишет** транзакцию в исходной сети и интенцию EIP-712.
3. **Отправьте** через API; он проверяет исходную транзакцию и оплачивает расчёт. Пользователь оказывается в Rome с пополненным балансом и использует ваше приложение.
4. **Вывод через мост** в обратном направлении через `RomeBridgeWithdraw`.

Формы котировок/маршрутов, каналы и детали по каждому активу находятся в репозитории в [`docs/BRIDGE_API_ARCHITECTURE.md`](https://github.com/rome-protocol/rome-bridge-api/blob/main/docs/BRIDGE_API_ARCHITECTURE.md).

## Изучите код

* [appia](https://github.com/rome-protocol/appia) — приложение из домашней сети: пользователи переводят USDC из своей домашней сети и пользуются DeFi на стороне Rome, не покидая её.
* [rome-bridge-api](https://github.com/rome-protocol/rome-bridge-api) — оркестратор (котировка → проверка → спонсирование).

## Что дальше

* [Получение финансирования](/ru/resursy/faucets.md) — тот же маршрут моста пополняет новый dev-кошелёк.
* [Разверните Solidity](/ru/rukovodstva-dlya-razrabotchikov/deploy-solidity.md) — разместите своё приложение в Rome.


---

# 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.rome.builders/ru/rukovodstva-dlya-razrabotchikov/from-home.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.
