0% found this document useful (0 votes)
7 views24 pages

Understanding Blockchain Technology Basics

Here's a beginners guide to Blockchain I developed for my second internship. Hope you enjoy!

Uploaded by

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

Understanding Blockchain Technology Basics

Here's a beginners guide to Blockchain I developed for my second internship. Hope you enjoy!

Uploaded by

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

Blockchain

The Basics of Blockchain

APRIL 20, 2025


-Culsans
Contents
Blockchain.........................................................................................................................................2
Types................................................................................................................................................5
History of Blockchain.................................................................................................................8
Predictions For the Future of Blockchain.............................................................................9
Building a Blockchain..............................................................................................................10
Frequently Asked Questions Regarding Blockchain......................................................19
Terms Of Reference..................................................................................................................21
Bibliography................................................................................................................................22
Blockchain
Introduction
To understand Blockchain technology one should picture a plain ledger. A ledger
is merely a book where each page is filled with a list of recorded transactions,
e.g.:
1- Monday: Vicky gives Len $10.
2- Tuesday: Aron gives Sofi $15.
And so on.
Updating this in a traditional form is simple and only necessitates that the person
in control of the ledger records the latest transactions on the most recent page.
However, as times change so does the mode of recording transactions and now
most firms utilize computer databases over a tangible copy.
Alas, there is a fear that the person recording the transactions (the accountant)
may not be trustworthy and may have ill-intentions to perhaps window-dress the
records in order to beguile prospective investors and create a false sense of
success among the public. This creates a cause for worry since others are
prevented from gaining access to the books of records, (going beyond finances
and broaching the realms of titles, credentials, etc.).
To prevent such problems, the system attempts to rectify the issues by
delegating the power to make decisions about what transactions to record and
validate. Every user (also referred to as “node”) on this network has a full copy of
the said ledger in the form of cryptographically linked blocks (each block being
the equivalent to one page of the ledger). These blocks are strung together in a
chain that provides a complete history of all transactions that have taken place.
The blockchain is typically managed over a peer-to-peer network. In this, the
recorded transactions in any given block cannot be converted without completely
changing all the subsequent blocks. This action of changing data requires the
consent of a majority of the nodes in the network.
Taking an example distinct from accounting, A blockchain for used cars could
enable users to see each car's lifetime record of repairs, insurance claims,
owners, and so on, and thereby quickly know lemons from peaches.

Properties
A. Decentralized: Blockchain can run without a central hub, authority, or
clearing house in the middle; for example, it can operate among small
business borrowers and lenders without a bank in between. Blockchain is
inherently decentralized, which is why it is also called a “distributed”
ledger.
B. Immutable Records: Each entry on a blockchain is immutable, meaning it
cannot be altered or deleted the way information in a typical database
can. It is the users of blockchain, not a central authority, that validate
each entry made on blockchain. This implies major cost savings for
companies and governments that typically carry out such activities as
validating databases and computer systems. Data on a blockchain also
fundamentally builds trust and removes informational asymmetries among
users.
C. Identity Revelation: Each user on a blockchain has a secure id entity and
can reveal only parts of it. Blockchain-based identities can be “self-
sovereign,” administered by the identity holder and based on the
Decentralized Identifiers (DiDs) that are much like a secure website that is
cryptographically stored on a blockchain ledger.3 Each DiD is assigned to
the different parts o f a user's identity; one DiD could be your name,
another your passport number, still another your date of birth. As a user,
you could provide access to a DiD or DiDs of your choice to a third party,
none of which could otherwise access any part of your identity.
D. Automation: Blockchain can automate the fulfilment of contractual
obligations. So-called smart contracts can be built on a blockchain to do x
when event y happens and thus automate what in many cases are still
manual, paper-based processes involving costly intermediaries.
E. Tokenization of Assets: Blockchain makes it easy to transact such pieces
of assets by tokenizing them. Blockchains can convert just about any asset
into a digitized token that is fungible and tradable—one that is easy to buy
and sell among the users of a blockchain—but that is also secure. A token
is an algorithmically generated random number that essentially converts
sensitive data into non-sensitive data, and tokenization is already used to
prevent credit card fraud. Once a user buys a token, his or her ownership
is secure and cannot be erased: blockchain leaves a tamper-proof trail
regarding who owns which asset when.

