Skip to Main Content
COM3MN206 • FINTECH
Module 3
Calicut University • B.Com • Semester 3

FinTech (COM3MN206) — Module 3: Blockchain & Cryptocurrency

Lecture Notes • Complete Study Material

The creation of Bitcoin in 2008 by the pseudonymous entity Satoshi Nakamoto introduced a breakthrough in computer science and monetary economics: Distributed Ledger Technology (DLT), commonly referred to as Blockchain. By synthesizing asymmetric public-key cryptography, decentralized peer-to-peer networking, cryptographic hashing, and economic consensus algorithms, blockchain established the world's first trustless, immutable digital ledger operating without a central coordinating authority.

This module provides an exhaustive academic analysis of blockchain architecture, its operational mechanisms, its application and impact within commercial banking, the structural taxonomy of cryptocurrencies (Bitcoin, Ethereum, Stablecoins), the Scalability Trilemma, and the regulatory and tax framework governing Virtual Digital Assets (VDAs) globally and in India.

1. Introduction to Blockchain: Conceptual Architecture

To understand blockchain, one must contrast it with traditional centralized database architectures:

  • Centralized Database Model: Managed by a single central entity (such as a commercial bank, credit bureau, or cloud provider). While computationally efficient, it possesses a Single Point of Failure (SPOF), is vulnerable to centralized data tampering, and requires users to place absolute trust in the intermediary.
  • Distributed Ledger Model (Blockchain): A decentralized, chronologically sequenced, cryptographically secured transaction record shared, replicated, and synchronized across an independent network of computer nodes worldwide. No single node owns the ledger, and alterations require network-wide consensus.
Anatomy of a Blockchain BlockTechnical Data Structure
Block Header FieldFunctional & Cryptographic Role
1. Previous Block HashA 256-bit cryptographic fingerprint of the immediately preceding block. This pointer creates an unbreakable mathematical link backwards to the original "Genesis Block", ensuring chronological integrity.
2. Merkle Root HashA single cryptographic summary hash representing the combined mathematical tree of all individual transactions included within the block, enabling efficient transaction verification without reading the entire dataset.
3. TimestampAn immutable digital record marking the precise universal Unix epoch time when the block was assembled and validated by the network.
4. Nonce ("Number used Once")A 32-bit arbitrary numeric counter that miners iteratively adjust to alter the block header hash until it meets the network's current mining difficulty target.
5. Block Body (Data)The complete ledger list of digitally signed, verified financial transactions batched into the block for permanent execution.

2. How Blockchain Works: The Core Cryptographic Mechanics

The operational integrity of blockchain relies on four interdependent computational engines:

[Transaction Initiated] → [Digitally Signed with Private Key] → [Broadcast to P2P Node Network] → [Mempool Ingestion] → [Consensus Algorithm Verification: PoW / PoS] → [Batching into Block with SHA-256 Hash of Previous Block] → [Block Appended to Distributed Chain] → [Immutable Settlement]

1. Cryptographic Hashing: Secure Hash Algorithm (SHA-256)

A cryptographic hash function is a mathematical algorithm that transforms an input string of arbitrary length into a deterministic, fixed-size 256-bit hexadecimal string. In blockchain systems, hashing provides three fundamental properties:

  • Deterministic Output: Identical input data will always yield the exact same 64-character hexadecimal hash.
  • One-Way Pre-Image Resistance: It is computationally infeasible to reverse-engineer the original input message from its hash output.
  • The Avalanche Effect: Changing a single character, comma, or digit in the input data completely alters the resulting hash output, making tampering immediately noticeable to all nodes.

2. Asymmetric Public-Key Cryptography & Digital Signatures

Ownership and authorization of transactions on a blockchain operate via asymmetric key pairs:

  • Private Key: A secret 256-bit mathematical number generated randomly and held strictly confidential by the account holder. It is used to mathematically sign transactions, proving ownership.
  • Public Key & Wallet Address: Derived from the private key via one-way Elliptic Curve Cryptography (ECDSA). The public key is hashed to generate the public wallet address, which can be safely shared across the network to receive funds.
  • Digital Signatures: When a user initiates a transfer, their private key generates a digital signature. Any network node can verify with the public key that the legitimate private key holder authorized the transaction, without revealing the private key itself.

