Skip to content

Latest commit

 

History

History
91 lines (44 loc) · 2.2 KB

NOTES.md

File metadata and controls

91 lines (44 loc) · 2.2 KB

Notes

Tulip Mania

Josua Schmid writes:

Interesting for the context is that blockchain ETFs just started in November 2017.

Notice: The tulip bubble was about future contracts (which specified cancellation fines) and never about the price of a tulip. Tulips are planted in autumn. They were underground while the mania happened. Often financial derivaties make bubbles and not the market per se.

How many blocks?

  • xx blocks / week, / month, / year
  • a block every 20 minutes (a block every hour)

Blockchains Samples

Add - why? why not?

  • Bitcoin (started in ) - blocks/year - blocks in 1.1.2017, in 1.1.2018
  • Bitcoin Forks
    • Bitcoin Cash (Blockchain)
    • Bitcoin XL (Blockchain)
    • ...

Bitcoin Block Header - 80 bytes includes:

  • timestamp (in unix epoch time - (mili?)seconds since 1970 - unsigned int for 2023 problem/overflow)
  • merkle_tree_hash (transactions / txs ) - SHA512 ??

More Questions

  • Q: What's a Sidechain?
  • Q: What's a Hyper Ledger Book?

Blockchain in Austria

Add AUSTRIA.md page?

  • Blockchain Austria (Bundesministerium f. Wirtschaft)
  • Bundesrechenzentrum
  • Stadt Wien

Blockchain - Data Structure vs Network

How many (network) nodes?

More Build Your Own Blockchain Samples / Projects

Python

Dumbcoin - An educational python implementation of a bitcoin-like blockchain

Tiniest Blockchain in Python Article (Alternatives):

Ruby

blockchain.rb Ruby Alternatives:

JavaScript

NaiveChain github: lhartikk/naivechain -- A blockchain implementation in 200 lines of code (in JavaScript).

Uncategorized / More

SharpChain github: ZenXChaos/SharpChain -- Lite version of the Blockchain. C# Data integrity.