Blocks
Let us say Aron wishes to initiate a transaction, in order to do so he would need
to broadcast the intended transaction out to the rest of the network. Periodically,
all the computers on this network will gather up any pending transactions that
await approval into a single group, also known as a ‘block’ that is vetted to
ensure that each transaction adheres to the blockchain’s rules and possesses a
valid signature from the nodes. Once a majority consensus is achieved on the
validity of this new block, it is added to the chain and hence the process repeats
itself.
A block is identified using either the block hash or the block height,

- Block Hash: A block hash may be thought of as a special identification


number that is given to each block on the blockchain.
They are essential for maintaining the immutability and integrity of the
blockchain. This is due to the fact that every attempt to edit a block in the
blockchain contains the hash of the preceding block. This makes it difficult
to tamper with the blockchain since other nodes in the network will take
notice of the change in an instant.
The process of creating this hash is computationally demanding and
requires a substantial amount of processing power since it is produced
using proof-of-work method. Doing so helps create a powerful layer of
protection against users who would try to edit the information.

- Block Height: Block height refers to the sequence of the blocks from the
genesis block to the newest block. It acts as identification created for the
blocks after the genesis block which has a nil height as there are no blocks
prior to it. In blockchain, the total height of the chain depends on the
blocks added. Thus, with the inclusion of blocks, the height also increases.
It is directly proportional to the number of validated blocks.

Calculation of Block Height:


1- Select the appropriate blockchain.
2- Determine the Block time: The next step is to find the block time and
the total time of the blockchain to date. Block time refers to the
average time taken by the miners to add blocks to the network. In
contrast, the latter is the total time from the launch to the current date.
3- Apply the Formula: Block Height = Time/Average Block time
E.g.: Suppose Len is a software developer who works at a technology firm. He
developed a blockchain in the past months with his colleague, Vicky. This
blockchain is similar to other networks with a 15-second block time. However, it
has a stronger focus on privacy. At the initial stage, Len created the first block as
a base for others. Later, there were several blocks mined by the validators. With
the first block (Genesis) created, the height was zero. However, after a few
weeks, the number of blocks increased. As a result, the height of blockchain also
spiked.
Since the first block was created on June 1, 2023, the total time was 9,763,800
seconds (or 162,730 mins). Thus, the current height of the chain was 650920
(total time divided by block time).

Types
Blockchain networks are characterised into four categories, namely:
1. Public Blockchains
2. Private Blockchains
3. Hybrid Blockchains
4. Consortium Blockchains

I. Public Blockchains
Public blockchain networks are the most open and inclusive type of blockchain.
Anyone can join and participate without needing permission. This openness
promotes decentralization and ensures that no single entity has control over the
network. However, this also means that public blockchains often require
substantial computational power and can have slower transaction speeds.

Features
- Universal Access: Every node has access to read and write on the ledger.
Anyone can download and add notes to the system.
- Decentralized: It is purely decentralized.
- Anonymity: Transactions cannot be tracked back to the user.
- Slower: It is comparatively slower when put to other types of blockchain.

Applications
Public blockchains are ideal for scenarios where trust and transparency are
paramount. They are commonly used for cryptocurrencies like Bitcoin and
Ethereum.
II. Private Blockchains
In a private blockchain network, only selected and verified participants can join.
A single organization governs the network, controlling participation, running a
consensus protocol, and maintaining the shared ledger. This controlled
access significantly boosts trust and confidence among the nodes. Unlike public
blockchains, a private blockchain can be run behind a corporate firewall and
even be hosted on premises.

Features
- Restricted Access: Private blockchains are only accessible to authorized
participants.
- Enhanced Security: The data and information related to participants have
limited visibility, and confidentiality is paramount.
- Controlled Consensus: Private blockchains use consensus mechanisms
that fit the participants’ needs. The controlling organization sets
customized rules on operation, governance, and decision-making.

Applications
Private blockchains are utilised in Hyperledger fabric, (used by various
businesses for supply chain management, finance, and healthcare), Quorum
(developed by JP Morgan and relied upon for high privacy and transaction speed)

III. Hybrid Blockchains


