> For the complete documentation index, see [llms.txt](https://docs.infrablockchain.net/infrablockchain-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.infrablockchain.net/infrablockchain-docs/infrablockchain/service-chains/infra-evm-parachain.md).

# InfraEVM

### Before you begin

Before you begin, Make sure you have the following:

* [Building a Parachain](https://github.com/InfraBlockchainTeam/infrablockspace-docs/blob/master/en/infrablockchain/tutorials/build/build-a-parachain.md)
* [Building an InfraRelayChain](/infrablockchain-docs/infrablockchain/tutorials/build/build-infra-relay-chain.md)
* [Using the Zombie Network](/infrablockchain-docs/infrablockchain/tutorials/test/simulate-parachains.md)

### What is EVM?

EVM stands for Ethereum Virtual Machine. EVM is a runtime environment for executing smart contracts on the Ethereum network. Its key features and functions include:

* **Smart Contract Execution**: The primary role of EVM is to execute smart contracts. Smart Contracts are self-executing contracts with conditions written in code. Ethereum primarily uses the programming language Solidity for this purpose.
* **Turing Completeness**: EVM is Turing complete, meaning it can execute any algorithm given sufficient time and resources. This allows developers to write complex logic and operations within smart contracts.
* **Gas**: Execution of operations in EVM requires computational power, and users pay for this computation in units called "gas." Gas prevents spam and malicious activities on the Ethereum network by imposing costs on operations. The amount of gas required depends on the complexity of the operation being performed.
* **Consensus**: When a smart contract is executed and the state is modified in EVM, all nodes in the Ethereum network must agree on the result. This ensures consistency of the Ethereum ledger across all nodes.
* **Bytecode**: Developers do not write smart contracts in a language directly understood by EVM. Instead, languages like Solidity are compiled into EVM bytecode, which is what EVM executes.
* **Decentralization**: Unlike centralized systems, EVM runs on thousands of devices worldwide, decentralizing Ethereum. This decentralization provides Ethereum with censorship resistance and high fault tolerance.

EVM plays a crucial role in the Ethereum ecosystem, providing the infrastructure necessary to run decentralized applications(dApps) and manage cryptographic assets like Ether(ETH).

### Next steps

* [Building InfraEVM Chain](/infrablockchain-docs/infrablockchain/tutorials/service-chains/infra-evm-parachain.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.infrablockchain.net/infrablockchain-docs/infrablockchain/service-chains/infra-evm-parachain.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.