3. Merkle Trees & Cryptographic Efficiency

Within each block, individual transactions are structured into a binary Merkle Tree. Transactions are paired and hashed iteratively: Hash(Tx1) and Hash(Tx2) combine to form Hash(1-2), continuing up the hierarchy until a single Merkle Root is produced in the block header. This hierarchical hashing allows light client nodes to verify whether a specific transaction is present in a block in logarithmic time (O(log N)) using a lightweight cryptographic proof (Merkle Proof), without downloading gigabytes of raw transaction history.

3. Consensus Mechanisms: Achieving Distributed Agreement

In a centralized financial system, the central bank or a clearing house determines the true state of account balances. In an open peer-to-peer network where participating nodes may be untrusted or malicious, the network must solve the classic computer science dilemma known as the Byzantine Generals Problem. It accomplishes this through Consensus Mechanisms.

1. Proof of Work (PoW)

Mechanics: Participating nodes (miners) compete to solve a computationally demanding mathematical puzzle: finding a nonce that, when hashed with the block header, produces a hash with a specific number of leading zeros.

Economic Security: Modifying a past transaction requires recalculating the puzzle for that block and all subsequent blocks faster than the combined computing power of the honest network (the 51% attack threshold).

Adopted By: Bitcoin, Dogecoin, Litecoin.

2. Proof of Stake (PoS)

Mechanics: Eliminates energy-intensive computational mining. Validators lock up ("stake") native cryptocurrency tokens into a smart contract as economic collateral.

Economic Security: Validators are selected pseudo-randomly to propose and validate blocks in proportion to their economic stake. If a validator acts maliciously (e.g., signing conflicting blocks), their staked tokens are permanently burned ("slashed").

Adopted By: Ethereum (post-Merge), Solana, Cardano, Polkadot.

Comparative Analysis: Proof of Work vs. Proof of Stake

DimensionProof of Work (PoW)Proof of Stake (PoS)
Security FoundationPhysical computational processing power (ASIC hardware and electricity).Capital collateral and financial stake locked in escrow smart contracts.
Energy ConsumptionVery high: global Bitcoin mining consumes over 120 Terawatt-hours (TWh) annually.Negligible: consumes over 99.9% less energy than PoW, supporting green computing.
Transaction ThroughputLow: Bitcoin averages 7 transactions per second (TPS) with 10-minute block times.Moderate to High: block finality ranges from seconds to sub-seconds (15 to 3,000+ TPS).
Attack Vulnerability51% Hashrate Attack: Requires acquiring over 51% of global specialized computing power.33% – 67% Capital Stake Attack: Requires buying and risking massive portions of total token supply.
Hardware AccessibilityDominated by centralized industrial mining farms with specialized ASIC rigs.Accessible via standard consumer servers and staking pools (e.g., Lido, Rocket Pool).

Other Notable Consensus Protocols

  • Delegated Proof of Stake (DPoS): Token holders vote for a small committee of elected delegates (e.g., 21 to 100 delegates) who validate transactions in rapid succession, maximizing throughput at the cost of greater governance centralization.
  • Practical Byzantine Fault Tolerance (PBFT) & Raft: Deterministic voting rounds among known, permissioned nodes, widely used in private enterprise consortium blockchains (e.g., Hyperledger Fabric, Corda).

4. Blockchain in Banking: Key Areas of Interaction

While public blockchains like Bitcoin operate as permissionless, censorship-resistant networks, the commercial banking sector has focused on Permissioned / Enterprise Consortium Blockchains. In these networks, node participation is restricted to regulated, identity-verified institutions.