Hybrid Blockchains are the most flexible because they combine elements of both
private and public networks. This type of blockchain is managed by a central
entity, with a private permission-based system alongside a public system. This
setup restricts access while giving central authority control over the specific data
that will be opened to the general public. Hybrid blockchains offer the best of
both worlds, enabling decentralization, transparency, and immutability similar to
public blockchains, while also providing faster transaction processing and
enhanced privacy like private blockchains.

Features
- Closed Ecosystem: A hybrid blockchain permits communication with
outside parties while maintaining anonymity.
- Data Security: Hybrid blockchains allow slightly more scope and offer
tighter data security procedures.
- New Regulations: The good thing about hybrid blockchain is that new
regulations must be implemented. However, the goal of the hybrid
blockchain will determine the type of modification.
- Economical: Given that just a small number of nodes are required to
validate transactions, their cost is guaranteed to be cheaper.
Applications
The best example of a hybrid blockchain is XinFin, the first hybrid blockchain
launched in 2017 built on the public blockchain Ethereum and the private
blockchain Qurorum.

IV. Consortium Blockchains


In a Blockchain consortium, multiple organizations come together to manage a
blockchain network collaboratively. This setup is more decentralized than private
blockchain networks, as all companies within the consortium are independent
and equal network members. The collaborative framework ensures that no single
entity has complete control, which can be a significant advantage for industries
requiring shared governance.

Features
- Permissioned Network: A consortium blockchain is a permissioned network
that only allows pre-selected entities to participate. This ensures that the
network is secure and only accessible to trusted parties.
- Private: It is also a private network that is not accessible to the public. This
ensures that the data is only visible to the participants and remains
secure. Participants can customize the blockchain to meet their specific
needs and requirements.
- Shared: A consortium blockchain is operated and maintained by a group of
organizations or entities. This shared control allows for greater
collaboration and transparency between participants.
- Transparency: The transparency of the blockchain allows for greater
accountability and traceability of the data. Secure and transparent record-
keeping provides greater trust and confidence in the data recorded on the
blockchain.
Application
Two standout applications of the consortium blockchains are:
R3 Corda in the financial industry that serves as a secure and efficient way for
banks and financial platforms to enable faster transactions, lower operational
costs, and improved inter-firm trust.
The IBM food trust which is used by major companies like Nestle and Walmart to
ensure food safety and transparency across the supply chain.

History of Blockchain
Although the term blockchain gained popularity in the year 2008 with the
introduction of Bitcoin cryptocurrency, its underlying principles and concepts
have been in use since the 1980s.
In the year 1983, David Chaum proposed the concept of blind signatures, a new
form of cryptography that allowed the automation of payments and constrained
third parties from identifying the payee, amount, and time of payment.
Later, in the year 1991, the concept of timestamped documents was introduced
by a group of researchers who were trying to secure digital documents by
stamping the documents with the date.
In 2004, Harold Thomas Finney II (Hal Finney) introduced the Reusable Proof of
Work (RPOW).
It was in 2008 when blockchain made its public debut with a paper titled
“Bitcoin: A Peer-to-Peer Electronic Cash System” outlining the development of a
secure and transparent currency without the involvement of a bank or central
party. The first bitcoin transaction took place in the year 2009 when a
transaction of 10 BTC (Bitcoin) was done to his friend Hal Finney. This marked the
beginning of the first generation of blockchain technology. In the year 2010, the
world’s first bitcoin exchange was set up by the name “Bitcoin market”.
In 2013, Vitalik Buterin proposed the concept of smart contracts in his white
paper “Ethereum: The Ultimate Smart Contract and Decentralized Application
Platform”. In 2015 Ethereum launched its blockchain. The Linux Foundation
launched Hyperledger the same year which provides a set of tools for the
creation of blockchain. In 2016 the DAO project was built on top of Ethereum
which raised US$ 150 million. Later, in the same year, it was attacked causing a
loss of around US$ 50 million.

Predictions For the Future of Blockchain


Blockchain is morphing into an inevitable phenomenon owing to the core-
enabling technologies and significant opportunities it offers to virtual firms.
Amongst many, the following predictions have been made in relation to it:

1. Revolutionizing the Global Supply Systems : During the current epoch


