Pando Project
About UsWallet & ExplorerGitHub
  • Pandoproject -Documentations
  • Whitepaper
  • Pando Network Testament
  • Blockchain Integration
    • Mainnet v4.0-2.0 Code
    • Mainnet v1.0 Code
    • Command Line Tool
    • Connect to the Mainnet
      • Using Pre-Compiled Binaries
      • Using Code
    • Connect to the Testnet
      • Using Pre-Compiled Binaries
      • Using code
    • Launch a Local Private Net
    • Configuration
  • APIs
    • Tx Api
    • RPC API Reference
    • Pando CLI APIs
    • PNC 20 Protocol
    • PNC721- Protocol
  • Pando Nodes
    • Zytatron Node
    • Metatron Node
    • Rametron Overview
    • Mainnet Metatron Setup
    • To Migrate Metatron/Zytatron
  • Rametron Overview
    • Rametron Lite
    • Rametron Mobile
    • Rametron Pro
    • Rametron Ent
  • How to Stake ?
    • Stake for RT Lite
    • Stake for RT Mobile
    • Stake for RTPro
    • Stake for RTE
  • Wallet Application
    • Web Wallet Overview
    • Connect to Metamask
    • Wallet Code- Frontend
    • Wallet Code- Backend
    • Wallet API Reference
    • Explorer Overview
  • Explorer Application
    • Explorer Node- Frontend
    • Explorer Code- Backend
    • Explorer API Reference
  • Connect to Metamask
  • Smart Contracts
    • Ethereum RPC API support
    • Deployment fees
    • PNC-20
      • PNC20 Code
      • PNC20 API Reference
    • PNC-721
      • PNC721 Code
      • PNC721 API Reference
  • Docker Implementation
  • Videos
  • Frequently Asked Question
    • Upgrade Chain to Mainnet 4.0
    • To Resolve The Block Height Issue
  • Developer Community Engagement
Powered by GitBook
On this page
  1. Blockchain Integration

Launch a Local Private Net

Steps to connect to the Private net is as below

Open a terminal to launch the pandonet (Local Private Net). For the first time, follow the setup steps below.

Change working directory
cd $PANDO_HOME
Copy
cp -r ./integration/privatenet ../privatenet
Make Directory
mkdir ~/.pandocli
Access permission
chmod 700 ~/.pandocli
Export path and make install
exportPATH=$PATH:/usr/local/go/bin&& makeinstall

And then, use the following command to launch a pandonet . For this you can use tmux or any other tools to run your node service in the background.

Launch Privatenet
/usr/local/go/bin/pando start --config=../privatenet/node

When the prompt asks for a password, enter your required password here.

Note – { Your binary directory path } denotes path where pando and pandocli binary exist or created while running after make install command.

And then after run the following command to launch rpc of the node in another session.

to launch RPC
/{ Your binary directory path }/pandocli daemon start --port=16889

And to get the details of node for further process, run the below command -

Change directory to binary
cd { Your binary directory path }
./pandocli query metatron

This command will give you following information about the metatron node life node summary which is needed for staking process to make node active

Example:

{ "Address": "0x8f3B...E819",

"BlsPubkey": "a1225b...16ebe",

"BlsPop": "b49fd2a...d025c",

"Signature": "14deb5e...52500",

"Summary": "0x8f3Bc...952500"

}

Use Summary key data for the metatron staking from the web wallet.

Note: Please keep the records safely as you need this info to reinstall the node and for withdrawal.

PreviousUsing codeNextConfiguration

Last updated 2 years ago