Guest User

Untitled

a guest
Feb 20th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. Q: How big is the blockchain today?
  2. A: 415'000 blocks, 70 Gigabytes.
  3.  
  4. Q: Where is the blockchain stored?
  5. A: On all the nodes participating in the Bitcoin p2p network.
  6. Implicit consensus is achieved by all nodes following the same rules (and incentives).
  7.  
  8. Q: What kind of encryption is Bitcoin using?
  9. A: none (rather hashing and signing).
  10.  
  11. Q: What is the blockchain data structure?
  12. A: A list of blocks, connected with hashes. A block's hash verifies the integrity of the previous
  13. block's content.
  14. A block contains a Merkle-tree, which is a binary tree, again connected with hashes. The leaves
  15. of the tree contain each one transaction.
  16.  
  17. Q: What are other cases of Merkle trees?
  18. A: git (version control system), ZFS (file system), Cassandra (NoSQL database)
  19.  
  20. Q: How is prevented that a bitcoin is copied and spent twice (double spend)?
  21. A: New transactions are only valid if their input address has not been redeemed yet,
  22. i.e. is not part of the block chain.
  23.  
  24. Q: Who decides if a transaction is valid and will be stored in the blockchain?
  25. A: For bitcoins the miners decide ("unpermissioned ledger"). Other blockchains
  26. introduce specific nodes that are authorized to create new blocks ("permissioned ledger").
  27.  
  28. Q: What can blockchains be used for apart from currencies?
  29. A: Trading of digital property (smart property, smart contracts).
  30. Voting, elections, Internet of Things.
  31.  
  32. Q: Who is creating/mining new blocks in non-monetary blockchains? What is their incentive?
  33. A: Incentivicing peers to act legitimite is difficult to accomplish. A few ideas are around:
  34. - Create blocks not based on "proof of work" but e.g. "proof of stake". Stakeholders would create
  35. new blocks, without doing lots of calculations.
  36. Unclear how to select the next "miner". Unclear how to incentivize her.
  37. - Store non-monetary blockchains *inside* the bitcoin blockchain. This might be called a "virtual blockchain".
  38. See e.g. Blockstack (DNS resolution).
  39. The mining peers don't know about the DNS blockchain, so they are *not* verifiying legitimacy.
  40. - Have dedicated peers that are authorized to create blocks. This is called a "permissioned ledger".
  41. Legitimacy is ensured at the cost of having a central authority.
  42.  
  43. Q: When was Bitcoin started?
  44. A: 2008, by Satoshi Nakamoto.
  45.  
  46.  
  47. ------------------------------------
  48.  
  49.  
  50. Q: What is a Bitcoin address?
  51. A: The hash of a public key (of an ECC public/private key pair).
  52. Hash of version and key, plus checksum and base58 encoded.
  53.  
  54. Q: Does one need to pay VAT for bitcoin transactions in Switzerland?
  55. A: No.
  56.  
  57. Q: Who controls the blockchain?
  58. A: The peers, and they software they run.
  59. See discussion Bitcoin Classic vs. Core (block size).
  60.  
  61. Q: What is bitcoin mining?
  62. A: Generating new blocks that contain transactions, which includes solving a "search puzzle",
  63. heavily inspired by HashCash (to prevent spam).
  64. For every block mined there is a reward (25 bitcoins currently).
  65. The reward decreases over time, and will run out in 2140 with 21 millions bitcoins rewarded.
  66. Additionally transactions can include a fee, which the miner receives.
  67.  
  68. Q: How often is a new block found?
  69. A: Every 10 minutes.
  70. The search puzzle's difficulty is increased over time to keep this number constant.
  71.  
  72. Q: What happens if the majority of miners is rogue and works together?
  73. A: They cannot steal bitcoins, because they don't know the private keys.
  74. They can prevent certain transactions from landing in the blockchain (with the blocks they mine).
  75.  
  76. Q: What is the size limit of a block?
  77. A: 1 Megabyte.
  78.  
  79. Q: How big is a transaction?
  80. A: At least 250 bytes.
  81.  
  82. Q: How many transactions can be stored in 1 block?
  83. A: Max. 4000.
  84.  
  85. Q: How many transactions can be processed per second?
  86. A: About 7. Comparison: VISA processes ~10'000 transactions per second.
  87.  
  88. Q: What data does a bitcoin transaction contain?
  89. A: A number of inputs (previous tx' hash, scriptSig), and outputs (value, scriptPubKey).
Add Comment
Please, Sign In to add comment