Chain ID: e70aaab8997e1dfce58fbfac80cbbb8fecec7b99cf982a9444273cbc64c41473
Based on tag: v2.0.2
Please join out Jungle testnet Telegram channel
Network Monitor: https://monitor.jungletestnet.io/
! This repo is for manual installation. Please use our auto installer script for auto installation:
https://github.com/EOS-Jungle-Testnet/Node-Auto-installation
To start a Jungle 2 node you need install EOSIO software. You can compile from sources or install from precompiled binaries:
A. Create folder, download sources, compile and install:
mkdir /opt/EOSIO
cd /opt/EOSIO
git clone https://github.com/eosio/eos --recursive
cd eos
git checkout v2.0.2
git submodule update --init --recursive
./scripts/eosio_build.sh -P -y
./scripts/eosio_install.sh
B. Copy binaries to keep old versions and make sym link to latest:
mkdir /opt/bin
mkdir /opt/bin/v2.0.2
cp /opt/EOSIO/eos/build/programs/nodeos/nodeos /opt/bin/v2.0.2/
cp /opt/EOSIO/eos/build/programs/cleos/cleos /opt/bin/v2.0.2/
cp /opt/EOSIO/eos/build/programs/keosd/keosd /opt/bin/v2.0.2/
ln -sf /opt/bin/v2.0.2 /opt/bin/bin
So /opt/bin/bin will point to latest binaries
A. Download the latest version of EOSIO for your OS from:
https://github.com/EOSIO/eos/releases/tag/v2.0.2
For example, for ubuntu 18.04 you need to download deb eosio_2.0.2-1-ubuntu-18.04_amd64.deb
To install it you can use apt:
apt install ./eosio_2.0.2-1-ubuntu-18.04_amd64.deb
It will download all dependencies and install EOSIO to /usr/opt/eosio/v2.0.1
B. Copy binaries to keep old versions and make sym link to latest:
mkdir /opt/bin
mkdir /opt/bin/v2.0.2
cp /usr/opt/eosio/v2.0.2/bin/nodeos /opt/bin/v2.0.2/
cp /usr/opt/eosio/v2.0.2/bin/cleos /opt/bin/v2.0.2/
cp /usr/opt/eosio/v2.0.2/bin/keosd /opt/bin/v2.0.2/
ln -sf /usr/opt/eosio/v2.0.2/bin /opt/bin/bin
So /opt/bin/bin will be point to latest binaries
cd /opt/EOSIO/eos
git checkout -f
git branch -f
git pull
git checkout v2.0.1
git submodule update --init --recursive
./scripts/eosio_build.sh -P -y
./scripts/eosio_uninstall.sh
./scripts/eosio_install.sh
mkdir /opt/bin/v2.0.2
cp /opt/EOSIO/eos/build/programs/nodeos/nodeos /opt/bin/v2.0.2/
cp /opt/EOSIO/eos/build/programs/cleos/cleos /opt/bin/v2.0.2/
cp /opt/EOSIO/eos/build/programs/keosd/keosd /opt/bin/v2.0.2/
ln -sf /opt/bin/v2.0.2 /opt/bin/bin
! Warning ! For 1.8.0: With this release, version 1.70 of Boost is also supported and is the preferred version that the build script will pin to if the -P flag is passed in. While Boost version 1.67 is still supported, the minimum version of Boost supported in EOSIO is expected to increase to 1.70 in the future. Since this release requires a replay from genesis for everyone upgrading from v1.7.x and earlier, users should consider forcing their EOSIO build to use Boost 1.70 by passing in the -P -f flags to the build script. Doing so will make it less likely to require portable snapshots in order to upgrade an existing chain state database to work with a future version of EOSIO.
Upgrading from v1.8.0-rc1 to v1.8.0-rc2 for a nodeos configured to run with plugins that handle history requires a replay from genesis similar to the upgrade from v1.7.x to v1.8.0-rc2 (see the upgrade guide).
If nodeos is not configured with any history-related plugins, it is possible to upgrade from v1.8.0-rc1 to v1.8.0-rc2 without doing a replay from genesis. The snapshots generated and accepted by both versions are identical. So the operator could:
- Launch nodeos v1.8.0-rc1 in irreversible mode and with the
producer_api_plugin
enabled by passing the--read-mode=irreversible
--plugin=eosio::producer_api_plugin
command-line options. (Note that producers cannot be configured when launching nodeos in irreversible mode.) - Create a snapshot of the last irreversible block by calling the
create_snapshot
RPC (for example by using the commandcurl -X POST http:/127.0.0.1:8888/v1/producer/create_snapshot -d '{}' | jq .
). Record the path to the generated snapshot file insnapshot_name
field of the returned JSON object. - Shut down nodeos and delete the
blocks/reversible
andstate
sub-directories within the data directory. - Launch nodeos v1.8.0-rc2 from the generated snapshot using
--snapshot
command line option.
To upgrade precompiled installation pleasse folow the same steps as in 1.2 (Installation from precompiled)
Check our auto installer script: https://github.com/EOS-Jungle-Testnet/Node-Auto-installation
mkdir /opt/Jungle2Testnet
cd /opt/Jungle2Testnet
git clone https://github.com/EOS-Jungle-Testnet/Node-Manual-Installation.git ./
-
In case you use a different data-dir folders -> edit all paths in files cleos.sh, start.sh, stop.sh, config.ini, Wallet/start_wallet.sh, Wallet/stop_wallet.sh
-
Choose your producer name (12 symbols length only, a-z 1-5 alowed only) and create own EOS key pair
you can create key pair using cleos command
./cleos.sh create key
or using Scatter or here. -
If non BP node: use the same config, just comment out rows with producer-name and signature-provider
-
Edit config.ini:
-
server address: p2p-server-address = ENRT_YOUR_NODE_EXTERNAL_IP_ADDRESS:9876
-
if BP: your producer name: producer-name = YOUR_BP_NAME
-
if BP: add producer keypair for signing blocks (this pub key should be used in regproducer action):
signature-provider = YOUR_PUB_KEY_HERE=KEY:YOUR_PRIV_KEY_HERE -
replace p2p-peer-address list with fresh generated on monitor site: http://monitor.jungletestnet.io/#p2p
-
Check chain-state-db-size-mb value in config, it should be not bigger than you have RAM:
chain-state-db-size-mb = 16384
-
-
Open TCP Ports (8888, 9876) on your firewall/router
-
Start wallet, run
cd /opt/Jungle2Testnet
./Wallet/start_wallet.sh
First run should be with --delete-all-blocks and --genesis-json
./start.sh --delete-all-blocks --genesis-json genesis.json
Check logs stderr.txt if node is running ok.
- Create your wallet file
./cleos.sh wallet create --to-file pass.tx
Your password will be in pass.txt it will be used when unlock wallet
- Unlock your wallet
./cleos.sh wallet unlock
enter the wallet password.
- Import your key
./cleos.sh wallet import
Enter your private key
-
Check if you can access you node using link http://you_server:8888/v1/chain/get_info (Example)
-
If you would like to run a BP node you need register your node at Jungle2.0 Testnet monitor
http://monitor.jungletestnet.io/#register- In registartion form - PIN is your password to node information updates
After registration is complete - personal intallation script will be created for you. Skip this step in case of manual installation.
- In registartion form - PIN is your password to node information updates
==============================================================================================
Download latest block and state archive for your OS from http://backup.jungletestnet.io/
wget http://backup.jungletestnet.io/ubuntu18/blocks-latest.tar.gz
wget http://backup.jungletestnet.io/ubuntu18/state-latest.tar.gz
After downloaded extract their
tar xzvf blocks-latest.tar.gz -C .
tar xzvf state-latest.tar.gz -C .
You got two folders block and state.
Ater that go to NODE folder, and remove files from folder blocks and state
cd /opt/Jungle2Testnet
rm blocks/*
rm state/*
After that go where you extracted archive and move file from folder
mv ~/blocks/* /opt/Jungle2Testnet/blocks/
mv ~/state/* /opt/Jungle2Testnet/state/
After files moved start your NODE
./start.sh
Download latest snapshot from http://backup.cryptolions.io/Jungle/snapshots/ to snapshots folder in your NODE directory
cd /opt/Jungle2Testnet/snapshots/
wget http://backup.cryptolions.io/Jungle/snapshots/latest-snapshot.bin
after it downloaded run start.sh
script with option --snapshot
and snapshot file path
cd /opt/Jungle2Testnet
./start.sh --snapshot /opt/Jungle2Testnet/snapshots/latest-snapshot.bin
http://monitor.jungletestnet.io/#faucet
-
In scripts folder you can find scripts examples: how to register bp, stake, vote, claimrewards, etc
-
Vote using monitor (prepare Cleos command or use scatter)
-
Create account:
http://monitor.jungletestnet.io/#account -
Cleos commands:
Send EOS
./cleos.sh transfer <your account> <receiver account> "1.0000 EOS" "test memo text"
Get Balance
./cleos.sh get currency balance eosio.token <account name>
Create account
./cleos.sh system newaccount --stake-net "10.0000 EOS" --stake-cpu "10.0000 EOS" --buy-ram-bytes 4096 <your accountr> <new account> <pkey1> <pkey2>
List registered producers (-l )
./cleos.sh get table eosio eosio producers -l 100
List your last action (use -h to get help, do not work now, works with history node only)
./cleos.sh get actions <account name>
List staked/delegated
./cleos.sh system listbw <account>
Hyperion History
https://junglehistory.cryptolions.io/v2/docs/index.html
https://jungle.hyperion.eosrio.io/v2/docs/index.html
https://jungle.eosusa.news/v2/docs/
https://api.jungle.hyperion.greeneosio.com/v2/docs/
State History endpoint
ws://jungle.eosdac.io:8084
Block Explorers
https://jungle.bloks.io/
https://jungle.eosweb.net/
https://jungle.eosq.app
by: CryptoLions.io
Keybase account: cryptolions