Skip to content

docs: add configuration section for Artela EVM++ #460

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions tutorials/artela-evm-plus-plus.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,27 @@ address: { Address Associated with the Private Key }

There are four testing accounts available in the local development node for interacting with the EVM chain.

## ⚙️ Configuring the Node

You can modify runtime parameters of the Artela development node by adjusting its configuration files. Follow the steps below to make these changes.

To configure the development node, first access the Docker container by running the following command:

```bash
docker exec -it artroll /bin/bash
```

Inside the container, you will need to modify the following configuration files:

- /root/.artroll/config/app.toml
- /root/.artroll/config/config.toml

After making the necessary changes, return to the Docker host and restart the container to apply the new configuration:

```bash
docker compose restart artroll
```

## 🧪 Build on EVM++

Let’s dive into Artela EVM++ by kicking off with the Hello World project, the following code will guide you through the essentials:
Expand Down
Loading