Exercise 02
Objectives: launching nodes, interacting with UI
Content: This task consists of two steps:
a) Starting actual blockchain in the local environment.
For this, launch scripts/run_nodes.sh. After a few moments inspect node-x.log file:
Check the first couple of lines that describe the environment.
Try to find lines that show progress (regarding finalization and currently highest (best) block).
Track 'lifetime' of some block: choose some block hash and find information about importing, finalizing, and building a new block on top of it. Remark: not every block will be considered as a parent block - only every 4th. Try to find out why.
b) Check out the fresh chain with PolkadotUI. Go to https://polkadot.js.org/apps/?rpc=ws%3A%2F%2F127.0.0.1%3A9944 and explore UI. In particular:
Look at the details of a single block.
Verify that there are 3 connected peers.
Check saved accounts. Add a new one.
Perform a token transfer to the new account (from e.g.
//Aliceor//0). Observe emitted event (in a form ofReacttoast) that confirms the successful transaction. Inspect details of the block that contains your extrinsic.
References:
Last updated
Was this helpful?