Primary Banking & Institutional Use CasesInstitutional Integration
1. Cross-Border Payments & Clearing:
Traditional SWIFT wires rely on correspondent banking chains with multiple intermediary banks, high fees (3% – 7%), and settlement delays of 2 to 5 business days. Enterprise DLT enables direct peer-to-peer interbank settlement in real time (T+0), lowering transaction costs and reducing liquidity trapped in foreign nostro/vostro accounts.
2. Trade Finance & Letters of Credit (LC):
Trade finance has historically relied on physical paper bills of lading, manual cargo checks, and postal couriers, taking 10 to 20 days. DLT networks link importers, exporters, shipping carriers, and customs authorities on a shared ledger, executing automated payments upon delivery verification.
3. Syndicated Loan Administration:
Multi-bank corporate loans historically suffered from fragmented spreadsheets, manual faxing, and complex settlement reconciliations. DLT provides an immutable, real-time record of lender participation, principal transfers, and interest distributions.
4. Shared Interbank e-KYC Repositories:
Commercial banks spend significant resources independently verifying identity documents for the same corporate customers. A permissioned DLT ledger allows accredited banks to share cryptographically verified KYC credentials with customer consent, avoiding redundant checks.

Leading Enterprise Blockchain Frameworks in Banking

Enterprise PlatformGoverning Consortium / FounderCore Architectural Characteristics
CordaR3 Consortium (comprising over 200 global financial institutions).Designed specifically for regulated financial services. Unlike open ledgers, data is shared strictly on a need-to-know basis between counterparties rather than broadcast globally, protecting trade confidentiality.
Hyperledger FabricLinux Foundation and IBM.Modular, open-source enterprise DLT featuring pluggable consensus protocols and private transaction channels for confidential corporate workflows.
Onyx (Liink)J.P. Morgan Chase.A bank-led network facilitating peer-to-peer cross-border information exchange, verifying account validity before fund transfers to eliminate wire rejections and processing errors.

5. Benefits & Limitations of Blockchain in the Financial Sector

The adoption of blockchain technology introduces substantial operational efficiencies alongside clear technical and structural challenges:

Transformative Benefits for Finance

Real-Time Atomic Settlement (T+0): Eliminates clearing settlement delays, reducing counterparty credit risk and capital reserve requirements.

Lower Intermediation Overheads: Automates reconciliation and settlement, reducing reliance on manual processing, escrow agents, and clearing houses.

Enhanced Auditability & Transparency: An immutable, cryptographically verifiable transaction history simplifies compliance reviews and reduces fraud.

Operational Resilience: Eliminates single points of failure; the distributed ledger remains operational even if several nodes experience outages.

Inherent Technical Limitations & Bottlenecks

Throughput Bottlenecks: Public decentralized blockchains process transactions much slower (Bitcoin: 7 TPS, Ethereum L1: 15–30 TPS) than centralized payment networks (Visa: 65,000+ TPS).

Finality & Forking Risks: Probabilistic settlement in PoW networks requires waiting for several confirmation blocks to ensure finality.

Storage & Node Bloat: As transaction histories expand over years, the resource requirements for running a full archival node increase significantly.

Key Management Risk: Cryptographic private key loss is irreversible; there is no central customer support to recover lost keys or reverse unauthorized transactions.

6. The Blockchain Scalability Trilemma

Articulated by Ethereum creator Vitalik Buterin, the Scalability Trilemma states that a public blockchain can realistically achieve only two of the following three core properties simultaneously:

[DECENTRALIZATION] / / / / / TRI- / LEMMA / / [SECURITY] ------------------ [SCALABILITY]
Trilemma CombinationRepresentative NetworksInherent Architectural Trade-Off
Decentralization + SecurityBitcoin, Ethereum (Layer 1).Sacrifices Scalability: Prioritizes global node decentralization and robust cryptographic security, accepting lower transaction throughput and higher gas fees.
Security + ScalabilityEnterprise DLTs (Hyperledger, Corda), Centralized Chains (Binance Smart Chain).Sacrifices Decentralization: Achieves high transaction speeds by restricting validation to a small number of authorized, high-performance validator nodes.
Decentralization + ScalabilityEarly peer-to-peer experimental networks.Sacrifices Security: High throughput across decentralized nodes without sufficient economic staking or computation risks Sybil and consensus attacks.
Layer 2 Scaling Solutions: Resolving the Trilemma