there exists an enormous number of inefficiencies, fraudulent activities, and
errors in the global trade due to chaotic circumstances in dealings between
parties involving ill-intentions. The issues of counterfeit medicines, food
adulteration, and so on occur as a consequence of fragmented, partially-
automated business ecosystems that are devoid of a trusted central authority.
Applying blockchain to such issues will bring about order while acting as a
force unification. The application of this anti-disruptive technology will serve
to play a critical role in enhancing performance, flexibility, efficiency, and
maturity.
2. Identity for All: Within half a decade, it is likely that all of the individuals and
their assets (tangible and intangible) will have blockchain identities. With the
current dysfunctional and insecure identity systems, blockchain technology
will serve as the sole source of verification and therefore assist in:
- Increasing privacy and efficiency.
- Decentralizing and verifying the collected data
- Store information in one database (i.e., ledger)
- Reducing the risk of security breaches
- Increasing transparency by creating a new distributed identity platform.
3. Reduced Corruption: Blockchain creates transparency of official records.
Details of all assets, including land, will be recorded on an immutable
(tamper-proof), transparent, and secure digital ledger which is completely
open for the public to see. The uncertainty associated with any asset reduces
its traceability potential and asset price. Creating a distributed, asset tracking
system will help in increasing global wealth.
4. Financial Inclusiveness: By utilising blockchain, there is no need to rely on a
centralized institution such as a bank or government, to provide permission
for opening a bank account. It will provide easy access to a crypto exchange
where people can buy and sell cryptocurrencies using their smartphones.
With a lot of merchants around the world already accepting cryptocurrencies,
cryptocurrencies may become a de facto standard by 2030 akin to the U.S.
Dollar, which is widely accepted today.
5. Tokenization of Assets: Tokenization refers to proving the ownership of real
assets by using digital tokens. Blockchain aids in the tokenization of large-
scale assets. This means that even Sofi, a farmer from a rural area can
become a fractional owner of a revenue-generating asset such as a hotel or a
gold mine. This will help open up a potential investor base to a broader
market, reduce the trading time, and increase liquidity compared to
traditional securities.

Building a Blockchain
Infrastructure Requirements
A blockchain is much more than a new type of software or database. This is why
a smart and comprehensive infrastructure is required. This section delves into
the blockchain infrastructure’s software and hardware requirements.

Software Requirements
1. Solidity: Solidity was created to target the Ethereum Virtual Machine and was
influenced by Python, C++, and JavaScript. Blockchain developers can use
Solidity to create apps that can execute self-enforcing business logic
contained in smart contracts, resulting in an authoritative transaction record.
This is useful for establishing voting contracts, crowdfunding contracts, multi-
signature wallets, and blind auctions.
2. Geth: On the Ethereum Blockchain, Geth is used for a variety of operations,
including token transfers, ether mining, the creation of smart contracts, and
block history exploration. You can link with any existing Blockchain or start a
new one after downloading Geth. The good news is that Geth makes things
easier by linking to the Ethereum core net seamlessly.
3. Mist: The official Ethereum wallet created by Ethereum's developers is called
Mist. Mist is useful because there is a need for a specified location where you
can keep the Ether tokens and carry out your smart contracts before you can
begin utilizing the network.
4. Solc: A C++ command-line compiler for Solidity is called Solc (Solidity
Compiler). Its main objective is to translate Solidity scripts into a format that
the Ethereum Virtual Machine can understand more easily.
5. Remix: Remix is most commonly referred to as Remix IDE (Integrated
Development Environment). It is an open-source web and desktop application,
a development environment, if you will. It packs a rich set of plugins and
fosters a fast development cycle via intuitive GUI. Moreover, Remix IDE is
primarily used for the entire process of smart contract development. In
addition, it serves as a playground for teaching and learning how to use the
Ethereum network.
6. MetaMask: MetaMask is a wallet designed to function that acts as a bridge
between Ethereum Blockchain and a browser (Chrome or Firefox). Essentially,
it acts as a browser extension. MetaMask offers a software platform that
allows you to serve Ether and other ERC-20 assets while also letting you
interact with Ethereum Dapps. The best part – you can do so right from your
browser. Since it can interact with different Ethereum test networks, it makes
an ideal wallet for Blockchain Developers. Once you installed the app in your
browser, you have a built-in Ethereum wallet ready to be used.
7. Blockchain Test net: A test net or test network is a type of network that can
provide functionalities similar to that of a main network (main net).
Developers can use test net as a simulated version of main net to test,
modify, or create projects on blockchain networks.
Testing or implementing new features on the main net can be highly risky and
irreversible in case of any errors. So, blockchain developers first conduct the
trials on the test net to monitor the functioning before adding it live on the
main net.
8. BaaS: Blockchain-as-a-service (BaaS) involves a third-party offering cloud-
based solutions that enable an organization to build and run blockchain
applications and smart contracts without the requirement of in-house
blockchain infrastructure. BaaS providers offer the flexibility and capability of
blockchain technology and the ability to reach a wider audience.

