Old CodeBlockLabs
VPS Recomendation
  • Home
  • 🌹Social Media
  • 🚰Testnet Faucet List
  • 🚰Mainnet Faucet List
  • 🔥Mainnet
    • Akash
    • Arcadia (Paw)
      • Installation
      • RPC Command
      • CLI
      • Fast Sync
    • Arkhadian
      • Installation
      • Update
      • Useful Commands
    • Banano
      • Installation
      • Node Configuration
      • RPC Command
      • CLI
      • Useful Command
    • DO Network
      • Install & Update
      • RPC Documentation
    • Kadena
      • Installation
      • Mining
    • Massa
      • Installation
    • Newrl
      • Installation
      • Useful Command
      • Update
    • Q Blockchain
      • Installation
      • Block stuck?
    • RaiblocksOne
      • Installation
      • Update
      • RPC Command
    • Raicoin
      • Installation
    • SGE
      • Installation
      • Update
      • Useful Commands
  • 💎Testnet
    • 0G Labs
      • Installation
      • Useful Commands
    • 5ire Chain
      • Installation
      • WASM Contract Deployment
    • Avail
      • Installation
    • BEVM
      • Installation
        • Docker
        • Binary
    • Blockx
      • Installation
      • Useful Commands
      • Incentivized Task
    • Elys
      • Installation
      • Useful Commands
    • Empeiria
      • Installation
      • Snapshot
      • Useful Commands
        • Wallet Management
        • Validator Management
        • Node Management
        • Governance
    • Impact Protocol
      • Installation
    • Erbie (wormholes)
      • Installation
      • RPC Documentation
      • Debug
    • Inery
      • Installation
      • Create Token
      • Value Contract
      • IneryCRUD
      • IneryPHP
      • Snapshots
    • Mantra
      • Installation
      • Useful commands
    • Naruno
      • Baklava Testnet
    • Nolus Protocol
      • Installation
      • Update
      • Snapshots
      • Relayer
      • Useful Commands
    • Noria
      • Installation
      • Update
      • State Sync
      • Useful Commands
    • Nibiru
      • Installation
      • Update
      • Useful Commands
    • Nulink
      • Installation
    • Ojo Network
      • Installation
      • Update
      • Useful Commands
    • PowerLoom
      • Pretest Task
    • The Power
      • Installation
    • Transformers Chain
      • Install & Update
      • RPC Documentation
  • âš¡VPS Provider
    • Contabo
      • Links To Provider
      • Promotion / Coupon
    • Vultr
      • Link To Provider
      • Promotion / Coupon
  • 😇solution
    • Docker
    • EVM Wallet by PrivateKey
    • Multiple Go
Powered by GitBook
On this page
  • Install dependencies
  • Download Inery Nodes
  • Export path
  • Configure Master Nodes
  • Run Blockchain protocol
  • Check Logs
  • Register and Approve Account
  1. Testnet
  2. Inery

Installation

install inery nodes Master Nodes on your machine

Install dependencies

sudo apt-get install -y make bzip2 automake libbz2-dev libssl-dev doxygen graphviz libgmp3-dev \
autotools-dev libicu-dev python2.7 python2.7-dev python3 python3-dev \
autoconf libtool curl zlib1g-dev sudo ruby libusb-1.0-0-dev \
libcurl4-gnutls-dev pkg-config patch llvm-7-dev clang-7 vim-common jq libncurses5

Download Inery Nodes

git clone  https://github.com/inery-blockchain/inery-node

Export path

//go to inery.setup folder
cd inery-node/inery.setup

//change permission
chmod +x ine.py

//export path
./ine.py --export

//refresh environtment path
source ~/.bashrc

Configure Master Nodes

//go to tools folder
cd tools

//edit config.json
nano config.json

make sure you change the data needed for master account.

"MASTER_ACCOUNT":
{
    "NAME": "AccountName",
    "PUBLIC_KEY": "PublicKey",
    "PRIVATE_KEY": "PrivateKey",
    "PEER_ADDRESS": "IP:9010",
    "HTTP_ADDRESS": "0.0.0.0:8888",
    "HOST_ADDRESS": "0.0.0.0:9010"
}
  • AccountName = Inery master account name

  • PublicKey = Public key of an account

  • PrivateKey = Private key of an account

  • IP = IP address or DNS of your server

Save it (ctrl+S), Type "Y" and exit (ctrl+X)

Run Blockchain protocol

make sure you're going back to inery.setup folder

//go back to inery.setup folder
cd ..

//run blockchain software
./ine.py --master

Check Logs

tail -f master.node/blockchain/nodine.log

Register and Approve Account

You will need 50000 INR on your blockchain account which will be transfered to inery.stake account. Also make sure your nodes already synced before running command below, or it may break and giving error.

//create wallet and save password on defaultWallet.txt
cd;  cline wallet create --file defaultWallet.txt

//unlock wallet (only if locked)
cline wallet unlock --password YOUR_WALLET_PASSWORD

//import privatekey into wallet
cline wallet import --private-key MASTER_PRIVATE_KEY

//bind master account
cline master bind ACCOUNT_NAME ACCOUNT_PUBLIC_KEY YOUR_SERVER_IP:9010

//approve account as master
cline master approve ACCOUNT_NAME
  • YOUR_WALLET_PASSWORD = password on defaultWallet.txt

  • MASTER_PRIVATE_KEY = private key on inery dashboard

  • ACCOUNT_NAME = account name on inery dashboard

  • ACCOUNT_PUBLIC_KEY = public key on inery dashboard

  • YOUR_SERVER_IP = your ip used (not your ip registered on dasboard!)

PreviousIneryNextCreate Token

Last updated 2 years ago

💎