Skip to content

Blockchain Foundations

A blockchain is a ledger of facts, replicated across several computers assembled in a peer-to-peer network. Facts can be anything from monetary transactions to content signature. Members of the network are anonymous individuals called nodes.

All communication inside the network takes advantage of cryptography to securely identify the sender and the receiver. When a node wants to add a fact to the ledger, a consensus forms in the network to determine where this fact should appear in the ledger; this consensus is called a block.

Blockchain technology

  • Ethereum protocol adding turing complete code execution and speed improvements
  • æternity protocol alternative to Ethereum
  • Web3 technologies to make the web more decentralized, verifiable and secure. Goals:
    • trustless infrastructure
    • removing intermediaries
    • giving users power and ownership over their data, identity, security and transactions
      Focus now shifts from building core technology products to building sustainable products. Somethings are more difficult or not possible like communication to users via email and receiving the first tokens to use an app is hard (only via exchange).
  • polkadot connect blockchains together

Use-cases

Questions

  • Where are tokens stored? In a block?
  • When mining blocks, why do you get tokens for finding a valid block? Where do they come from?
  • Tokens vs coins? Extrinsic tokens are a stake or other external value while coins are intrinsic value because they are scarce. You can buy tokens with coins but you can't buy coins with tokens. You can create your own tokens e.g. on Etherum, but not more coins.

Proof of Work

Mining blocks by changing the nounce of a block until it's hash is below a "difficulty" hash. E.g. hash(block + nounce) < 00010000.
The more computing power a miner has, the more likely they are to find a valid block. Downsides:

  • Bad for the environment and high transaction fees because lots of energy is used for computation
  • Slow transaction speed because mining a new block needs lots of computation time

Proof of Stake

Forging blocks by providing stake (currency). Forgers are rewarded for their stake, if a block includes a fraudulent transaction, they loose stake.

  • Lower transaction costs (no compute)
    Problems:
  • Small stakeholders won't get the opportunity to create a block

It's possible to be come a stakeholder (called validator in Ethereum 2.0) and earn on the rewards.

Proof of importance

?

Source

#published

These notes are unpolished collections of thoughts, unfinished ideas, and things I want to remember later. In the spirit of learning in public, I'm sharing them here. Have fun exploring, if you want!
© 2022 by Adrian Philipp