This document describes a quick running guide for Miner
Generating account
Skip this section if you have a pre-created account in an external wallet. Please see this link for a guide to creating an account on Metamask.
You can improve account security by utilizing Clef, an external account management tool. See the Security topic for details.
Generating new account:
> personal.newAccount(YOUR_PASSWORD)
returns data that looks like:
INFO [08-06|21:33:36.241] Your new key was generated address=0xb8C941069cC2B71B1a00dB15E6E00A200d387039
WARN [08-06|21:33:36.241] Please backup your key file! path=/home/hskim/Documents/geth-test/keystore/UTC--2019-08-06T12-33-34.442823142Z--b8c941069cc2b71b1a00db15e6e00a200d387039
WARN [08-06|21:33:36.241] Please remember your password!
"0xb8c941069cc2b71b1a00db15e6e00a200d387039"
Be careful not to forget your password!
personal.newAccount("YOUR_PASSWORD") returns your wallet address. The example above returned the wallet address "0xb8c941069cc2b71b1a00db15e6e00a200d387039".
You can check the list of currently added wallet addresses via the eth.accounts command.
Before mining, To calculate the amount of WLCs mined, you have to check current balance of miner's account. You can check the balance by the eth.getBalance("YOUR_ADDRESS") commands.
Exactly wei, not ether that 10^18 wei is equal to 1 WLC. wei is small unit of WLC like satoshi of bitcoin. In order to show the balance in ether use the below command.