0% found this document useful (0 votes)
76 views10 pages

BCT Unit - 1

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
76 views10 pages

BCT Unit - 1

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

UNIT – 1

Introduction:
• Blockchain is a digital ledger that is distributed, decentralized, and public, which
means it exists across a network of computers.
• It is a database that stores data in blocks that are linked together in a chain, and each
network node has a replica of the entire database.
• The data is chronologically consistent because you cannot delete or modify the chain
without breaking the chain.
• Blockchain technology allows transparent information sharing within a business
network and can be used to create an unalterable or immutable ledger for tracking
orders, payments, accounts, and other transactions.
• While blockchain is most commonly associated with cryptocurrency, it has many
other potential applications, such as recording and transferring the ownership of
different assets.
Basic ideas behind blockchain:
Certainly! Blockchain is a decentralized and distributed ledger technology that underlies
cryptocurrencies like Bitcoin, but its applications go beyond digital currencies. Here are
some basic ideas behind blockchain:
1. Decentralization:
• Unlike traditional centralized systems (like banks), blockchain operates on a
decentralized network of computers (nodes). Each node on the network has a
copy of the entire blockchain, and there is no central authority or intermediary.
2. Distributed Ledger:
• The ledger, which contains a record of all transactions, is distributed across all
nodes in the network. This distribution ensures that everyone in the network
has the same record of transactions, providing transparency and reducing the
risk of fraud.
3. Cryptography:
• Blockchain uses cryptographic techniques to secure transactions and control
the creation of new units. This ensures the integrity and security of the data
within the blockchain.
4. Consensus Mechanism:
• To add a new block of transactions to the blockchain, a consensus mechanism
is employed. This mechanism ensures that all nodes in the network agree on
the validity of the transactions. Common consensus mechanisms include Proof
of Work (used in Bitcoin) and Proof of Stake.
5. Immutability:
• Once a block is added to the blockchain, it is extremely difficult to alter. Each
block contains a reference to the previous block through a cryptographic hash,
creating a chain of blocks. If one block is altered, it would require changing all
subsequent blocks, making the blockchain tamper-evident.
6. Smart Contracts:
• Smart contracts are self-executing contracts with the terms of the agreement
directly written into code. They automatically execute and enforce the terms of
the contract when predefined conditions are met, removing the need for
intermediaries.
7. Permissioned vs. Permissionless:
• Blockchain networks can be permissioned (private) or permissionless (public).
In a permissioned blockchain, participants are known and have specific roles,
while permissionless blockchains are open to anyone without requiring
identification.
8. Use Cases:
• While initially designed for cryptocurrencies, blockchain has found applications
in various industries, such as finance, supply chain, healthcare, and more. It
provides a transparent, secure, and efficient way to record and verify
transactions.
How it is changing the landscape of digitalization:
Blockchain technology is significantly impacting the landscape of digitalization in various
ways. Here are some key ways in which blockchain is changing the digital landscape:
1. Decentralization of Trust:
• Blockchain eliminates the need for a central authority or intermediary in digital
transactions. This decentralization reduces the reliance on trust in a single
entity, leading to more transparent and trustless systems.
2. Improved Security:
• The use of cryptographic techniques in blockchain ensures the security and
integrity of data. The decentralized nature and consensus mechanisms make it
extremely difficult for malicious actors to alter past transactions, enhancing
overall security.
3. Transparent and Auditable Transactions:
• Every transaction on a blockchain is recorded in a transparent and immutable
ledger. This transparency and immutability make it easy to trace and audit
transactions, reducing the risk of fraud and corruption.
4. Efficiency and Cost Savings:
• Blockchain can streamline processes by providing a shared, immutable record
of transactions. This reduces the need for intermediaries and paperwork,
leading to increased efficiency and cost savings in various industries, such as
supply chain, finance, and healthcare.
5. Digital Identity and Authentication:
• Blockchain has the potential to revolutionize digital identity management.
Individuals can have more control over their personal information, and secure,
decentralized identity solutions can reduce the risk of identity theft.
6. Smart Contracts for Automation:
• Smart contracts enable self-executing agreements with predefined rules. This
automation of contract execution eliminates the need for intermediaries,
reduces costs, and ensures that agreements are carried out as intended.
7. Cross-Border Transactions:
• Blockchain facilitates faster and more cost-effective cross-border transactions
by removing intermediaries and reducing the need for multiple currency
conversions. This is particularly relevant in the financial sector.
8. Tokenization of Assets:
• Blockchain enables the creation of digital tokens representing real-world
assets. This tokenization can make traditionally illiquid assets, such as real
estate or art, more easily tradable and accessible.
9. Supply Chain Transparency:
• Blockchain can provide end-to-end visibility in supply chains, allowing
stakeholders to trace the origin and journey of products. This transparency is
crucial for ensuring the authenticity of goods and addressing issues like
counterfeiting.
10.Decentralized Finance (DeFi):
• Blockchain is a fundamental technology behind the rise of decentralized
finance. DeFi platforms leverage blockchain to provide financial services such
as lending, borrowing, and trading without traditional intermediaries.
11.Data Privacy and Consent:
• Blockchain can empower individuals to have more control over their data.
Users can grant or revoke access to their data through cryptographic keys,
enhancing data privacy and giving individuals more say in how their
information is used.
Introduction to cryptographic concepts required:
Cryptography is the study of secure communication techniques that allow for the encoding
and decoding of information to protect its confidentiality, integrity, and authenticity. It plays
a crucial role in various aspects of modern computing, including secure communication,
data protection, and authentication. Here's an introduction to some fundamental
cryptographic concepts:
1. Encryption:
• Encryption is the process of converting plain, readable text (plaintext) into a
scrambled or unreadable format (ciphertext) using an algorithm and a key. The
intended recipient can then decrypt the ciphertext back to plaintext using the
corresponding key. Encryption ensures the confidentiality of information.
2. Decryption:
• Decryption is the reverse process of encryption. It involves converting
ciphertext back into plaintext using the appropriate key. Only those with the
correct decryption key can decipher the encrypted information.
3. Symmetric Key Cryptography:
• In symmetric key cryptography, the same key is used for both encryption and
decryption. The challenge is securely distributing and managing the secret key
between communicating parties.
4. Asymmetric Key Cryptography:
• Asymmetric key cryptography (or public-key cryptography) uses a pair of keys: a
public key for encryption and a private key for decryption. The public key can
be shared openly, while the private key must be kept secret. It solves the key
distribution problem inherent in symmetric key cryptography.
5. Public Key Infrastructure (PKI):
• PKI is a framework that manages digital keys and certificates. It includes the
generation, distribution, storage, and revocation of digital certificates that bind
public keys to entities.
6. Digital Signatures:
• Digital signatures are cryptographic mechanisms that provide authentication
and data integrity. They involve the use of a private key to create a digital
signature, which can be verified using the corresponding public key. Digital
signatures are commonly used in electronic transactions and document
authentication.
7. Hash Functions:
• Hash functions take input data (message) and produce a fixed-size string of
characters, which is typically a hash value or digest. Hash functions are used for
data integrity verification, password storage, and creating digital signatures.
8. Hashed Message Authentication Code (HMAC):
• HMAC is a specific construction for creating a message authentication code
using a cryptographic hash function and a secret key. It ensures the integrity
and authenticity of a message.
9. Certificate Authority (CA):
• A Certificate Authority is a trusted third party that issues digital certificates. CAs
verify the identity of individuals or entities requesting a certificate and vouch
for the authenticity of the public key associated with the certificate.
10.Key Exchange Protocols:
• Key exchange protocols are methods by which two parties can agree on a
shared secret key over an insecure communication channel. Examples include
Diffie-Hellman key exchange.
11.End-to-End Encryption:
• End-to-end encryption ensures that data is encrypted on the sender's system
and decrypted only on the recipient's system. This prevents intermediaries,
including service providers, from accessing the plaintext.
Block chain or distributed trust:
1. Blockchain:
• Blockchain is a decentralized and distributed ledger technology. It consists of a
chain of blocks, each containing a list of transactions. The decentralized nature
of blockchain means that no single entity has control over the entire network,
and consensus mechanisms ensure agreement on the state of the ledger. This
technology is best known for its use in cryptocurrencies like Bitcoin, but it has
applications beyond digital currencies, extending to supply chain management,
healthcare, finance, and more.
2. Distributed Trust:
• Distributed trust refers to a system where trust is not concentrated in a single
central authority. Instead, trust is distributed among the participants or nodes
in a network. This distribution is achieved through consensus mechanisms and
cryptographic techniques. Blockchain is an example of a technology that
facilitates distributed trust by creating a transparent and tamper-resistant
ledger shared among all participants. Each participant can trust the system's
integrity and accuracy without relying on a central authority.
Currency:
Currency refers to a system of money in general use in a particular country or region. It is a
medium of exchange that facilitates the buying and selling of goods and services. Currencies
are used as a unit of account, a store of value, and a standard of deferred payment.
Key characteristics of currency include:
1. Medium of exchange: Currency is a medium of exchange for goods and services,
accepted at face value as a method of payment
2. Tangible form: Currency takes the form of paper bills and coins, usually issued by a
government
3. Store of value: Currency can act as a store of value, allowing individuals to save and
store their wealth in a stable form
4. Tradable: Currencies can be traded between nations in foreign exchange markets,
which determine the relative values of different currencies
5. Types of currencies: Currencies can be classified into three monetary systems: fiat
money, commodity money, and representative money, depending on what
guarantees a currency's value
Cryptocurrency:
• Cryptocurrency is a digital or virtual currency secured by cryptography, which makes
it nearly impossible to counterfeit or double-spend.
• It is a form of digital asset based on a network that is distributed across a large
number of computers, allowing it to exist outside the control of governments and
central authorities.
• Most cryptocurrencies operate on decentralized networks using blockchain
technology, which is a distributed ledger enforced by a disparate network of
computers.
• A defining feature of cryptocurrencies is that they are generally not issued by any
central authority, rendering them theoretically immune to government interference
or manipulation.
• Cryptocurrencies enable secure online payments without the use of third-party
intermediaries, and the use of encryption technologies means that they function both
as a currency and as a virtual accounting system.
• Popular cryptocurrencies include Bitcoin, Ethereum, Litecoin, and Monero
How a Cryptocurrency works:
• Cryptocurrency is a digital or virtual currency that uses cryptography to secure and
verify transactions and to control the creation of new units.
• Cryptocurrencies operate on decentralized networks using blockchain technology,
which is a distributed ledger enforced by a disparate network of computers.
• Transactions are verified and recorded on a blockchain, an unchangeable ledger that
tracks and records assets and trades.
• Cryptocurrencies are not issued by any central authority, rendering them theoretically
immune to government interference or manipulation.
• Cryptocurrencies enable secure online payments without the use of third-party
intermediaries, and the use of encryption technologies means that they function both
as a currency and as a virtual accounting system.
• Cryptocurrencies are created (and secured) through cryptographic algorithms that are
maintained and confirmed in a process called mining, where a network of computers
or specialized hardware process and validate the transactions.
• Bitcoin, Ethereum, Litecoin, and Monero are popular cryptocurrencies.

