> For the complete documentation index, see [llms.txt](https://ethereals-blockchain.gitbook.io/ethereal-chain-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ethereals-blockchain.gitbook.io/ethereal-chain-documentation/evm-integration/evm-bridge.md).

# EVM Bridge

## EVM Bridge

Any Ethereum transaction is wrapped into a native format. In order to execute a native transaction, someone should pay a fee in a native coin. EVM bridge manages this routine in eth\_sendRawTransaction method by wrapping EVM transaction into a native one, paying the native fee, and collecting the EVM fee (gas). The rest of the methods get forwarded to the upstream native RPC as is. This mechanism provides incentives to developers to host independent EVM bridges, improve decentralization and/or serve users of their own dApps.

To run the bridge, provide a path to keypair of fee payer account along with native RPC endpoint, address:port to bind to, and EVM chain id.

evm-bridge keypair.json <https://api.testnet.Ethereal.com> 127.0.0.1:8545 111

For testnet, we provide a public evm-bridge, which is located at <https://evmexplorer.testnet.Ethereal.com/rpc/>

### Gas price, and gas limit collecting:

Each evm-bridge sets its own commission while connecting clients pay this commission via gas in EVM transaction. This mechanism serves as an incentive to host your own evm bridge publicly and improve decentralization.

Refer to EtherealNetwork Clusters to get a list of public clusters with their corresponding chain IDs.


---

# 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://ethereals-blockchain.gitbook.io/ethereal-chain-documentation/evm-integration/evm-bridge.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.