Hardware Requirements
Blockchain computing hardware is generally referred to as high-performance
computers or HPCs. These powerful computers are important to businesses
because they enable tasks to be completed quickly and error-free.
These specifications and requirements may include processing speed, memory,
storage, plug-ins, and environmental constraints such as shock, vibration,
temperature fluctuations, and humidity levels.
1. Central Processing Unit
The CPU or processor is the main component of a system. It is the brain of a
computer system. It carries out complex operations that control the entire
computer. Improved CPU performance translates into quicker work completion as
it increases performance. However, blockchain technology is revolutionizing how
we perceive computing power, particularly latency and real-time transactions.
2. Blockchain and GPUs
Graphics cards are also referred to as graphics processing units. A GPU is
designed to handle a computer’s display tasks, such as video rendering.
A GPU is made to perform several calculations per second with one important
restriction: the calculations must not be very complicated. As a result, a CPU
uses the GPU to handle specific processes, allowing it to concentrate on other
essential measures that a GPU cannot handle.
3. Nodes and Clients
A node is a computer that performs the essential tasks of the network, such as
authenticating transactions, maintaining blockchain records, storing blockchain
data, or casting votes for network governance. A client is a computer program
that specifies how these important tasks should be carried out.
Depending on how the network is designed, it can support multiple software
implementations or clients. Many computer languages can be used to build
clients and can be implemented differently. There are different proof-of-stake
network nodes: participation nodes, sentry nodes, replay nodes and read/write
nodes.
4. Clusters
A cluster is a set of network-specific nodes and their supporting infrastructure. A
cluster consists of failover protection, load balancers, container services, and
monitoring and alerting services. Two primary use cases include maintaining
multiple clusters and supporting Blockchain client APIs.

Creation of a Blockchain
The following is a prototype built from scratch to give a thorough understanding
of the blockchain’s state machine in the simplest coding language Go in four
simple steps that involve:
- Creating a block
- Adding Data to the block (Header and Body)
- Hashing the blocks
- Chaining the Blocks together
Let’s start with a baby prototype in the Go language.

Blockchain Using Go
If you are unfamiliar with the Go coding language, the developer website for the
same offers a complete beginner’s guide for basic understanding. (A Tour of Go).
There are comments entered to assist in understanding the code.
Step 1: Create A Block
Begin by creating a folder with two files in it, ‘[Link]’ and ‘[Link]’.

Folder Structure

[Link]

If you run this program it will show an error because the CreateBlock function is
not defined yet, so go ahead and create it in [Link].
Step 2: Add Data to Your Blocks
The beauty of Go is that you don’t have to import or export functions, just
declare them with capital letters, and Go will find them for you. Now, open a
terminal and move to your created folder, and run go build, then run “.\go” on
Windows, or “./go” on Linux and Macbook.

Now we have a simple Go program that calls a function and passes some string
data. Let us add two more files to make our total number of files equate to four:
- [Link]
- [Link]

Step 3: Hash your Block


[Link]
[Link]
[Link]
[Link]

Running this code, enter “.\go”.


Step 4: Chaining the Blocks Together
It seems there is an error, the blocks in our blockchain are absent of any ID’s and
timestamps so let us add the information by modifying the ‘[Link]’ file by
adding the two lines in the ‘for loop’

Running the code again, we achieve the following result:


Frequently Asked Questions Regarding Blockchain
Q.1) Just how immutable or true is the date on Blockchain?

