Tested tool guide
Tested browser tools
Checked August 16, 2026
What Local Blockchain Simulator does, with a checked example
The Local Blockchain Simulator is a miniature blockchain you build in your browser. You add transactions, gather them into blocks, and mine each block by finding a nonce whose hash satisfies the current difficulty. Because every block stores the hash of the block before it, the chain is tamper-evident: change one transaction and every later block stops validating. The surprise for most users is that mining is pure trial and error, not skill: the simulator hashes the block repeatedly, varying only the nonce, until the hash happens to meet the target. Nothing here touches a real network, wallet, or currency, and nothing is uploaded.
Worked example
A concrete input and expected output from the current implementation.
Input
Add a transaction: Alice pays Bob 5 coins. Then mine a block.
->
Expected output
The newly mined block lists the Alice-to-Bob transaction and is appended to the chain. The block also records the previous block's hash, which is what ties it to everything mined before.
A block is a bundle of transactions plus a reference to the block that came before it. Adding a transaction puts it into the next block the simulator mines, and the stored previous-hash link is what makes the chain.