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.
cd $PANDO_HOME
cp -r ./integration/privatenet ../privatenet
mkdir ~/.pandocli
chmod 700 ~/.pandocli
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.
/usr/local/go/bin/pando start --config=../privatenet/node
When the prompt asks for a password, enter your required password here.
And then after run the following command to launch rpc of the node in another session.
/{ Your binary directory path }/pandocli daemon start --port=16889
And to get the details of node for further process, run the below command -
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.
Last updated