Financial services:
Blockchain technology has significantly impacted the financial services industry, offering
new solutions to longstanding challenges and transforming traditional processes. Here
are several ways in which blockchain is influencing financial services:
1. Cross-Border Payments:
• Blockchain enables faster and more cost-effective cross-border transactions.
Traditional international transfers can be slow and involve multiple
intermediaries. Blockchain facilitates near-instantaneous transfers and reduces
the need for correspondent banks.
2. Cryptocurrencies and Digital Assets:
• Cryptocurrencies, such as Bitcoin and Ethereum, are digital assets built on
blockchain technology. They provide an alternative to traditional currencies
and have gained recognition as investment assets. Blockchain enables the
creation, transfer, and management of digital assets securely and transparently.
3. Smart Contracts:
• Smart contracts are self-executing contracts with the terms of the agreement
directly written into code. In financial services, smart contracts automate and
enforce the execution of contractual agreements, reducing the need for
intermediaries and minimizing the risk of errors.
4. Trade Finance:
• Blockchain facilitates transparent and secure trade finance processes. Smart
contracts can automate the execution of trade-related agreements, and the use
of a shared, tamper-resistant ledger reduces the risk of fraud in trade finance
transactions.
5. Clearing and Settlement:
• Blockchain technology can streamline the clearing and settlement of financial
transactions. The decentralized and transparent nature of blockchain reduces
the need for reconciliation and minimizes settlement times, resulting in faster
and more efficient processes.
6. Identity Verification:
• Blockchain offers solutions for secure and decentralized identity verification.
Financial institutions can use blockchain to manage customer identities,
reducing the risk of identity theft and streamlining Know Your Customer (KYC)
processes.
7. Decentralized Finance (DeFi):
• DeFi platforms leverage blockchain to provide decentralized alternatives to
traditional financial services. These services include lending, borrowing,
trading, and earning interest on cryptocurrencies without the need for
traditional intermediaries like banks.
8. Regulatory Compliance:
• Blockchain can enhance regulatory compliance by providing transparent and
auditable records of financial transactions. This transparency can help financial
institutions demonstrate adherence to regulatory requirements and streamline
auditing processes.
9. Supply Chain Finance:
• Blockchain enhances transparency and efficiency in supply chain finance. The
technology allows for the tracking of goods and financial transactions along the
supply chain, reducing fraud and providing more accurate and timely financing
options.
10.Tokenization of Assets:
• Blockchain enables the tokenization of real-world assets, such as real estate or
artwork. This process involves representing ownership of the asset with a
digital token on the blockchain, making traditionally illiquid assets more
divisible and tradable.
11.Central Bank Digital Currencies (CBDCs):
• Some central banks are exploring the use of blockchain technology to develop
digital versions of their national currencies. CBDCs could offer benefits such as
faster and more efficient payment systems.
Bitcoin prediction markets:
• Prediction markets are marketplaces where people trade on the outcomes of
future events.
• Market prices can indicate what the marketplace believes the probability of the
event is.
• These markets have seen a surge in popularity, and various platforms offer bettors
a plethora of contracts from serious to absurd events.
• Crypto prediction markets allow users to earn money by predicting random
crypto-related events, such as the impact of the Merge on ETH's price and even
the next.
• Decentralized prediction markets are exchange-traded markets created to trade
the outcome of events, and the market prices can indicate what the crowd thinks
the probability of the event is.
• Various platforms, such as Augur, Omen, PlotX, and Polymarket, offer
decentralized prediction markets on crypto blockchains.

