Giter VIP home page Giter VIP logo

wormholeschain's Introduction

Wormholes Chain

image

Sorularınız için: Türkiye Telegram Grubu

Önce Sunucumuzu güncelliyoruz:

sudo apt-get update && sudo apt-get upgrade

şimdi Docker Kurulumu Yapıyoruz:

sudo apt install docker.io -y
sudo systemctl enable --now docker
systemctl restart docker.service

Kurulum için servis dosyası oluşturuyoruz aşağıdaki komudu yazın

nano ruesandora.sh 

açılan ekranda aşağıdaki kodları tek seferde copy past yapın CTRL+X ve Y ile kaydedip çıkın

#!/bin/bash
#check docker cmd
which docker >/dev/null 2>&1
if  [ $? -ne 0 ] ; then
     echo "docker not found, please install first!"
     echo "ubuntu:sudo apt install docker.io -y"
     echo "centos:yum install  -y docker-ce "
     echo "fedora:sudo dnf  install -y docker-ce"
     exit
fi
#check docker service
docker ps > /dev/null 2>&1
if [ $? -ne 0 ] ; then

     echo "docker service is not running! you can use command start it:"
     echo "sudo service docker start"
     exit
fi

docker stop wormholes > /dev/null 2>&1
docker rm wormholes > /dev/null 2>&1
docker rmi wormholestech/wormholes:v1 > /dev/null 2>&1

if [ -d /wm/.wormholes/keystore ]; then
   read -p "Whether to clear the Wormholes blockchain data history, if yes, press the “y” button, and if not, click “enter.”:" xyz
   if [ "$xyz" = 'y' ]; then
         rm -rf /wm/.wormholes
              read -p "Enter your private key:" ky
   else
         echo "Do not clear"
   fi
else
   read -p "Please import your private key:" ky
fi

mkdir -p /wm/.wormholes/wormholes
if [ -n "$ky" ]; then
   echo $ky > /wm/.wormholes/wormholes/nodekey
fi

docker run -id -e KEY=$ky  -p 30303:30303 -p 8545:8545 -v /wm/.wormholes:/wm/.wormholes --name wormholes wormholestech/wormholes:v1

echo "Your private key is:"
sleep 6
docker exec -it wormholes /usr/bin/cat /wm/.wormholes/wormholes/nodekey

Şimdi Kurulum için servis dosyamızı çalıştırıyoruz

bash ./ruesandora.sh 

Şimdi Wormholes wallet'tan private keyi alalım: Wallet Linki

  • Setings kısmına giriyoruz:

image

  • Security kısmına girelim: image

  • Şifre vs. girip private keyi alın:

image

Yukarıda ruesandora.sh komutunu girdikten sonra az önce aldığımız private keyi girip enterliyoruz:

  • Enter yaptğınızda bu çıktı çıkacak, kaydedin bunları ve private keyinizi

image

bu komutla kontrol ediyoruz:

docker ps

image

Şimdi wormholes cüzdanına geri dönüyoruz:

  • Ayarlardan become a validator sekmesine girelim:
  • Confirm ve 2 onay ile validator oluşturalım:
  • En az 70001 tokenınız olması lazım

image

Bu explorerdan cüzdanınızı aratarak validatörü kontrol edebilirsiniz:

image

wormholeschain's People

Contributors

ruesandora avatar enzifiri avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.