Ans: Each blockchain is established by consensus between the chain's users. This
means that after a transaction has been validated a number of times, the
cryptography in the blockchain ensures the entry cannot be reversed. However,
blockchain does have three types of vulnerabilities.
1. Consider a large city that leverages blockchain applications. Who should
be able to access the data on the blockchain? Should they be able to
access it in full or in part? These questions are especially pressing when
there is a “single point of failure,” such as in a corporation or local or
national government. To answer them, the blockchain manager would
need to balance many issues. One is security and accessibility: for
example, to control access, the city might want to have several layers of
passwords to a computer and store data in an encrypted format, yet
enable city government officials to easily access data for improving their
day-to-day operations. In addition, the blockchain manager would need to
protect unstructured data (information that is not reams of structured data
such as numbers, but consists, for example, of written business
documents), while also allowing for redaction of all or parts of them,
depending on the role of the user.
2. The second vulnerability is the possibility that a blockchain could be
hijacked and hacked if 51 percent of the chain is controlled by a bad node
that wants to tamper with the results. The issue is not trivial: the state of
Michigan has recently introduced a bill that imposes criminal penalties for
manipulating data on blockchains in order to commit fraud. The upside of
the famous “51% rule” is that it also makes it possible for a blockchain
platform to “fork” out a hacker's data entry, capture the money, and leave
the chain looking like the hack never occurred. This is what Verge, a
cryptocurrency platform, did in April 2018 when an attacker stole 250,000
verges, the currency unit.
3. The third vulnerability of blockchain systems is What if the data imputed
on the blockchain, for example, on a medical treatment are inaccurate or
fraudulent to begin with? This is a thorny question, but one that can be
overcome by replacing humans with machines in making data entries.

Q.2) Is there identity Theft on Blockchain?


Ans: Blockchain can solve concerns about identity theft. For example, the Illinois
Blockchain Initiative is running a pilot where birth certificates are placed on a
blockchain. These certificates are controlled by the user and can be quickly and
easily validated without a consultation with a centralized repository. Blockchain
could also help in voting where each voter has an ID code, but no one would be
able to connect it back to the corresponding person. This is of course critical for
the integrity of the democratic process. Similarly, blockchain can offer a viable
alternative to a centralized database for storing personally identifiable
information (PII): self-sovereign identity (SSI). The SSI solution uses blockchain to
establish immutable recordings of the uses of globally unique decentralized
identifiers (DIDs) that are essentially a secret website or URL that is
cryptographically stored on a blockchain ledger.

Q.3) Can Users Delete their Information on Blockchain?


Ans: A big question is whether users can delete their data on a blockchain. In
principle, blockchains are subject to the same privacy laws that govern the
internet. For example, the European Union's General Data Protection Regulation
(GDPR) has a “right-to-be-forgotten” principle where a user can ask an internet
service provider to remove his or her data from search results. Blockchain in
theory needs to then reflect this principle as well. The owners of health, financial,
and other sensitive data need to be able to request all or parts of their data be
removed from the blockchain. But how this is done exactly is not clear, as the
data on blockchain is designed to be immutable.
Q.4) Will Blockchain streamline Money-Laundering?
Ans: Does blockchain help bad nodes cover their tracks in illicit transactions if
blockchain users are anonymous? One somewhat cynical answer might be that
the banking system is too porous as is to stop money laundering such that
criminals would benefit little from using blockchain. Another response turns on
size of transactions: perhaps for smaller illicit transactions, permissionless
blockchains can provide cover. But for larger transactions traveling through
banking systems, blockchain can make it harder to commit fraud or launder
money.
Q.5) Will Blockchain end up guzzling all of the world’s energy?
Ans: Just like an internet search on Google, entries and data on blockchain use
energy. Bitcoin has astounding energy needs: today it takes the annual energy
use of Ireland to run bitcoin for a year. The reason is bitcoin's original design.
Bitcoin miners need to convert each list of most recent transactions into a
signature that proves that the information is true. It is this process that takes up
a great deal of computing power. Miners run computer calculations to track and
verify transactions and solve complex puzzles to obtain bitcoin rewards. The
founder of bitcoin, Nakamoto, set up a competition to determine a very specific
signature based on three inputs: the signature of the preceding block, the list of
new transactions, and a random third number.87 Since miners don't know the
third number, they must generate signatures repeatedly until one guesses
correctly. This method of reaching agreement—or “proof of work”—takes up
tremendous computing power.
This is not lost on bitcoin fans and foes. One alternative to the current process is
“proof-of-stake.” While proof of work rewards participants for “working,” or
spending computational resources, proof of stake selects validators based in part
on the size of their stake or their respective monetary deposits. Experts agree
this is much more energy efficient but still unproven.89 Meanwhile new energy
sources such as solar power are contemplated as fuel for bitcoin mining.
Q.6) Will Blockchain replace jobs?
Ans: Blockchain will unlikely be a job killer. It will, just like any technology,
transform the nature of work by changing companies' business and revenue
models. For example, law firms that want to be in the business of writing smart
contracts will need to understand how blockchain “thinks” and how to ensure
proper programming of such contracts. Banks using blockchain in trade finance
will need to reimagine their revenue models, for example, from charging for due
diligence to charging pay-per-use fees for users to be part of the blockchain
network and upselling services to them. The main challenge blockchain faces is
not about the technology; it is about the value proposition for everyone on the
blockchain.

