Skip to content

Latest commit

 

History

History
48 lines (28 loc) · 1.71 KB

README.md

File metadata and controls

48 lines (28 loc) · 1.71 KB

For-top-100-nodes

If your node is down already, follow this steps to make it back online, without paying any gas fee

Firstly, be sure that, you back up your "peer-id.json" file (thats located in root/quickstart-archaeologist and old version ".env" (we will use it for some info)

Lets clean the old files and start to set up

cd && rm -rf quickstart-archaeologist

git clone https://github.com/sarcophagus-org/quickstart-archaeologist && cd quickstart-archaeologist

cp .env.example .env
nano .env 

Now, we have a new version of ".env" file, we will fill it with our old info and there is some new settings in it. we will use etherium mainnet wss connection.Simply, register an infura account from "app.infura.io" ,no card needed and free for daily 100k request. Then get your wss url from your dashboard.

infura dashboad

Try to fill all green lines with your informations like on the photo

new version .env file

After we fill the ".env" file correctly, "ctrl x and y" to save.

copy your old .peerid.json file to your new "quickstart-archaeologist" folder.

cp peer-id.json /root/quickstart-archaeologist

Also,we will use new docker compose command to pull and start to node

COMPOSE_PROFILES=service NETWORK=mainnet docker compose pull
COMPOSE_PROFILES=service NETWORK=mainnet docker compose up -d

It should be done, check the logs, search for any error, log command is new too...

COMPOSE_PROFILES=service NETWORK=mainnet docker compose logs -f