personal.newAccount()
personal.listAccounts
eth.getBalance('0x6731..address..5fa9')
If you added the JS scripts:
checkAllBalances()
var tx = {from: "0x67319...SenderAddress...f335fa9", to: "0x84113...RecipientAddress...d4B75E4", value: web3.toWei(11000, "ether")}
personal.sendTransaction(tx, "password")
For example,
11000 ether is equal to 11000 NRG.
Keep ether as default value.
personal.unlockAccount('0x67319f845917da973570704b811b641d3f335fa9', null, 0, true)
miner.stakingStatus()
masternode.depositCollateral('0x67319f845917da973570704b811b641d3f335fa9', web3.toWei('10000', 'ether'), 'password')
masternode.withdrawCollateral('0x67319f845917da973570704b811b641d3f335fa9', web3.toWei('10000', 'ether'), 'password')
masternode.collateralBalance('0x67319f845917da973570704b811b641d3f335fa9')
admin.nodeInfo.enode
masternode.announce('0x67319f845917da973570704b811b641d3f335fa9', admin.nodeInfo.enode, 'password')
masternode.denounce('0x67319f845917da973570704b811b641d3f335fa9', 'password')
masternode.masternodeInfo('0x67319f845917da973570704b811b641d3f335fa9')
masternode.listMasternodes()
Autocollaterize, when enabled, allows masternodes to automatically roll up collaterals when requisit funds have amassed. The roll up occurs at the time when masternode reward is received.
Run the script in the following guide to check the current setting and change it if desired:
Change autocollateralize setting on Core Node