> 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/id/panduan-pengembang/from-home.md).

# Dari rumah: jangkau Rome dari chain lain

Pengguna Anda tidak perlu pindah ke Rome. Dari chain asal mereka — L2 seperti Arbitrum atau Monad, atau Solana — mereka membawa aset masuk, menggunakan aplikasi Rome Anda, dan mengambil aset kembali keluar. Jembatan ini on-chain dan diotorisasi oleh tanda tangan pengguna sendiri; Anda menghubungkan aplikasi Anda ke sana melalui satu API.

## Cara kerjanya

* **Masuk (home → Rome):** aset pengguna dikreditkan di Rome oleh `settle_inbound_bridge` program, yang diotorisasi oleh tanda tangan pengguna sendiri yang ditandatangani **EIP-712** niat — tidak ada penyelesai istimewa.
* **Keluar (Rome → home):** `RomeBridgeWithdraw` (di [`rome-solidity`](https://github.com/rome-protocol/rome-solidity)) memulai keluarnya aset; aset dilepaskan di chain asal.
* **Transport:** Circle **CCTP** untuk USDC, **Wormhole** untuk ETH dan aset lainnya.
* **Orkestrasi:** di luar rantai [`rome-bridge-api`](https://github.com/rome-protocol/rome-bridge-api) menentukan rute, memverifikasi transaksi di chain sumber, dan mensponsori biaya penyelesaian. Ia tidak menyimpan dana maupun kunci — ia hanya dapat memicu apa yang sudah ditandatangani pengguna.

## Bangun

1. **Dapatkan kuotasi rute** dari `rome-bridge-api` untuk chain sumber + aset pengguna → chain Rome Anda; ini mengembalikan jalurnya (CCTP atau Wormhole) dan langkah-langkahnya.
2. **Minta pengguna menandatangani** transaksi di chain sumber dan niat EIP-712.
3. **Kirim** melalui API; API memverifikasi transaksi sumber dan mensponsori penyelesaian. Pengguna tiba di Rome dengan dana dan memakai aplikasi Anda.
4. **Keluar** secara terbalik melalui `RomeBridgeWithdraw`.

Bentuk kuotasi/rute, jalur, dan detail per aset ada di repo [`docs/BRIDGE_API_ARCHITECTURE.md`](https://github.com/rome-protocol/rome-bridge-api/blob/main/docs/BRIDGE_API_ARCHITECTURE.md).

## Baca kodenya

* [appia](https://github.com/rome-protocol/appia) — aplikasi dari chain asal: pengguna membawa USDC dari chain asal mereka dan menggunakan DeFi di sisi Rome tanpa meninggalkannya.
* [rome-bridge-api](https://github.com/rome-protocol/rome-bridge-api) — orkestrator (kuotasi → verifikasi → sponsor).

## Selanjutnya

* [Mendapat pendanaan](/id/sumber-daya/faucets.md) — jalur bridge yang sama mendanai dompet pengembang baru.
* [Deploy Solidity](/id/panduan-pengembang/deploy-solidity.md) — tempatkan aplikasi Anda di 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/id/panduan-pengembang/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.
