Skip to content
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

Update README.md #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
34 changes: 28 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,28 @@ sudo apt install -y build-essential libssl-dev libffi-dev git curl screen
git clone https://github.com/exorde-labs/ExordeModuleCLI.git
```

## Burası uzun bir yükleme sürecek:
## Metamask yazdığım yere 0xli başlayan metamask adresi giriyoruz:
* Testnet cüzdanı kullanın
```
sudo su
cd ExordeModuleCLI
docker build -t exorde-cli .
docker run -d --restart unless-stopped --pull always --name exorde-cli rg.fr-par.scw.cloud/exorde-labs/exorde-cli -m MetamaskAdres -l 4
```

## Bir screen açıyoruz:
```
screen -S exorde
```

## Metamask yazdığım yere 0xli başlayan metamask adresi giriyoruz:
## Aşağıdaki işlemleri Screen içinde yapıyoruz:

* Testnet cüzdanı kullanın
* Screen içine giriyoruz önce aşağıdaki komudu yazıp yeni Container_ID kullanacağız.. Container_ID yazan yere ID'nizi yazın!
![image](https://user-images.githubusercontent.com/99053148/202844709-b078b77d-f813-4d2f-bc46-1a6eb2cab21c.png)

```
docker run -it exorde-cli -m metamask -l 2
docker ps
```
```
docker logs --follow Container_ID
```

## Ve gördüğünüz gibi çalışıyor:
Expand All @@ -83,6 +87,24 @@ docker run -it exorde-cli -m metamask -l 2

![image](https://user-images.githubusercontent.com/101149671/201302924-3d6c7127-6343-47fc-853b-353715b3e018.png)

## Node sıfırlayıp yeniden kurmak için ne yapmam lazım:
* Önce CTRL + C ile screen içindeki nodu durdurup Ctrl A+D ile screen dışına çıkıyoruz
* Sıra ile aşağıdaki komutları girin Yeni Docker Container oluştuyoruz
* Container_ID yazan yere ID'nizi yazın!
![image](https://user-images.githubusercontent.com/99053148/202844795-3e1c6645-27a8-4f58-b16a-44deff1e8c13.png)

```
docker ps
```
```
docker stop Container_ID
```
```
docker rm Container_ID
```
```
docker run -d --restart unless-stopped --pull always --name exorde-cli rg.fr-par.scw.cloud/exorde-labs/exorde-cli -m MetamaskAdres -l 4
```

## Gerekli komutlar:

Expand Down