> For the complete documentation index, see [llms.txt](https://docs.zerowave.my.id/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zerowave.my.id/testnet/erbie/installation.md).

# Installation

## Manual Setup Validator Node

For Install Manually Follow This Step

> Before run make sure you create wallet first and have 70k balance to became validator.

### Update Dependency

```
sudo apt update && sudo apt upgrade -y
```

### install Docker

> you can skip this if have docker in your machine

```
sudo apt-get update
sudo apt install jq
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin
sudo apt-get install docker-compose-plugin
sudo apt-get install docker-compose
```

### Auto Install Script

```
mkdir wormholes && cd wormholes
wget -O wormholes_install.sh https://docker.wormholes.com/wormholes_install.sh && sudo bash wormholes_install.sh
```

* Enter Private Key from Limino wallet, it should show consistent Private Key without 0x

## Usefull Command

### Monitor Node

```
screen -R wormholes
wget -0 CheckWorm.sh https://raw.githubusercontent.com/MNFaizi/nodeBlock_manual/main/Wormholes/CheckWorm.sh
chmod +x CheckWorm.sh
./CheckWorm.sh
```

### Check Account Balance

```
curl -X POST -H 'Content-Type:application/json' --data '{"jsonrpc":"2.0","method":"eth_getBalance","params":["Address","pending"],"id":1}' http://127.0.0.1:8545
```

`Address` - change with your own


---

# 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:

```
GET https://docs.zerowave.my.id/testnet/erbie/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
