> For the complete documentation index, see [llms.txt](https://docs.developers.thundercore.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.developers.thundercore.com/deploying-on-thundercore/migrate-from-ethereum.md).

# Migrate from Ethereum

ThunderCore is a scaling solution for public blockchain. ThunderCore supports all existing Ethereum tooling along with faster and much much much cheaper transactions.

If you are looking to integrate with ThunderCore, you are in the right place.

### Overview

Our blockchain natively supports EVM-compatible smart contracts. This following describes the steps required to port your existing Ethereum DApp to ThunderCore. If you haven't created a DApp before, checkout [Using Hardhat](/deploying-on-thundercore/using-hardhat-include-create-a-project-steps.md) tutorial.

#### Connecting to our network <a href="#connecting-to-our-network" id="connecting-to-our-network"></a>

To connect to our network, see the RPC endpoints below. You can perform any RPC operation available in Ethereum on these URLs.

| Network | RPC endpoint                                                              | Network ID |
| ------- | ------------------------------------------------------------------------- | ---------- |
| Mainnet | <https://mainnet-rpc.thundercore.com>                                     | 108        |
|         | <https://mainnet-rpc.thundertoken.net>                                    | 108        |
|         | [https://mainnet-rpc.thundercore.io/](https://mainnet-rpc.thundercore.io) | 108        |
| Testnet | <https://testnet-rpc.thundercore.com>                                     | 18         |

If you're using MetaMask, specify one of these URLs as a new, custom RPC.

If you're using Solidity, set the target `evmVersion` to `london.`

#### Yup, that's it <a href="#yup-thats-it" id="yup-thats-it"></a>

No need to rewrite your smart contracts or change any of your infrastructure code, you should be good to go! If you are facing any problems, please reach out on our [Teleram](https://t.me/thunder_official).


---

# 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.developers.thundercore.com/deploying-on-thundercore/migrate-from-ethereum.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.
