Difference between revisions of "Blockchain"
m |
m |
||
Line 27: | Line 27: | ||
A blockchain is a growing list of records, called blocks, that are linked together using cryptography. Each block contains a cryptographic hash of the previous block, a timestamp, and transaction data (generally represented as a Merkle tree). The timestamp proves that the transaction data existed when the block was published in order to get into its hash. As blocks each contain information about the block previous to it, they form a chain, with each additional block reinforcing the ones before it. Therefore, blockchains are resistant to modification of their data because once recorded, the data in any given block cannot be altered retroactively without altering all subsequent blocks. Blockchains are typically managed by a peer-to-peer network for use as a publicly distributed ledger, where nodes collectively adhere to a protocol to communicate and validate new blocks. Although blockchain records are not unalterable as forks are possible, blockchains may be considered secure by design and exemplify a distributed computing system with high Byzantine fault tolerance.[http://en.wikipedia.org/wiki/Blockchain Wikipedia] | A blockchain is a growing list of records, called blocks, that are linked together using cryptography. Each block contains a cryptographic hash of the previous block, a timestamp, and transaction data (generally represented as a Merkle tree). The timestamp proves that the transaction data existed when the block was published in order to get into its hash. As blocks each contain information about the block previous to it, they form a chain, with each additional block reinforcing the ones before it. Therefore, blockchains are resistant to modification of their data because once recorded, the data in any given block cannot be altered retroactively without altering all subsequent blocks. Blockchains are typically managed by a peer-to-peer network for use as a publicly distributed ledger, where nodes collectively adhere to a protocol to communicate and validate new blocks. Although blockchain records are not unalterable as forks are possible, blockchains may be considered secure by design and exemplify a distributed computing system with high Byzantine fault tolerance.[http://en.wikipedia.org/wiki/Blockchain Wikipedia] | ||
− | |||
− | |||
− | |||
<youtube>F93xjjaZrEI</youtube> | <youtube>F93xjjaZrEI</youtube> | ||
Line 41: | Line 38: | ||
<youtube>-c2xqVSz378</youtube> | <youtube>-c2xqVSz378</youtube> | ||
<youtube>5Tr13l0O1Ws</youtube> | <youtube>5Tr13l0O1Ws</youtube> | ||
+ | |||
+ | <img src="http://101blockchains.com/wp-content/uploads/2020/04/Types-of-Blockchain-Technology-1982x2048.png" width="800"> | ||
=== Programming === | === Programming === |
Revision as of 21:04, 27 November 2021
Youtube search... ...Google search
- Case Studies
- Decentralized: Federated & Distributed
- Directed Acyclic Graph (DAG)
- Metaverse
- Privacy
- OpenMined
- Non-Fungible Token (NFT)
- 4 Different Types of Blockchain Technology & Networks | 101 Bloackchains
- Decentralized Autonomous Organization (DAO) | Wikipedia
- Fork (blockchain)
- Bill Gates Sounds Alarm On Bitcoin's Energy Consumption–Here's Why Crypto Is Bad For Climate Change | Jonathan Ponciano - Forbes ... According to Digiconomist, one bitcoin transaction requires about 707.6 kilowatt-hours of electrical energy, the amount of energy the average U.S. household consumes in 24 days.
A blockchain is a growing list of records, called blocks, that are linked together using cryptography. Each block contains a cryptographic hash of the previous block, a timestamp, and transaction data (generally represented as a Merkle tree). The timestamp proves that the transaction data existed when the block was published in order to get into its hash. As blocks each contain information about the block previous to it, they form a chain, with each additional block reinforcing the ones before it. Therefore, blockchains are resistant to modification of their data because once recorded, the data in any given block cannot be altered retroactively without altering all subsequent blocks. Blockchains are typically managed by a peer-to-peer network for use as a publicly distributed ledger, where nodes collectively adhere to a protocol to communicate and validate new blocks. Although blockchain records are not unalterable as forks are possible, blockchains may be considered secure by design and exemplify a distributed computing system with high Byzantine fault tolerance.Wikipedia
Programming
Distributed Ledger
A distributed ledger is a database that is consensually shared and synchronized across multiple sites, institutions, or geographies, accessible by multiple people. ... Underlying distributed ledgers is the same technology that is used by blockchain, which is the technology that is used by bitcoin.