> 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/ar/albda/why-rome.md).

# لماذا Rome؟

تجلب عدة مشاريع توافق EVM إلى Solana. أما Rome فيتبع نهجًا مختلفًا جذريًا.

## الميزات المميِّزة الأساسية

### 1. القابلية التركيبية الذرّية عبر CPI

Rome هو بيئة EVM الوحيدة التي يمكن فيها لعقود Solidity استدعاء برامج Solana ضمن المعاملة نفسها. يمكن لدالة Solidity واحدة أن:

```solidity
// كلها ضمن معاملة ذرّية واحدة:
int256 price = IPyth(PYTH).getPrice("SOL/USD");        // قراءة أوراكل Pyth
uint256 quote = IJupiter(JUPITER).getQuote(USDC, SOL);  // الحصول على تسعيرة Jupiter
IJupiter(JUPITER).swap(USDC, SOL, amount, minOut);       // تنفيذ المبادلة
IKamino(KAMINO).deposit(SOL, collateralAmount);          // الإيداع في Kamino
```

إذا فشلت أي خطوة، تُلغى المعاملة بالكامل. لا تنفيذ جزئي، ولا حالات سباق.

### 2. حالة موحَّدة

في Rome، يكون رمز SPL وتمثيله بصيغة ERC-20 هما الحساب الأساسي نفسه. عندما ينقل عقد Solidity عملة USDC، فإنه ينقل USDC الفعلية من نوع SPL — وليس نسخة مغلَّفة.

وهذا يعني:

* **لا تجزئة للسيولة** — تتشارك Solana DeFi وEVM DeFi نفس المجمعات
* **لا مخاطر للجسور** — لا يوجد جسر يمكن استغلاله لأنه لا يوجد جسر أصلًا
* **قابلية تركيب فورية** — ترى عقود EVM تغييرات حالة Solana فورًا

### 3. سيادة التطبيق

يحصل كل تطبيق على Rome على بيئة EVM خاصة به:

* **معرّف سلسلة مخصّص** — تطبيقك هو سلسلته الخاصة
* **رمز غاز مخصّص** — أي رمز SPL، مُسعَّر عبر مجمع سيولة Meteora LP
* **إيرادات الغاز** — تتراكم الرسوم لتطبيقك، وليس لبروتوكول Rome
* **أدوات EVM كاملة** — يتصل مستخدموك عبر MetaMask، ويستخدم مطوروك Hardhat

## متى تستخدم Rome

**استخدم Rome عندما:**

* تريد عقود EVM مع وصول مباشر إلى DeFi على Solana
* تريد سلسلة EVM سيادية على Solana مع رمز غاز خاص بك
* تقوم بنقل عقود Ethereum التي تحتاج إلى سرعة Solana وسيولتها
* تحتاج إلى عمليات ذرّية عبر برامج EVM وSolana

**فكّر في بدائل عندما:**

* تحتاج فقط إلى برامج Solana القياسية (استخدم Solana/Anchor الأصلي)
* تحتاج إلى تسوية على الشبكة الرئيسية لـ Ethereum (استخدم L2 تقليديًا)
* تحتاج إلى رسائل عبر السلاسل دون تنفيذ EVM (استخدم Wormhole/Hyperlane مباشرةً)

## ما التالي

* [البنية المعمارية](/ar/albda/architecture.md) — كيف تعمل Rome EVM داخل Solana
* [البدء السريع](/ar/albda/quickstart.md) — نشر عقدك الأول


---

# 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/ar/albda/why-rome.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.