To address the Trilemma without sacrificing decentralization or base-layer security, the industry is deploying Layer 2 (L2) Scaling Architectures. Technologies like Zero-Knowledge Rollups (zk-Rollups) and Optimistic Rollups (e.g., Arbitrum, Optimism, Polygon zkEVM) process hundreds of transactions off-chain in batches, generating cryptographic validity proofs that settle back onto the secure Ethereum Layer 1, driving throughput up to thousands of TPS while keeping transaction fees low.

7. Cryptocurrencies: Definition and Defining Characteristics

A cryptocurrency is a digital, decentralized medium of exchange and unit of value whose creation, issuance, and ownership verification are governed by cryptography rather than a central monetary authority.

Core Distinguishing Characteristics of CryptocurrenciesMonetary & Technical Attributes
1. Absence of Central Authority:
Operates without a central bank or government issuer. Monetary rules, inflation schedules, and issuance rates are defined in open-source software protocols.
2. Cryptographic Security & Signatures:
Balances are secured by public-private key pairs, preventing counterfeiting or unauthorized fund transfers.
3. Pseudonymous Ledger:
Transaction histories are publicly readable on the blockchain, but identities are associated with cryptographic alphanumeric addresses rather than legal names.
4. Programmatic Scarcity:
Many cryptocurrencies enforce mathematically capped supplies (e.g., Bitcoin's limit of 21 million units), contrasting with fiat currencies that central banks can expand.
5. Borderless P2P Transferability:
Transfers occur directly between peers globally, 24/7/365, without routing through correspondent banks or foreign exchange desks.
6. Transaction Immutability:
Once confirmed on the blockchain, transactions cannot be canceled, refunded, or reversed by any central administrator.

8. The Interplay Between Cryptocurrencies and Blockchain

A clear distinction must be maintained between Blockchain and Cryptocurrency. Blockchain is the underlying database infrastructure and communication protocol; cryptocurrency is the native digital incentive token required to operate and secure an open, decentralized blockchain.

Analytical DimensionBlockchain InfrastructureCryptocurrency Token
Fundamental NatureDistributed, append-only cryptographic ledger technology.Digital asset, token, or financial unit of account.
Primary PurposeSecurely recording, synchronizing, and executing transactions across untrusted nodes.Serving as an economic incentive to reward validators/miners and paying network transaction fees (gas).
Application BreadthBroad: used across supply chains, healthcare records, identity management, and voting.Specific: serves as a medium of exchange, store of value, or access utility token.
IndependenceCan exist without a public cryptocurrency (e.g., private consortium blockchains like Hyperledger).Cannot function without an underlying blockchain or distributed ledger architecture.

9. Taxonomy of Cryptocurrencies: Major Asset Classes

The cryptocurrency ecosystem contains thousands of digital assets serving distinct economic and computational functions:

1. Bitcoin (BTC): The Digital Gold Archetype

Launched in January 2009 by Satoshi Nakamoto, Bitcoin is the first decentralized cryptocurrency. It operates as a peer-to-peer electronic cash system designed to serve as a digital store of value and macro inflation hedge:

  • Fixed Supply Cap: The protocol algorithmically caps total issuance at 21 million BTC, expected to be reached around the year 2140.
  • The Halving Mechanism: Every 210,000 blocks (roughly every four years), the block reward issued to miners is reduced by 50% (starting at 50 BTC in 2009, then 25, 12.5, 6.25, and dropping to 3.125 BTC in April 2024), enforcing predictable disinflation.
  • UTXO Architecture: Bitcoin tracks balances via the Unspent Transaction Output (UTXO) model, similar to paper bank notes, rather than an account-based balance ledger.

2. Ethereum (ETH): The Programmable World Computer

Proposed in 2013 by Vitalik Buterin and launched in 2015, Ethereum expanded blockchain technology from a simple monetary ledger into a Turing-complete decentralized computing platform:

  • Smart Contracts: Self-executing digital contracts with terms directly written in code (typically Solidity), automatically executing transactions when verified conditions are met.
  • Ethereum Virtual Machine (EVM): A global runtime environment executing smart contract code across all decentralized network nodes.
  • Decentralized Finance (DeFi) Ecosystem: Powers automated lending markets (Aave, Compound), decentralized exchanges (Uniswap), and tokenization standards (ERC-20 for fungible tokens, ERC-721 for non-fungible tokens / NFTs).
  • The Merge (2022): Transitioned Ethereum from energy-intensive Proof of Work to Proof of Stake, cutting network energy consumption by approximately 99.95%.

3. Stablecoins: Bridging Digital and Fiat Currencies

A major challenge in using Bitcoin or Ethereum as everyday transactional currencies is high price volatility. Stablecoins address this by pegging their market valuation 1:1 to a stable reserve asset, usually the US Dollar.

Stablecoin CategoryStabilization ArchitectureRepresentative Examples & Risk Profiles
1. Fiat-CollateralizedThe centralized issuer holds USD cash, commercial paper, and short-term US Treasuries in bank vaults for every token minted (1:1 reserve ratio).Tether (USDT), USD Coin (USDC).
Risks: Centralization, audit transparency questions, bank account seizure exposure.
2. Crypto-CollateralizedOver-collateralized by locking volatile cryptocurrencies (ETH) into smart contracts (e.g., locking USD 150 of ETH to mint USD 100 of stablecoin).MakerDAO (DAI).
Risks: Capital inefficiency, liquidation cascades during sharp crypto market downturns.
3. Algorithmic StablecoinsUnbacked by reserves; maintains peg via programmatic arbitrage and market-making incentives between two complementary native tokens.TerraUSD (UST) / Luna.
Risks: Highly vulnerable to "death spiral" bank runs (as demonstrated by Terra's USD 40 billion collapse in May 2022).

10. Global Regulatory Approaches & Challenges

The pseudonymous, borderless nature of cryptocurrencies presents significant policy challenges for global financial regulators, tax authorities, and central banks:

Core Global Regulatory Concerns

Financial Crime & AML/CFT: Digital assets can be moved across borders pseudonymously, raising illicit financing risks.

Consumer Protection & Market Manipulation: Retail investors face risks from fraudulent initial coin offerings (ICOs), rug pulls, and exchange insolvencies (e.g., FTX in 2022).

Financial Stability & Systemic Risk: Growing linkages between crypto markets and commercial banks increase the potential for contagion during market stresses.

Monetary Sovereignty: Widespread adoption of private stablecoins could weaken central bank control over domestic money supply and interest rate transmission.

Landmark International Frameworks

FATF Travel Rule: Mandates Virtual Asset Service Providers (VASPs) to collect and share originator and beneficiary data during crypto transfers above specified thresholds.

EU MiCA (Markets in Crypto-Assets): A comprehensive European framework establishing uniform licensing, consumer disclosures, and reserve asset rules for stablecoin issuers.

US SEC & CFTC Framework: Evaluates digital tokens under the Howey Test to determine whether an asset constitutes an investment contract / security requiring formal registration.

11. Cryptocurrency Regulatory & Tax Framework in India

India's regulatory stance toward cryptocurrencies and Virtual Digital Assets (VDAs) has developed through distinct legislative and judicial phases:

[April 2018] RBI Circular Prohibiting Banks from Servicing Crypto Entities ↓ [March 2020] Supreme Court Landmark Ruling (IMAI vs. RBI) Setting Aside the Ban ↓ [Union Budget 2022] Introduction of Formal VDA Taxation (Sections 115BBH & 194S) ↓ [March 2023] PMLA Notification: Crypto Exchanges Brought Under FIU-IND Supervision ↓ [Ongoing] Promotion of Central Bank Digital Currency (CBDC e-Rupee Pilot)

Key Elements of India's VDA Framework

  • The Supreme Court Ruling (March 2020): In Internet and Mobile Association of India (IMAI) v. Reserve Bank of India, the Supreme Court set aside the RBI's 2018 circular banning banks from facilitating crypto transactions, citing lack of proportionality under Article 19(1)(g) of the Constitution (freedom to practice any profession/trade).
  • Statutory Tax Framework (Finance Act, 2022):
    • Section 115BBH (Income Tax Act): Imposes a flat 30% tax (plus applicable surcharge and cess) on income derived from the transfer of any Virtual Digital Asset. Crucially, deductions are prohibited (except acquisition cost), and losses from one VDA cannot offset profits from another VDA or other income streams.
    • Section 194S (TDS): Mandates a 1% Tax Deducted at Source (TDS) on payments made for the transfer of VDAs exceeding specified thresholds (₹50,000 for specified persons, ₹10,000 for others), providing tax authorities with an audit trail of domestic crypto transactions.
  • Anti-Money Laundering Framework (PMLA / FIU-IND 2023): In March 2023, the Ministry of Finance brought VDA service providers under the Prevention of Money Laundering Act, 2002 (PMLA). All domestic and offshore crypto exchanges serving Indian residents must register with the Financial Intelligence Unit - India (FIU-IND), implement KYC protocols, and report suspicious transaction activity.

12. Central Bank Digital Currency (CBDC): The Digital Rupee (e-Rupee)

To offer a sovereign digital alternative to unbacked private cryptocurrencies, the Reserve Bank of India launched pilots for its Central Bank Digital Currency (CBDC), known as the Digital Rupee (e₹), in late 2022.

CBDC vs. Private Cryptocurrencies vs. Traditional Electronic MoneyComparative Taxonomy
FeatureCBDC (e-Rupee)Private CryptocurrenciesCommercial Bank Digital Money
Issuing AuthoritySovereign Central Bank (RBI).None; decentralized algorithm.Commercial banks (NEFT, UPI).
Legal Tender StatusOfficial sovereign legal tender.Not legal tender in most nations.Claim on commercial bank deposits.
Balance Sheet LiabilityDirect liability of the Central Bank.No liability; market-driven value.Liability of the commercial bank.
Underlying Peg / ValueFixed 1:1 with national fiat rupee.Volatile; market supply and demand.1:1 with commercial bank balances.
Credit / Default RiskSovereign risk-free instrument.High risk of capital loss.Commercial bank default risk (insured up to statutory limits).

Operational Architecture of the Digital Rupee (e₹)

1. Wholesale CBDC (e₹-W)

Targeted at interbank financial institutions.
Primary Use: Settlement of secondary market transactions in government securities (G-Secs) and cross-border wholesale remittances, reducing settlement risk and clearing overheads.

2. Retail CBDC (e₹-R)

Designed for everyday consumer and merchant transactions.
Distribution: Two-tier tokenized model where the RBI issues e-Rupee tokens to banks, who distribute them to retail users via digital mobile wallets, interoperable with existing UPI QR codes.

13. Analytical Case Studies

Case Study 1: Trade Finance Automation & The Letter of Credit (LC) Pilot

The Historical Challenge: Traditional cross-border Letters of Credit (LC) involve over 20 distinct corporate, banking, and government entities exchanging more than 30 physical paper documents (bills of lading, certificates of origin, insurance forms). Processing an international LC typically takes 7 to 20 days, tying up working capital and exposing parties to bill-of-lading fraud.

The DLT Solution: Global consortiums (such as Contour on Corda) implemented enterprise distributed ledgers for international trade:

  • The importer, exporter, issuing bank, and advising bank collaborate on a shared permissioned ledger.
  • When shipping carriers verify container loading, an electronic Bill of Lading (e-BL) is cryptographically signed and published to the ledger.
  • Smart contracts evaluate conditions and trigger payment disbursement automatically once shipping criteria are met.

Result: LC turnaround times were reduced from 10 days to under 24 hours, reducing administrative costs, eliminating document discrepancies, and unlocking working capital.

Case Study 2: The Terra/Luna Algorithmic Stablecoin Collapse

Context: TerraUSD (UST) was an algorithmic stablecoin designed to maintain a USD 1.00 peg via a dual-token arbitrage mechanism with its sister governance token, Luna.

The Mechanism: The protocol allowed users to burn USD 1.00 worth of Luna to mint 1 UST, or burn 1 UST to redeem USD 1.00 worth of Luna. In theory, arbitrageurs would buy discounted UST if it fell below USD 1.00 and redeem it for Luna, restoring the peg.

The Collapse (May 2022):

  • Massive withdrawals from the Anchor Protocol (which had offered an unsustainable 20% yield) caused large-scale UST sales, breaking the USD 1.00 peg.
  • Panicked users redeemed UST for newly minted Luna tokens to exit their positions, triggering hyperinflation of Luna supply (from hundreds of millions of tokens to trillions).
  • Luna price collapsed toward zero, breaking the backing mechanism entirely and causing an estimated USD 40 billion loss in market value within days.

Academic Significance: This event highlighted the fragility of uncollateralized algorithmic stablecoins during liquidity shocks, prompting regulators worldwide (including the EU via MiCA and US authorities) to mandate high-quality reserve backing for stablecoins.

14. Module Summary & Key Concepts Index

Module III has provided a comprehensive examination of blockchain technology, cryptographic principles, distributed consensus protocols, and the digital asset ecosystem:

  • Core Architecture: Blockchain combines SHA-256 hashing, asymmetric digital signatures, Merkle trees, and peer-to-peer networks to create an append-only, tamper-evident distributed ledger.
  • Consensus Mechanisms: Proof of Work (PoW) relies on computational hashing, whereas Proof of Stake (PoS) uses economic token staking to achieve consensus and lower energy requirements.
  • Institutional Applications: In banking, permissioned consortium ledgers (Corda, Hyperledger) streamline cross-border payments, trade finance (LC automation), and shared e-KYC directories.
  • The Scalability Trilemma: Blockchains navigate trade-offs between Decentralization, Security, and Scalability, driving development of Layer 2 rollups for higher throughput.
  • Cryptocurrency Taxonomy: Digital assets range from store-of-value coins (Bitcoin) and programmable smart contract platforms (Ethereum) to asset-backed stablecoins.
  • Regulatory Governance: Global standards (FATF Travel Rule, MiCA) and India's framework (30% VDA tax, 1% TDS, FIU-IND compliance) reflect the formalization of digital asset oversight alongside central bank CBDC initiatives.

Key Concepts Index

Concept / TermAuthoritative Technical & Academic Definition
BlockchainA decentralized, chronologically linked, cryptographically secured distributed ledger that maintains immutable records across a network of independent nodes.
SHA-256A cryptographic hash function producing a fixed 256-bit output from arbitrary input data, featuring one-way resistance and high sensitivity to input changes.
Merkle TreeA binary cryptographic hash tree that summarizes all transactions in a block into a single root hash, enabling efficient verification of individual records.
Proof of Stake (PoS)A consensus mechanism where validators are selected to propose and verify blocks based on the amount of native cryptocurrency they have locked as collateral.
Smart ContractA self-executing digital agreement written in code that automatically executes transactions on a blockchain when specified terms are validated.
Scalability TrilemmaThe architectural principle stating that public blockchains can generally achieve only two of three core properties at once: Decentralization, Security, or Scalability.
StablecoinA cryptocurrency engineered to minimize price volatility by pegging its market value to an external asset, typically backed by fiat currency reserves.
Central Bank Digital Currency (CBDC)A digital form of sovereign legal tender issued and backed directly by a central bank, representing a direct claim on the monetary authority.
Virtual Digital Asset (VDA)The formal legal taxonomy under Indian tax law designating cryptocurrencies, non-fungible tokens, and related cryptographic tokens.
CordaAn enterprise permissioned distributed ledger platform developed by R3 for regulated financial institutions, sharing data strictly on a need-to-know basis.
COM3MN206FINTECH

Download Module 3 Notes (PDF)

Calicut University • FYUGP 2024 Syllabus

Download PDF

Finished this module?

Continue reading the next module or return to the subject overview.