Here's how Bitcoin prediction markets generally work:


1. Decentralized Platform:
• Bitcoin prediction markets are often decentralized platforms built on
blockchain technology, such as the Ethereum blockchain. Smart contracts are
utilized to create and execute prediction market contracts.
2. Creation of Prediction Markets:
• Users can create prediction markets by specifying a particular event or
outcome related to Bitcoin. This could be the future price of Bitcoin at a
specific date, the occurrence of a particular event (e.g., a regulatory decision),
or any other quantifiable outcome.
3. Betting on Outcomes:
• Participants, also known as traders or speculators, can place bets on the
potential outcomes of the events. They do so by purchasing prediction tokens
associated with specific outcomes. For example, if the prediction is about the
future price of Bitcoin, there may be tokens representing different price ranges.
4. Smart Contracts:
• Smart contracts automatically enforce the terms of the prediction market.
When the outcome is determined (e.g., the specified date arrives, and the
actual Bitcoin price is known), the smart contract uses the predefined rules to
distribute rewards to those who made accurate predictions and deduct losses
from those who were incorrect.
5. Incentivizing Accuracy:
• Prediction markets are designed to incentivize accurate predictions.
Participants who provide accurate information or forecasts are rewarded with
additional tokens or cryptocurrency, while those who make inaccurate
predictions may lose their invested tokens.

You might also like