Terms Of Reference
1. Node: A participant in the blockchain network.
2. Cryptography: It is the process of hiding or coding information so that only
the person a message was intended for can read it.
3. Decentralised Identifier: It is an address on the internet that someone
referred to as Subject, which could be you, a company, a device, a data
model, thing, can own and direct control. It can be used to find a DID
document connected to it, which provides extra information for verifying
the signatures of that subject.
4. Smart Contracts: They are digital contracts stored on a blockchain that are
automatically executed when predetermined terms and conditions are
met. Typically used to automate the execution of an agreement so that all
participants can be immediately certain of the outcome, without any
intermediary’s involvement or time loss.
5. Hashing: It is the process by which any type of data fed to the algorithm
gets an output that is unique to that provided data.
6. Block Validation: This refers to a process in the blockchain where a group
of participants operate different nodes to validate (and verify) the
transactions. The prime purpose of this process is to confirm all the
transactions before adding them to the blockchain or database.
7. Ethereum Virtual Machine (EVM): The EVM governs what nodes can or
cannot do to the distributed ledger maintained by the Ethereum
blockchain and also defines the specific rules of changing state from block
to block.
8. Proof Of Work (PoW): It is a consensus mechanism used in blockchain
networks to verify transactions and create new blocks.
9. Reusable Proof of Work (RPOW): This is a system that allows users to
provide proof that they have performed a certain amount of computational
work without needing to reveal the details of that work. This is achieved
through the use of specially designed servers that can verify the work and
issue tokens or credits to the users.
[Link] Explorer: A block explorer is a place where you can view every wallet
address (and its history), along with every transaction and details that
have been recorded on a blockchain network.
[Link] Applications (DAPP): These are smart contract-based
protocols and applications that operate on public blockchains. One of the
defining features of Dapps is that they are not under the control of any
single authority. Instead of relying on centralized servers with a single-
point-of-failure, DAPPS use a distributed network of computers.
Accordingly, many are community-governed. Furthermore, public DAPPS
offer borderless and permissionless access presenting utility for a global
market. Also, indiscriminate financial DAPPS provide business new
opportunities to developing countries and economies
Bibliography
I. [Link]
II. [Link]
III. [Link]
IV. [Link]
V. [Link]
VI. [Link]
VII. [Link]
VIII. [Link]
IX. [Link]
X. [Link]
XI. [Link]
XII. [Link]
XIII. [Link]
XIV. [Link]
XV. [Link]
XVI. [Link]
XVII. [Link]
XVIII. [Link]
XIX. [Link]
XX. [Link]
XXI. [Link]
XXII. [Link]
XXIII. [Link]
XXIV. [Link]
XXV. [Link]
XXVI. [Link]
XXVII. [Link]
XXVIII. [Link]
XXIX. [Link]
XXX. [Link]
XXXI. [Link]
XXXII. [Link]
XXXIII. [Link]
XXXIV. [Link]
XXXV. [Link]
XXXVI. [Link]
XXXVII. [Link]
XXXVIII. [Link]
XXXIX. [Link]
XL. The World of Blockchain by Debajani Mohanty
XLI. A comprehensive review of blockchain technology: Underlying principles and
historical background with future challenges by Gautami Tripathi
XLII. The Human Rights Risks and Opportunities in Blockchain by William Crumpler, Marti
Flacks, Amith Mandavilli
XLIII. Disadvantages and Advantages of Blockchain by Mukhammedova Zarina Murodovna

You might also like