🟩 🌍 Website / 📜 Documents / 👾 Discord / 🔷 Telegram / 🕵️♂️ Explorer
Node Type | CPU | RAM | Storage |
---|---|---|---|
Testnet | 2.9GHz, 4 cores | 8GB | 500GB |
- First of all you have to install the limino wallet extension / limino web wallet and get the private key.
- Prepare the system to installation.
sudo apt-get update && apt-get upgrade -y
sudo apt-get install wget
cd /root
sudo apt install docker.io
sudo systemctl enable --now docker
- Execute the following command to start launching the node.
wget -O erbie_install.sh https://docker.erbie.io/erbie_install.sh && sudo bash erbie_install.sh
or
wget -O erbie_install.sh https://github.com/hcytmz/Node-Installation-Guides/blob/main/Erbie/erbie_install.sh && sudo bash erbie_install.sh
-
Conduct the command as follows, check whether the Erbie container is normally running or not and if it Shows UP, which means yes.
sudo docker ps -a
- If you want to monitor node operation in real time, you can use the monitoring script.
wget -O monitor.sh https://raw.githubusercontent.com/hcytmz/Node-Installation-Guides/main/Erbie/monitor.sh && sudo bash monitor.sh
- If you waited for a while and couldn't find a peer, execute the following command.
docker restart erbie
- Now, you can become a miner.
curl -X POST -H 'Content-Type:application/json' --data '{"jsonrpc":"2.0","method":"net_peerCount","id":1}' http://127.0.0.1:8545
curl -X POST -H 'Content-Type:application/json' --data '{"jsonrpc":"2.0","method":"eth_blockNumber","id":1}' http://127.0.0.1:8545
The parameters in params are account and block height, replace the first parameter with the account you want to query
curl -X POST -H 'Content-Type:application/json' --data '{"jsonrpc":"2.0","method":"eth_getBalance","params":["Account Address","pending"],"id":1}' http://127.0.0.1:8545
curl -X POST -H "Content-Type:application/json" --data '{"jsonrpc":"2.0","method":"eth_version","id":64}' http://127.0.0.1:8545