FOUNDATIONS OF
BLOCKCHAIN TECHNOLOGY
BCSE324L
Dr. Malathi D.
FOUNDATIONS OF BLOCKCHAIN TECHNOLOGY
Course Objectives
• To understand building blocks of Blockchain.
• To significance of Distributed Ledger Technology and Smart Contract.
• To exploit applications of Blockchain in real world scenarios and their impacts.
Expected Outcomes
• Understand Blockchain ecosystem and its services in real world sceneries
• Apply and Analyze the requirement of Distributed Ledger Technology and Smart Contract
• Design and Demonstrate end-to-end decentralized applications
• Acquaint the protocol and assess their computational requirements
16-04-2025 Dr. Malathi D., SCOPE–VIT 2
Module – 6
Blockchain Protocols
16-04-2025 Dr. Malathi D., SCOPE–VIT 3
Blockchain Protocols
• Ethereum tokens
• Augur
• Golem
• Understanding Ethereum tokens
• App Coins and Protocol Tokens
• Blockchain Token Securities Law Framework
• Token Economy
• Token sale structure
• Ethereum Subreddit.
16-04-2025 Dr. Malathi D., SCOPE–VIT 4
Blockchain Protocols
What are Blockchain Protocols?
• Protocols have been around for a long time, even before the internet. For example, the hypertext transfer
protocol (HTTP) defines how data is sent over the web. Similarly, blockchain protocols help server
nodes (computers in a network) communicate in a way that all the systems can understand.
• Blockchain protocols are the underlying rules, guidelines, and algorithms that define and control the
functioning of a blockchain network.
• These protocols determine how data is stored, transmitted, and validated across the network, ensuring
the data's security, consistency, and reliability.
• Blockchain protocols can vary significantly depending on the specific use case and the desired
properties of the network, such as public, private, or permissioned access.
Why Protocols Are Important?
• When developing a blockchain project, choosing the right protocol is one of the most important
decisions. Protocols define the features and capabilities of your system, and using existing, well-
developed protocols can save time and resources. Working with experts who understand blockchain
protocols can ensure your project is secure, efficient, and successful.
16-04-2025 Dr. Malathi D., SCOPE–VIT 5
Blockchain Protocols
Key Blockchain Concepts
• Many protocols exist on the internet (e.g., HTTP, HTTPS, FTP), and there are also many for blockchain.
Choosing the right protocol is important because each has different strengths and weaknesses that affect
how blockchain networks work. To make the most of blockchain, it’s important to understand how
protocols impact network performance. Here are some key terms:
• Proof of Work (PoW): In blockchain, PoW is a system that requires computers to solve complex
problems to confirm transactions and create new cryptocurrency. It’s hard to do but easy to verify.
• Distributed Ledger: A public record of transactions that anyone can view in most cryptocurrency
systems.
• Smart Contracts: Programs that automatically execute contracts when conditions are met, speeding
up digital transactions.
• 51 Percent Attack: A risk where someone gains control of more than half of a network’s
cryptocurrency, potentially allowing them to disrupt the system.
• Coins vs. Tokens: Moving coins in blockchain systems can be complicated and risky. To simplify
things, tokens are often used. A provider holds the coins, and users trade tokens, but ownership
remains with the provider, not the individual users.
16-04-2025 Dr. Malathi D., SCOPE–VIT 6
Blockchain Protocols
How Blockchain Protocols Work
• Consensus Mechanisms: Set of rules that allow nodes (computers participating in the network) to
agree on the validity of transactions and the state of the distributed ledger. Some common consensus
mechanisms include Proof of Work (used by Bitcoin), Proof of Stake, and Practical Byzantine Fault
Tolerance.
• Cryptography: Rely on cryptography to ensure the security and integrity of data. Cryptographic
algorithms are used to create unique digital signatures, hash functions, and public-private key pairs
to enable secure communication, identification, and authentication of participants in the network.
• Smart Contracts: Many blockchain protocols, like Ethereum, support using smart contracts. These are
self-executing contracts with the terms of the agreement directly written into code. Smart contracts
automatically enforce the rules and penalties specified in the agreement without the need for
intermediaries.
• Tokenization: Blockchain protocols can also include rules for creating and managing tokens, digital
representations of assets, currencies, or rights within the network. Tokens can be used for various
purposes, such as incentivizing participation, enabling transactions, or representing ownership of
real-world assets.
16-04-2025 Dr. Malathi D., SCOPE–VIT 7
Blockchain Protocols
Critical Steps for Developing a Blockchain Protocol
• Define the Use Case: Identify the specific use case or problem that the protocol aims to address. This
will help you determine the required features and properties of the protocol, such as its consensus
mechanism, tokenization, and smart contract capabilities.
• Research Existing Protocols: Before starting from scratch, it's essential to research & analyzes existing
blockchain protocols to understand their strengths, weaknesses, and how they address specific needs.
This will help you decide whether to build on an existing protocol or develop a new one.
• Design the Protocol: Includes defining the consensus mechanism, cryptographic algorithms, data
structure, and network architecture. You'll also need to consider performance, scalability, and privacy
requirements.
• Develop and Test the Protocol: After designing the protocol, need to thoroughly develop & test the
actual code. This involves writing the code for the protocol, creating a test environment, & performing
rigorous testing to ensure the protocol functions as intended and is secure from potential attacks.
• Launch and Maintain the Network: Once the protocol has been developed and tested, it's time to
launch the blockchain network. This involves deploying the protocol on a network of nodes,
onboarding users, & continuously monitoring & maintaining the network to ensure its stability &
security.
16-04-2025 Dr. Malathi D., SCOPE–VIT 8
Blockchain Protocols
Blockchain Protocols
1. Consensus Protocols
• Consensus protocols are the mechanisms that enable participants in a decentralized network to agree
on the validity of transactions and maintain a consistent state of the blockchain. Major consensus
protocols include:
• Proof of Work (PoW): PoW requires participants (miners) to solve complex cryptographic puzzles to
validate transactions and add them to the blockchain. This process is resource-intensive, requiring
significant computational power and energy consumption. Bitcoin and early blockchains use PoW.
• Advantages: High security due to computational effort.
• Disadvantages: Energy inefficient and slow due to the need for solving puzzles.
• Proof of Stake (PoS): In PoS, validators are chosen to propose and validate new blocks based on the
number of coins they hold and are willing to "stake" as collateral. Validators are selected in a pseudo-
random manner based on their stake.
• Advantages: Energy-efficient and faster than PoW.
• Disadvantages: Potential for centralization, as larger stakeholders have more influence.
• Delegated Proof of Stake (DPoS): DPoS enhances PoS by allowing token holders to vote for a small
number of delegates who validate transactions. It emphasizes governance by the community.
16-04-2025 Dr. Malathi D., SCOPE–VIT 9
Blockchain Protocols
• Advantages: Faster and more democratic.
• Disadvantages: Can lead to centralization if only a few delegates are consistently chosen.
• Practical Byzantine Fault Tolerance (PBFT): Designed for environments with fewer nodes, it focuses
on efficiency by allowing nodes to reach consensus despite the presence of malicious or faulty nodes.
• Advantages: Suitable for permissioned blockchains with faster consensus.
• Disadvantages: Complex and requires communication among many nodes, which might be
inefficient in larger networks.
• Proof of Authority (PoA): PoA relies on known, trusted authorities (validators) to validate blocks. It is
commonly used in permissioned blockchains where participants are pre-approved.
• Advantages: High speed and efficiency.
• Disadvantages: Less decentralized, relying on the integrity of validators.
2. Layer 1 Protocols
• Layer 1 refers to the underlying blockchain architecture. These protocols dictate the blockchain’s core
functionality, including consensus mechanisms, transaction validation, and block production.
• Bitcoin Protocol: The first blockchain protocol that introduced PoW for achieving decentralized
consensus. Its primary focus is on secure peer-to-peer transactions and store of value.
16-04-2025 Dr. Malathi D., SCOPE–VIT 10
Blockchain Protocols
• Advantages: Highly secure, trusted, and widely adopted.
• Disadvantages: Limited scalability and smart contract capabilities.
• Ethereum Protocol: Ethereum is a Layer 1 blockchain that extends Bitcoin’s functionality by enabling
smart contracts—self-executing contracts with the terms directly written into code. Ethereum currently
uses PoS with the Ethereum 2.0 upgrade.
• Advantages: Smart contract capability and a thriving ecosystem of decentralized applications
(dApps).
• Disadvantages: Network congestion and high gas fees during peak times.
• Solana Protocol: Solana uses a unique consensus mechanism called Proof of History (PoH), combined
with PoS, to achieve high throughput and low-latency block validation.
• Advantages: High transaction speeds and low fees.
• Disadvantages: Relatively newer, with concerns about decentralization and stability.
• Cardano Protocol: Cardano uses Ouroboros, a PoS protocol, and focuses on scalability, sustainability,
and interoperability. It emphasizes academic research and peer-reviewed development.
• Advantages: Environmentally friendly and highly secure.
• Disadvantages: Development is slower compared to other blockchains.
16-04-2025 Dr. Malathi D., SCOPE–VIT 11
Blockchain Protocols
3. Layer 2 Protocols
• Layer 2 protocols are built on top of Layer 1 blockchains to enhance scalability and speed by
offloading some transactions from the main chain.
• Lightning Network: Built on Bitcoin, the Lightning Network allows users to create off-chain payment
channels. These channels enable multiple microtransactions without having to interact with the main
blockchain, reducing congestion and fees.
• Advantages: Low fees and fast transactions for micropayments.
• Disadvantages: Less secure than Layer 1 and can be complex to set up.
• Plasma and Rollups (Ethereum): Plasma and Rollups are scaling solutions for Ethereum. They bundle
multiple transactions into a single batch, which is then verified and added to the main chain. This
reduces the workload on the Ethereum mainnet.
• Advantages: Improved scalability and lower gas fees.
• Disadvantages: Security depends on the implementation of the off-chain mechanism.
16-04-2025 Dr. Malathi D., SCOPE–VIT 12
Blockchain Protocols
4. Interoperability Protocols
• Interoperability protocols enable communication and transfer of assets between different
blockchains.
• Polkadot: Polkadot allows different blockchains to interoperate through its relay chain. It uses
parachains (independent blockchains) that can communicate with each other securely.
• Advantages: Interoperability between heterogeneous blockchains.
• Disadvantages: Complexity and competition for parachain slots.
• Cosmos: Cosmos uses the Inter-Blockchain Communication (IBC) protocol to allow different
blockchains to communicate and exchange data. Cosmos emphasizes modularity and sovereignty of
individual blockchains.
• Advantages: Flexible and scalable.
• Disadvantages: Somewhat centralized governance through validators.
16-04-2025 Dr. Malathi D., SCOPE–VIT 13
Blockchain Protocols
5. Privacy Protocols
• Privacy protocols aim to protect the identities and transaction details of users, ensuring confidentiality.
• Zcash Protocol: Zcash uses zk-SNARKs (zero-knowledge succinct non-interactive arguments of
knowledge) to enable private transactions. Users can choose between transparent or shielded
transactions.
• Advantages: Strong privacy through cryptography.
• Disadvantages: Higher computational costs and less adoption than Bitcoin or Ethereum.
• Monero Protocol: Monero uses ring signatures, stealth addresses, and confidential transactions to
conceal transaction details and sender/receiver information. It is focused entirely on privacy.
• Advantages: Fully private transactions by default.
• Disadvantages: Higher regulatory scrutiny due to association with illicit activities.
16-04-2025 Dr. Malathi D., SCOPE–VIT 14
Blockchain Protocols
6. Governance Protocols
• Governance protocols define how blockchain communities make decisions and update their
protocols.
• On-chain Governance (Tezos): Tezos uses a formal on-chain governance process where stakeholders
can vote on protocol changes, reducing the need for hard forks.
• Advantages: Transparent and decentralized governance.
• Disadvantages: Potential voter apathy or influence by large token holders.
• Off-chain Governance (Bitcoin, Ethereum): Governance decisions for many blockchains occur off-chain
through community discussions, improvement proposals, and soft/hard forks when needed.
• Advantages: Flexibility and community-driven development.
• Disadvantages: Slow and potentially contentious.
16-04-2025 Dr. Malathi D., SCOPE–VIT 15
Blockchain Protocols
7. Token Standards
• Token standards define the rules for creating and managing tokens on a blockchain.
• ERC-20 (Ethereum): ERC-20 is the standard for creating fungible tokens on Ethereum. Tokens follow a
uniform protocol, enabling interoperability within decentralized finance (DeFi) and other dApps.
• Advantages: Widely adopted and versatile for different use cases.
• Disadvantages: Network congestion during peak usage.
• ERC-721 (Ethereum): ERC-721 is the standard for creating non-fungible tokens (NFTs), which
represent unique assets like digital art or collectibles.
• Advantages: Unique asset representation on the blockchain.
• Disadvantages: High transaction fees and environmental concerns associated with minting NFTs.
16-04-2025 Dr. Malathi D., SCOPE–VIT 16
Blockchain Protocols
Blockchain Protocols
1. Smart Contract & Ethereum
• Ethereum is the second largest cryptocurrency according to world market capitalization, and we often
refer to it as the “world computer.”
• The Ethereum network is designed as a decentralized platform for building and running applications,
focusing on smart contracts.
• A smart contract is a self-executing system that helps to settle agreements between buyer and seller
available in lines of code.
• The contract can automatically execute when the platform meets certain conditions without
intermediaries.
• Ethereum has several features that make it an attractive platform for developers.
• has a built-in programming language called Solidity, making it easy for developers to write
smart contracts.
• designs of the Ethereum network are scalable
• can handle many transactions per second, making it ideal for decentralized applications
requiring large amounts of data.
16-04-2025 Dr. Malathi D., SCOPE–VIT 17
Blockchain Protocols
2. Proof-of-work Consensus Mechanism & Bitcoin
• Bitcoin is the largest crypto available according to market capitalization and is often considered the
“gold standard” of cryptocurrencies.
• The Bitcoin network is a decentralized digital currency and peer-to-peer payment system that allows
users to send and receive payments without intermediaries.
• One of the critical features of the Bitcoin network is its decentralized nature, which means that any
single entity does not control it.
• Provides a high level of security and makes it difficult for governments or other organizations to
interfere with transactions.
• Bitcoin network uses a proof-of-work consensus mechanism, which requires participants to
contribute computational power to validate transactions and secure the network.
3. Proof-of-stake Consensus Mechanism in Binance Smart Chain
• Binance Smart Chain (BSC) is a high-performance blockchain network launched by Binance, one of the
largest cryptocurrency exchanges in the world.
• The Binance Smart Chain is designed for decentralized applications and enables fast and low-cost
transactions.
16-04-2025 Dr. Malathi D., SCOPE–VIT 18
Blockchain Protocols
• One of the critical features of the Binance Smart Chain is its scalability, which allows it to handle a
large number of transactions within a short period of time.
• This system makes it an ideal platform for decentralized applications requiring a high volume of data.
• Uses a proof-of-stake consensus mechanism.
• This system makes the network more energy-efficient than the usual PoW mechanism used by Bitcoin.
4. Ouroboros and Cardano (ADA)
• Cardano is a blockchain platform for secure and sustainable decentralized applications and smart
contracts.
• It uses a proof-of-stake consensus mechanism (Ouroboros), which means that participants validate
transactions by holding and staking their tokens.
• One of the critical features of Cardano is its focus on sustainability, which means that it is designed to
be energy-efficient and have a low carbon footprint.
• Cardano uses a modular architecture that allows it to be upgraded and improved over time, making it
a future-proof platform for decentralized applications.
16-04-2025 Dr. Malathi D., SCOPE–VIT 19
Blockchain Protocols
5. Polkadot (DOT) & Parachains
• Polkadot is a multi-chain network that enables interoperability between different blockchain
systems.
• This network means that developers can build decentralized applications to communicate and
transfer data between other blockchains, making it possible to create more complex and
interconnected applications.
• Polkadot enables the transfer of assets and information between different blockchains and provides a
shared security model for all connected chains.
6. Proof of Stake & Solana
• Solana is a fast and scalable blockchain protocol designed for decentralized finance applications.
• Solana uses a unique consensus algorithm, Solana Proof of Stake (PoS), which enables it to process
thousands of transactions per second.
• Solana strongly focuses on developer adoption and provides several tools and resources to help
developers build on the platform.
16-04-2025 Dr. Malathi D., SCOPE–VIT 20
Blockchain Protocols
7. Chainlink (LINK) & Oracle Network
• Chainlink is a Bitcoin-like oracle network that is capable of supplying real-world data to smart
contracts.
• Chainlink enables smart contracts to access data from external sources, such as stock prices, weather
data, etc.
• This link allows the creation of decentralized applications that can interact with the real world, making
it possible to create a wide range of new decentralized applications.
8. Cosmos (ATOM) & DeFi
• Cosmos is a decentralized network with independent blockchains that enables the transfer of assets
and information between different blockchains.
• Cosmos provides a shared security model for all connected chains and offers fast and secure
transactions.
• Cosmos strongly focuses on scalability and interoperability, making it a popular choice for
decentralized exchanges and DeFi projects.
16-04-2025 Dr. Malathi D., SCOPE–VIT 21
Blockchain Protocols
9. Smart Contracts & TRON (TRX)
• TRON is a decentralized platform that enables the creation of smart contracts and decentralized
applications.
• TRON has its cryptocurrency, TRONix (TRX), used to pay transaction fees and computational services
within the network.
• TRON’s strong focus on the entertainment industry provides a platform for content creators to
publish, store, and monetize their digital content.
• TRON also has a large and active community, and it has partnerships with several well-known
companies in the entertainment industry.
10. Proof of Stake & Hive (HIVE)
• Hive is a blockchain protocol with designs similar to decentralized social media applications.
• Hive provides fast and secure transactions and has a large and active community of content creators
and curators.
• Hive is known for its focus on society and a strong culture of collaboration and engagement.
16-04-2025 Dr. Malathi D., SCOPE–VIT 22
Ethereum Tokens
Coins vs Tokens
• In the blockchain world, coins and tokens are two distinct types of digital assets, but they have
different purposes and structures:
• Coins: These are digital currencies that operate on their own blockchain networks.
• Examples: Bitcoin on the Bitcoin blockchain, Ether (ETH) on the Ethereum blockchain, and
Binance Coin (BNB) on the Binance Chain.
• Coins are typically used for value transfer, similar to traditional currencies.
• Tokens: Unlike coins, tokens are built on top of existing blockchains rather than having their own.
• Tokens are often designed for specific applications or use cases, like digital assets in games or
assets representing ownership.
• For example, tokens based on the Ethereum blockchain use Ethereum’s infrastructure but can
serve independent purposes.
16-04-2025 Dr. Malathi D., SCOPE–VIT 23
Ethereum Tokens
Ethereum-Based Tokens & Standard Types
• Ethereum is a decentralized platform that supports smart contracts—self-executing contracts with the
terms of the agreement directly written into code.
• This platform supports a wide range of decentralized applications (dApps).
• Ethereum also allows developers to create tokens that follow specific standards, known as Ethereum-
based tokens, adhere to guidelines called ERC (Ethereum Request for Comments) standards.
• Different standards define different functions and behaviors for tokens, making it easier for
developers to create and manage decentralized applications and for these applications to interact with
each other on Ethereum.
ERC Standards Overview
• Ethereum uses a process called the Ethereum Improvement Proposal (EIP) to manage and approve
token standards.
• These proposals describe how tokens should operate on the Ethereum blockchain, and once accepted,
they become ERC standards that help ensure compatibility and functionality across different tokens
and applications.
16-04-2025 Dr. Malathi D., SCOPE–VIT 24
Ethereum Tokens
• Ethereum’s ERC standards streamline the creation and use of different types of tokens, each with
unique characteristics suited for specific purposes.
• ERC-20: Most common, fungible tokens (identical units)
• ERC-721: Non-fungible tokens (unique units like collectibles and NFTs)
• ERC-223, ERC-827: Improve safety and token functionality
• ERC-621: Allows supply adjustment
• ERC-777: Enhanced token handling and security features
• ERC-865: Makes fee payments easier for new users
• By following these standards, developers on the Ethereum platform can create secure, reliable, and
flexible decentralized applications that meet different needs across finance, gaming, digital art, and
beyond.
• These standards ensure Ethereum’s versatility as a foundation for tokenized assets and decentralized
applications in the digital economy.
16-04-2025 Dr. Malathi D., SCOPE–VIT 25
Ethereum Tokens
Some of the key ERC standards include:
1. ERC-20 – The Standard for Fungible Tokens
• Purpose: ERC-20 is the most widely used standard for creating fungible tokens, which are tokens that
are all identical in value and functionality. Examples include stablecoins (like USDT) and ICO tokens.
• Benefits: ERC-20 simplifies token creation and ensures compatibility across Ethereum-based
exchanges and wallets. Its standard protocol allows any token following the ERC-20 rules to be traded
and used across the Ethereum ecosystem seamlessly.
2. ERC-165 – Interface Detection Standard
• Purpose: This standard enables smart contracts to publish which interfaces they support. This is
particularly important for tokens and smart contracts that follow non-ERC-20 standards, as it allows
for better compatibility and functionality between different token types.
• Usage: ERC-165 helps determine how contracts interact, especially useful for NFTs (non-fungible
tokens) and other token types requiring specific handling.
16-04-2025 Dr. Malathi D., SCOPE–VIT 26
Ethereum Tokens
3. ERC-721 – The Standard for Non-Fungible Tokens (NFTs)
• Purpose: ERC-721 defines a standard for creating unique tokens, known as non-fungible tokens
(NFTs), which represent unique assets like artwork, collectibles, or real estate.
• Example: CryptoKitties, one of the first popular applications of ERC-721, enabled users to buy, sell,
and breed digital cats, each represented by a unique ERC-721 token.
• Applications: Beyond gaming and collectibles, ERC-721 tokens can be used to represent ownership of
real-world assets or unique digital assets, making them versatile in industries like art, real estate, and
entertainment.
4. ERC-223 – Improved Token Safety Standard
• Purpose: ERC-223 aims to prevent the accidental loss of tokens. When ERC-20 tokens are sent to
contracts that can’t handle tokens, they’re often lost or “burned” forever. ERC-223 allows contracts to
accept or reject tokens, reducing accidental losses.
• Challenges: Although ERC-223 provides a useful improvement over ERC-20, it has seen limited
adoption.
16-04-2025 Dr. Malathi D., SCOPE–VIT 27
Ethereum Tokens
5. ERC-621 – Adjustable Token Supply Standard
• Purpose: ERC-621 builds on ERC-20 by adding functionality that allows token supply to be increased
or decreased. This could be useful for projects requiring dynamic token supplies, such as those with
mechanisms to burn or mint tokens.
• Application: Often only contract owners or trusted parties have access to change token supply,
preventing abuse and maintaining controlled inflation or deflation.
6. ERC-777 – Enhanced Functionality Standard
• Purpose: ERC-777 improves token handling by allowing automatic recognition of token transfers. For
example, it can initiate smart contracts when tokens are received and allows for blacklisting addresses
if needed for security.
• Benefits: ERC-777 enhances security and reduces transaction fees by enabling users to reject
transactions from suspicious addresses, improving the overall safety of decentralized applications.
16-04-2025 Dr. Malathi D., SCOPE–VIT 28
Ethereum Tokens
7. ERC-827 – Enhanced Transfer and Approvals Standard
• Purpose: ERC-827 improves on ERC-20 by allowing tokens to be transferred while also enabling third
parties to spend tokens on behalf of the holder.
• Benefits: This standard provides flexibility for token management in various financial applications,
such as lending or staking, by allowing controlled third-party access to a user’s tokens.
8. ERC-865 – Fee Payment Improvement
• Purpose: ERC-865 aims to simplify transaction fees for users by allowing fees to be paid in tokens
rather than Ether (ETH).
• Usage: ERC-865 makes token transactions more user-friendly, especially for new users, as they don’t
need to hold Ether just to pay fees.
16-04-2025 Dr. Malathi D., SCOPE–VIT 29
Understanding Ethereum tokens
• Ethereum tokens are digital assets built on the Ethereum blockchain, leveraging its smart contract functionality
to represent ownership, utility, or rights within decentralized applications (dApps) or ecosystems.
• These tokens adhere to specific standards that ensure interoperability and usability within the Ethereum
network.
Key Concepts
1. Ethereum Blockchain
• Ethereum is a decentralized platform that enables the creation of smart contracts and decentralized
applications (dApps). The native token of Ethereum is Ether (ETH), used for transaction fees and as a medium
of exchange within the network.
2. Tokens on Ethereum
• Tokens on Ethereum are programmable digital assets created using smart contracts. They represent a wide
range of use cases, including:
• Currencies
• Access rights
• In-game items
• Governance tools
• Ethereum tokens rely on the blockchain for security, transparency, and decentralization.
16-04-2025 Dr. Malathi D., SCOPE–VIT 30
Understanding Ethereum tokens
Token Standards
• Ethereum tokens adhere to standards to ensure consistency, compatibility, and interoperability within
the ecosystem. Key Ethereum token standards include:
ERC-20: Fungible Tokens
• Definition: ERC-20 tokens are interchangeable and identical, making them suitable for currencies or
assets like stablecoins and utility tokens.
• Examples: USDT (Tether), LINK (Chainlink), UNI (Uniswap).
• Functions:
• `transfer()`: Transfer tokens from one address to another.
• `approve()`: Approve another address to spend tokens.
• `transferFrom()`: Move tokens from one address to another on behalf of the owner.
• `totalSupply()`: Show the total supply of the token.
• `balanceOf()`: Check the balance of an address.
ERC-721: Non-Fungible Tokens (NFTs)
• Definition: ERC-721 tokens represent unique, non-interchangeable assets, such as digital art or
collectibles.
• Examples: CryptoKitties, Bored Ape Yacht Club (BAYC).
16-04-2025 Dr. Malathi D., SCOPE–VIT 31
Understanding Ethereum tokens
• Key Features
• Unique token IDs for each asset.
• Metadata attached to each token for detailed descriptions.
ERC-1155: Multi-Token Standard
• Definition: ERC-1155 allows a single smart contract to manage multiple types of tokens (both fungible
and non-fungible).
• Examples: Gaming ecosystems where items and currencies are managed together.
• Advantages:
• Efficiency in managing multiple tokens.
• Reduces gas costs by batching operations.
ERC-4626: Tokenized Vaults
• Definition: A standard for creating vaults or yield-generating assets as tokens, such as those used in
decentralized finance (DeFi).
• Use Cases
• Representing shares in a liquidity pool or staking vault.
16-04-2025 Dr. Malathi D., SCOPE–VIT 32
Understanding Ethereum tokens
Types of Ethereum Tokens
• Utility Tokens
• Purpose: Provide access to a product or service within an ecosystem.
• Examples: BAT (Basic Attention Token) in the Brave browser.
• Governance Tokens
• Purpose: Allow token holders to participate in decision-making processes for protocol upgrades or
treasury management.
• Examples: UNI (Uniswap), COMP (Compound).
• Stablecoins
• Purpose: Pegged to stable assets like fiat currencies to minimize volatility.
• Examples: USDC (USD Coin), DAI.
• Security Tokens
• Purpose: Represent ownership or investment in a tradable financial asset, often regulated as securities.
• Examples: Tokenized shares or bonds.
• Non-Fungible Tokens (NFTs)
• Purpose: Represent ownership of unique assets like art, music, or real estate.
• Examples: CryptoPunks, ArtBlocks.
16-04-2025 Dr. Malathi D., SCOPE–VIT 33
Understanding Ethereum tokens
How Ethereum Tokens Work
• Creation
• Tokens are created using smart contracts, which define the rules and functionality of the token.
• Developers write these contracts in Solidity, Ethereum's programming language.
• Storage
• Ethereum tokens are stored in wallets that support ERC standards, such as MetaMask, Ledger, or
Trust Wallet.
• Transfer and Use
• Tokens are transferred through blockchain transactions.
• Specific dApps or platforms define the utility and purpose of tokens.
• Gas Fees
• Interacting with Ethereum tokens requires paying gas fees in ETH, as these operations are
executed on the Ethereum blockchain.
16-04-2025 Dr. Malathi D., SCOPE–VIT 34
Understanding Ethereum tokens
Use Cases of Ethereum Tokens
1. Decentralized Finance (DeFi)
• Lending, borrowing, and trading tokens.
• Example: DAI is used in MakerDAO for loans and governance.
2. Gaming and Virtual Worlds
• In-game currencies and assets.
• Example: SAND in The Sandbox, where players buy virtual land or items.
3. Supply Chain
• Tokens represent ownership or tracking of goods in a supply chain.
4. Governance
• Protocol decisions and voting.
• Example: Holders of UNI vote on changes to the Uniswap protocol.
5. Digital Ownership
• NFTs for art, collectibles, and intellectual property.
16-04-2025 Dr. Malathi D., SCOPE–VIT 35
Understanding Ethereum tokens
Advantages of Ethereum Tokens
• Programmability: Smart contracts enable complex functionalities.
• Interoperability: Adherence to standards like ERC-20 ensures compatibility with wallets and dApps.
• Transparency: All token activities are recorded on the Ethereum blockchain.
• Decentralization: Tokens operate without central control, enhancing security and accessibility.
• Challenges
• Scalability: High gas fees and slow transactions during network congestion.
• Regulatory Risks: Security tokens often face strict regulatory scrutiny.
• Volatility: Prices of non-stable tokens can fluctuate significantly.
• Complexity: Token creation and integration require expertise in smart contract development.
• Ethereum tokens have revolutionized digital ownership, finance, and decentralized governance, paving
the way for innovative applications across industries.
• Their versatility and broad use cases make them a cornerstone of blockchain ecosystems.
16-04-2025 Dr. Malathi D., SCOPE–VIT 36
Augur
• Augur is a decentralized prediction market platform built on the Ethereum blockchain that allows
users to create, trade, and resolve prediction markets on the outcome of future events.
• By harnessing the power of a distributed network, Augur aims to provide an open, transparent, and
censorship-resistant platform for betting on real-world events ranging from sports and elections to
financial markets and more.
Types of Markets on Augur
1. Yes/No Markets
• These are binary markets where there are only two outcomes: yes or no.
• Example: “Will candidate X win the election?”
2. Categorical Markets
• Categorical markets involve multiple, distinct outcomes.
• Example: “Who will win the World Series?” with multiple team options.
3. Scalar Markets
• Scalar markets are used for numerical outcomes with a range.
• Example: “What will the temperature be on a certain date?” with options for minimum and maximum
values.
16-04-2025 Dr. Malathi D., SCOPE–VIT 37
Augur
Key Features of Augur
1. Decentralized Prediction Market
• Augur operates as a decentralized prediction market where users can bet on event outcomes.
• Unlike traditional betting platforms, Augur is fully decentralized, so no central authority controls or
manipulates the outcomes or payouts.
2. Crowdsourced Forecasting
• Augur relies on collective intelligence, where people trade shares on event outcomes based on their
knowledge, opinions, or research.
• Over time, this collective input can create accurate, probability-based forecasts.
3. Ethereum-Powered Smart Contracts
• The platform uses Ethereum-based smart contracts to create, manage, and settle markets without a third
party, ensuring trustless and transparent operations.
4. Reputation Token (REP)
• Augur's native token, REP (now called REPv2 after an upgrade), is used for staking in dispute
resolutions, incentivizing market integrity, and for reporting on outcomes.
• REP holders who report truthfully receive rewards, while those who attempt to manipulate the outcome
risk losing their REP.
16-04-2025 Dr. Malathi D., SCOPE–VIT 38
Augur
How Augur Works
1. Market Creation
• A user (known as the market creator) starts by specifying the event they want to create a market for,
setting the terms, and providing initial funding.
• The market creator earns a fee from the bets placed in their market.
2. Trading
• Other users, known as traders, can then buy shares in different outcomes based on their beliefs about
the event.
• Shares reflect the probability of each outcome, with prices ranging from $0 to $1.
• For instance, if a share costs $0.60, it implies a 60% chance of that outcome happening.
3. Outcome Reporting and Dispute Resolution
• Once the event concludes, REP holders (called reporters) stake their tokens to report on the outcome.
• If the initial outcome is disputed, reporters participate in a dispute resolution process, with stakes
increasing in successive rounds to discourage dishonest reporting.
4. Payout
• Traders who hold shares in the correct outcome receive payouts based on their stakes and the total
pool.
16-04-2025 Dr. Malathi D., SCOPE–VIT 39
Augur
Advantages of Augur
• Decentralization: Augur’s decentralized nature eliminates intermediaries, giving users direct control and lowering
costs compared to centralized prediction platforms.
• Incentivized Accuracy: Augur’s incentive structure encourages honest reporting and discourages manipulation,
leading to more accurate market forecasts.
• Censorship Resistance: By using the Ethereum blockchain, Augur is resistant to censorship, meaning users can
participate from anywhere without fear of restrictions.
• Broad Application Potential: Augur can be used for betting on a wide range of topics, including politics, sports,
finance, and even niche events.
Challenges and Limitations
1. Regulatory Risks: Prediction markets can be controversial and may face regulatory hurdles, especially in jurisdictions
where gambling is restricted.
2. Liquidity and Adoption: For markets to be effective, they require significant liquidity and active participants, which can
be challenging for a decentralized platform to achieve.
3. Complexity for New Users: The process of market creation, outcome reporting, and dispute resolution can be complex,
limiting the accessibility of Augur for casual users.
4. REP Token Risks: As REP tokens are needed for dispute resolution, the platform’s accuracy relies on active REP holders,
which could be a vulnerability if participation declines.
16-04-2025 Dr. Malathi D., SCOPE–VIT 40
Augur
REP Token (Reputation Token)
1. Purpose: REP holders participate in dispute resolution and report on the outcomes of events, which is essential
for Augur’s decentralized system.
2. Earning and Staking: Users earn REP by reporting accurately or by creating popular markets. REP staked on
incorrect reports can be slashed, incentivizing honest reporting.
3. REPv2 and Staking Pools: REPv2 introduced staking pools, allowing REP holders to pool their resources,
which enhances the security of the dispute resolution process.
4. Potential Forks: If consensus cannot be reached on an outcome, Augur can fork into separate markets, ensuring
that honest reporters can continue without interference.
Real-World Applications of Augur
1. Political Forecasting: Users can create prediction markets for elections or policy outcomes, potentially giving
insight into the likelihood of certain political events.
2. Financial Markets: Augur can be used to speculate on asset prices, market trends, or economic data releases,
which could serve as an alternative indicator of financial sentiment.
3. Sports Betting: Augur offers a decentralized alternative to traditional sports betting, allowing bets on a wide
range of sports events.
4. Event Planning and Forecasting: For industries reliant on future predictions, like weather forecasting or
logistics, Augur can provide an additional tool for risk assessment and planning.
16-04-2025 Dr. Malathi D., SCOPE–VIT 41
Augur
Augur v2 and Upgrades
• Augur v2 introduced several enhancements to address challenges in the original version:
• Integration with DAI Stablecoin: Trading is done in DAI to minimize volatility, allowing users to
manage risk better.
• User-Friendly Interface: Enhanced design and functionality for easier user navigation.
• Increased Speed: Improvements in transaction speed and cost-efficiency to make the platform
more usable.
• Augur is a pioneering platform in the world of decentralized prediction markets, offering a transparent
and incentivized method for betting on real-world events.
• While it faces challenges like regulatory scrutiny and liquidity concerns, its decentralized model and
focus on accurate reporting have the potential to reshape how people interact with prediction markets.
• With ongoing improvements and growing user adoption, Augur could pave the way for other
decentralized applications in finance, gaming, and data analytics.
16-04-2025 Dr. Malathi D., SCOPE–VIT 42
Golem (GLM)
• Golem is a decentralized computing network built on the Ethereum blockchain.
• Allows users to buy & sell computational power, enabling the creation of a global, distributed
supercomputer.
• Golem leverages the power of blockchain technology to provide a peer-to-peer marketplace for
computing resources, offering a cost-effective and scalable alternative to traditional centralized cloud
providers.
Key Features of Golem
1. Decentralized Computing Network
• Golem enables users to share their unused computational resources, such as CPU or GPU power, in
exchange for GLM tokens.
• It eliminates the need for centralized servers or intermediaries, reducing costs and potential
bottlenecks.
2. Peer-to-Peer Marketplace
• Users (requestors) can pay for computational tasks, while resource providers (suppliers) earn GLM
tokens by contributing their idle computing power.
• Tasks can range from data analysis and machine learning to video rendering and scientific simulations.
16-04-2025 Dr. Malathi D., SCOPE–VIT 43
Golem (GLM)
3. Global Accessibility
• The platform is open to anyone with a computer, democratizing access to high-performance computing.
4. Cost-Effectiveness
• By using distributed resources, Golem can provide computing power at a lower cost compared to
centralized cloud services like Amazon Web Services (AWS) or Microsoft Azure.
5. Privacy and Security
• Golem ensures that computational tasks are processed securely, without exposing sensitive data to third
parties.
How Golem Works
1. Task Creation: A user (requestor) creates a computational task and specifies the required resources and
budget in GLM tokens.
2. Task Matching: The Golem network matches the task with suitable resource providers based on the
requestor's requirements.
3. Execution: The selected provider processes the task using their computing resources.
4. Payment: Once the task is completed and verified, the requestor pays the provider in GLM tokens.
5. Verification: The network uses verification mechanisms to ensure the task is completed correctly and
securely.
16-04-2025 Dr. Malathi D., SCOPE–VIT 44
Golem (GLM)
Use Cases
• Video Rendering
• Users can outsource rendering tasks to the Golem network, benefiting from faster and cheaper
processing compared to local machines or traditional cloud services.
• Data Analysis
• Researchers and businesses can run large-scale data analysis or simulations without investing in
expensive hardware.
• Machine Learning
• Golem provides computational power for training machine learning models, reducing training
times and costs.
• Scientific Research
• Scientists can utilize Golem for resource-intensive tasks like protein folding simulations or climate
modeling.
• Decentralized Application Hosting
• Developers can use Golem as a backend for hosting and running dApps requiring significant
computation.
16-04-2025 Dr. Malathi D., SCOPE–VIT 45
Golem (GLM)
GLM Token
Purpose
• GLM (Golem Network Token) is the native utility token of the Golem platform.
• It facilitates transactions between requestors and providers within the network.
Tokenomics
• The total supply of GLM is capped, providing scarcity and potential value appreciation over time.
• GLM was previously known as **GNT** before its migration to the Ethereum ERC-20 standard.
Use Cases
• Payment: Requestors pay providers for computational tasks.
• Incentives: Providers earn GLM tokens by sharing their resources.
• Governance: GLM holders may influence network decisions (if governance features are implemented).
16-04-2025 Dr. Malathi D., SCOPE–VIT 46
Golem (GLM)
Advantages of Golem
• Decentralization: Removes dependency on centralized cloud providers, promoting autonomy and
resilience.
• Cost Savings: Competitive pricing compared to traditional cloud services.
• Global Participation: Open to anyone with a computer, fostering inclusivity.
• Flexibility: Supports a wide range of computational tasks and applications.
• Blockchain Integration: Uses Ethereum smart contracts to ensure transparency and trust.
Challenges
• Adoption: Competing with well-established centralized cloud providers like AWS and Azure requires
significant user adoption.
• Scalability: Managing a decentralized network with thousands of participants can introduce
performance and latency challenges.
• Regulation: As a decentralized network, Golem may face scrutiny in jurisdictions with strict regulations
on cryptocurrencies and blockchain technologies.
• Network Dependence: The efficiency and security of the Ethereum network directly impact Golem's
performance.
16-04-2025 Dr. Malathi D., SCOPE–VIT 47
Golem (GLM)
Competitors and Ecosystem
• Competitors:
• iExec RLC: Another decentralized computing platform focused on off-chain computing.
• SONM: Offers decentralized fog computing services.
• Ecosystem Partners:
• Developers and companies can integrate Golem’s computing power into their projects, expanding
its ecosystem.
• Golem represents a significant innovation in decentralized computing, offering a scalable and cost-
effective alternative to traditional cloud services.
• By enabling global access to idle computing resources, Golem has the potential to democratize high-
performance computing for developers, researchers, and businesses.
• However, its success depends on widespread adoption, user trust, and the ability to scale effectively.
16-04-2025 Dr. Malathi D., SCOPE–VIT 48
App Coins and Protocol Tokens
• App Coins and Protocol Tokens are two types of blockchain-based tokens that serve distinct roles
within decentralized ecosystems.
• Understanding their differences is essential for evaluating their use cases, utility, and potential value in
the broader blockchain economy.
App Coins
• Definition: App coins are tokens created for specific decentralized applications (dApps). They provide
utility within the app's ecosystem and are primarily used to access services, incentivize behaviors, or
facilitate transactions within the app.
• Key Characteristics
1. Application-Specific Utility: App coins have value and function only within the specific dApp for
which they are created. They enable users to interact with the app's features or services. Example:
Filecoin (FIL) is used within the Filecoin network to pay for decentralized file storage services.
2. User-Focused: These tokens are designed for end-users, developers, or participants of the application
to interact with and derive value from the app. They are less about powering the underlying blockchain
protocol and more about enabling features of the dApp.
16-04-2025 Dr. Malathi D., SCOPE–VIT 49
App Coins and Protocol Tokens
3. Incentivization: App coins are often used to reward users who contribute to the app's ecosystem. For
example, users may earn tokens for completing tasks, providing services, or participating in
governance.
4. Dependence on the Underlying Protocol: App coins typically operate on an existing blockchain
protocol, such as Ethereum, Solana, or Binance Smart Chain. The success of an app coin often depends
on both the dApp and the protocol it runs on.
• Examples of App Coins
• BAT (Basic Attention Token): Used in the Brave browser to reward users for viewing ads and to
compensate content creators.
• Axie Infinity Shards (AXS): A governance and utility token for the Axie Infinity gaming
ecosystem.
• STEPN (GMT): Enables fitness rewards and app functionality in the move-to-earn platform.
16-04-2025 Dr. Malathi D., SCOPE–VIT 50
App Coins and Protocol Tokens
Protocol Tokens
• Definition: Protocol tokens are the native tokens of a blockchain protocol. They are fundamental to the
operation and governance of the underlying protocol and are often used to secure the network or reward
participants.
• Key Characteristics
1. Infrastructure-Focused Utility: Protocol tokens provide essential functionality for the underlying
blockchain infrastructure. They are integral to consensus mechanisms, transaction fees, and protocol
governance. Example: Ether (ETH) is the protocol token of Ethereum, used to pay for gas fees and incentivize
validators.
2. Network Governance: Many protocol tokens allow holders to participate in decisions about protocol
upgrades, changes, or treasury management through on-chain voting systems.
3. Decentralized Network Operations: Protocol tokens often incentivize validators, miners, or stakers to
maintain and secure the blockchain. Example: Polkadot (DOT) is used to secure the Polkadot network via
staking and to facilitate governance.
4. Economic Layer: Protocol tokens often represent the economic layer of the blockchain, serving as a unit of
account for transactions and enabling interoperability between dApps built on the protocol.
5. Broader Scope: Unlike app coins, protocol tokens are not tied to a single application. They support an
ecosystem of dApps and services, giving them broader use cases.
16-04-2025 Dr. Malathi D., SCOPE–VIT 51
App Coins and Protocol Tokens
Examples of Protocol Tokens
• Bitcoin (BTC): Used as a store of value and transaction token within the Bitcoin network.
• Solana (SOL): The native token for Solana, used for transaction fees, staking, and network
security.
• Avalanche (AVAX): Used for transaction fees, staking, and governance in the Avalanche
ecosystem.
Key Differences Between App Coins and Protocol Tokens
16-04-2025 Dr. Malathi D., SCOPE–VIT 52
App Coins and Protocol Tokens
When to Use App Coins vs. Protocol Tokens
1. Use App Coins If:
• You are building a dApp and need a token to incentivize behaviors or enable functionality within your
application.
• Your goal is to create a specific economy for your app’s user base.
2. Use Protocol Tokens If:
• You are developing a new blockchain infrastructure or a Layer 1/2 solution.
• Your token needs to support broader ecosystem development, incentivize network security, or enable
decentralized governance.
Token Interdependence
• While app coins and protocol tokens are distinct, they often coexist within blockchain ecosystems. For example:
• Protocol Tokens Support App Coins: A dApp using an app coin like BAT may operate on a protocol like
Ethereum, where ETH is required for gas fees.
• Protocol Growth Through App Coins: A successful dApp with a widely used app coin can increase
demand for the protocol token due to higher transaction volume or network activity.
• Both app coins and protocol tokens play critical roles in driving blockchain innovation, offering unique value
propositions for users, developers, and investors.
16-04-2025 Dr. Malathi D., SCOPE–VIT 53
Blockchain Token Securities Law Framework
• Creating a securities law framework for blockchain tokens involves assessing whether a token qualifies
as a security under existing regulations.
• In the U.S., the Howey Test, as well as interpretations from regulatory bodies like the SEC (Securities
and Exchange Commission), is commonly used to determine if a blockchain token falls under securities
law.
• This is an evolving area with active guidance and enforcement actions from regulators worldwide.
• Here’s an overview of key considerations in developing a securities law framework for blockchain
tokens:
1. Classification of Tokens
• Utility Tokens: Represent access to a platform, product, or service, not intended as an investment.
However, regulators may scrutinize utility tokens if they are marketed in a way that promotes
speculative investment.
• Security Tokens: Represent ownership or rights in a financial asset, such as equity, profit-sharing, or
debt. These tokens often require full regulatory compliance because they provide investors with
expected financial returns.
• Governance Tokens: Used for voting on project decisions but may also attract scrutiny if token holders
receive profits or exercise control over valuable assets.
16-04-2025 Dr. Malathi D., SCOPE–VIT 54
Blockchain Token Securities Law Framework
• Stablecoins and Payment Tokens: Generally designed for transactions and are pegged to a stable asset.
However, regulators like the SEC and the European Commission analyze them carefully, particularly if
they resemble money market instruments or bear interest.
2. The Howey Test
• Under U.S. law, the SEC uses the Howey Test to assess whether a digital asset is a security. According to
the test, an asset qualifies as a security if it meets these criteria:
• Investment of Money: Purchasers invest money (or other assets) in expectation of returns.
• Common Enterprise: Investors’ fortunes are tied to the performance or success of a project or
promoter.
• Expectation of Profits: Investors are led to expect profits based on the project's success.
• Efforts of Others: The expected profits primarily depend on the efforts of the token issuer,
developer, or other third parties.
• If a token meets all these criteria, it is considered a security under U.S. law and must comply with
securities regulations.
16-04-2025 Dr. Malathi D., SCOPE–VIT 55
Blockchain Token Securities Law Framework
3. Registration and Compliance Requirements for Security Tokens
• Registration with Securities Regulators: Security tokens must usually be registered with securities regulators,
such as the SEC in the U.S., or qualify for an exemption from registration.
• Offering Exemptions: Exemptions, like Regulation D, Regulation S, and Regulation A+ in the U.S., can
provide alternative ways to issue tokens without full registration, usually with limitations on who can
participate (e.g., accredited investors) and how much can be raised.
• Disclosure Requirements: Security token issuers must often provide detailed information, including the
business plan, financial condition, management, risks, and other factors that impact investment.
• Reporting Obligations: Registered security token offerings may require ongoing disclosures, such as
quarterly and annual reports or public updates on project development.
4. AML/KYC Compliance
• Anti-Money Laundering (AML) and Know Your Customer (KYC) regulations apply to token issuers and
exchanges to prevent illicit activity. These requirements include:
• Identity Verification: Collecting and verifying participants' identity before allowing them to purchase
tokens.
• Transaction Monitoring: Detecting and reporting suspicious transactions or patterns indicative of
money laundering or terrorist financing.
16-04-2025 Dr. Malathi D., SCOPE–VIT 56
Blockchain Token Securities Law Framework
• Jurisdictional Compliance: Many regulators mandate that issuers restrict token sales to specific
regions or entities to prevent regulatory breaches.
5. Investor Protection Regulations
• Accredited Investor Requirements: Certain offerings may only be open to accredited investors, who are
considered capable of bearing the risks associated with investing in early-stage or speculative assets.
• Marketing and Promises of Profit: Marketing materials for token sales must avoid misleading
information and not make promises of guaranteed returns. Overly speculative or promotional language
can increase the likelihood of a token being classified as a security.
6. Secondary Trading and Liquidity Considerations
• Regulated Exchanges and Broker-Dealers: Security tokens can only be traded on regulated exchanges,
known as Alternative Trading Systems (ATS), or with registered broker-dealers.
• Holding Periods and Restrictions: In some cases, security tokens sold under exemptions (such as
Regulation D in the U.S.) are subject to holding periods before they can be sold on secondary markets.
• Custodial Requirements: Custodians handling security tokens must comply with regulatory
requirements, including reporting, auditing, and safeguarding investor assets.
16-04-2025 Dr. Malathi D., SCOPE–VIT 57
Blockchain Token Securities Law Framework
7. Smart Contracts and Code Compliance
• Transparency and Auditing: Smart contracts used for security tokens should be auditable, secure, and
verifiable to protect investors.
• Code Disclosures: Providing code for inspection and audit can mitigate risks and demonstrate
compliance with regulatory standards.
• Token Standards (e.g., ERC-1404, ERC-1400): Security token standards add compliance layers, such as
transfer restrictions based on KYC or accreditation status, making them easier to align with regulatory
requirements.
8. Cross-Border Jurisdictional Compliance
• Compliance with International Securities Laws: For global offerings, issuers need to comply with
securities laws in each jurisdiction where tokens are offered, including Europe’s MiCA regulation,
Singapore’s MAS regulations, and Japan’s FSA rules.
• Restrictions on Sale Locations: Many issuers restrict sales to certain jurisdictions or require investors
from specific regions to be accredited or qualified under local regulations.
• Data Privacy and Storage Laws: Issuers must comply with GDPR in the EU or equivalent data privacy
laws in other regions, especially regarding storing and processing investor information.
16-04-2025 Dr. Malathi D., SCOPE–VIT 58
Blockchain Token Securities Law Framework
9. Potential Future Developments
• Regulatory Sandboxes: Some jurisdictions offer “sandboxes” where blockchain companies can test offerings in
a controlled environment under regulatory supervision.
• Frameworks for Decentralization: SEC and other regulators assess whether the degree of decentralization in a
project affects whether a token is a security. A truly decentralized token (with no central control or benefit to
token issuers) may be viewed differently.
• Industry-Specific Guidelines: The regulatory landscape continues to evolve, with several jurisdictions issuing
industry-specific guidance on token classification, custody, and trading.
Key Takeaways for Token Issuers
• Early Legal Consultation: Working with securities lawyers can clarify classification and compliance strategies.
• Clear Token Purpose and Utility: Establish a clear purpose for the token, avoiding promotion as an investment
if aiming for a utility classification.
• Transparent Disclosures and Documentation: Providing thorough and transparent information to investors
can enhance regulatory compliance and investor trust.
• Adopting Compliance Technology: Utilizing token standards and platforms that facilitate compliance, such as
permissioned smart contracts and verified investor profiles, can streamline regulatory adherence.
16-04-2025 Dr. Malathi D., SCOPE–VIT 59
Token Economy
• Imagine a world where traditional cash is no longer used. Over time, money has evolved from gold and
banknotes to digital payments like credit cards.
• Today, we're on the brink of the next phase: cryptocurrencies and the token economy.
• But what exactly does this mean, and how does it impact businesses and the economy?
What is the Token Economy?
• The token economy is a new way to think about value and ownership in a digital world.
• At the center of this economy are tokens—digital assets stored on a blockchain that can represent many
things, from currency to ownership rights.
• Unlike traditional systems, tokens rely on blockchain technology for security and verification rather
than a central authority like a bank.
Blockchain: The Foundation of the Token Economy
• Blockchain is a decentralized digital ledger that records transactions across multiple computers.
• Each transaction is verified by the network, making the data secure and transparent.
• Blockchain removes the need for intermediaries, such as banks, to validate transactions.
• This technology underlies the token economy and powers digital currencies like Bitcoin and Ethereum.
16-04-2025 Dr. Malathi D., SCOPE–VIT 60
Token Economy
Types of Tokens and Their Uses
• Tokens are versatile and can serve many purposes in the digital economy. Here are some common types:
1. Digital Currencies
• The most well-known tokens, used as digital money in the blockchain ecosystem.
2. Project Shares
• Some tokens represent shares in blockchain projects, giving holders a say in decisions or a share in
profits.
3. Utility Tokens
• Provide access to specific services or features on a blockchain network, like paying transaction
fees.
4. Collectible Tokens
• Unique digital assets, often in gaming or art, which users can buy, sell, or trade.
Challenges and Regulations
• The token economy faces challenges, especially around legal regulation. Different countries are working
to create legal frameworks to protect users and investors, balancing innovation with safety.
16-04-2025 Dr. Malathi D., SCOPE–VIT 61
Token Economy
• A token economy is the framework that defines how a blockchain-based token operates within an
ecosystem, encompassing the token’s design, distribution, utility, incentives, and governance.
• It’s crucial for aligning incentives among stakeholders, creating value within the ecosystem, and
ensuring the long-term sustainability of the project.
• Here’s a breakdown of the essential components of a token economy:
1. Token Types and Purpose
• Utility Tokens: Grant holders access to a product or service within the ecosystem, such as payment for
transaction fees, accessing features, or using applications built on the platform (e.g., ETH in Ethereum).
• Security Tokens: Represent ownership or profit-sharing rights in an underlying asset, typically
regulated as securities (e.g., equity tokens or tokens representing revenue shares).
• Governance Tokens: Allow holders to participate in decision-making processes, such as voting on
protocol changes, budgeting, or feature development (e.g., UNI in Uniswap).
• Stablecoins: Pegged to stable assets (like USD or gold) and primarily used for transactions or value
storage, aiming to minimize volatility.
• NFTs (Non-Fungible Tokens): Unique tokens that represent ownership of distinct digital or physical
assets, commonly used in art, gaming, and collectibles.
16-04-2025 Dr. Malathi D., SCOPE–VIT 62
Token Economy
2. Token Supply and Issuance
• Fixed Supply: A predetermined, capped supply of tokens, where no new tokens are created after the
initial issuance (e.g., Bitcoin’s 21 million BTC cap). A fixed supply can create scarcity, potentially
increasing token value over time.
• Inflationary Supply: Ongoing issuance of new tokens, usually at a controlled rate, to incentivize
participation or maintain ecosystem health (e.g., Ethereum’s continuous issuance).
• Deflationary Mechanisms: Some economies burn tokens (permanently remove them) to reduce supply,
often as a percentage of transaction fees or from network activity. This can increase scarcity and support
token value.
• Token Release Schedule: Structured issuance through mechanisms like mining, staking rewards, or
vesting schedules for team and investor tokens to avoid market flooding.
3. Token Distribution and Allocation
• Founders and Team: Often allocated a portion of the total supply to align incentives but may be subject
to vesting periods to prevent sell-offs.
• Early Investors and Advisors: Usually receive tokens at a discount but may be subject to lock-up
periods to minimize market impact.
16-04-2025 Dr. Malathi D., SCOPE–VIT 63
Token Economy
• Community and Ecosystem Development: Tokens may be set aside for developer grants, ecosystem
growth, or community incentives to foster adoption and participation.
• Reserves and Treasury: A reserve of tokens for unforeseen expenses, partnerships, or strategic
developments, often governed by the community in decentralized projects.
4. Token Utility
• Transaction Fees: Used to pay for transaction costs within a blockchain, as seen in Ethereum or Binance
Smart Chain (e.g., paying ETH or BNB for gas fees).
• Staking and Validation: Tokens are staked to participate in consensus mechanisms (like Proof of Stake),
providing rewards to validators and helping secure the network.
• Access Rights: Tokens may be required to access certain features, applications, or services within an
ecosystem.
• Incentive and Reward Mechanisms: Tokens are often distributed as rewards for users who perform
value-generating activities, such as providing liquidity, participating in governance, or completing
specific tasks.
• Collateral: In DeFi, tokens can serve as collateral to take out loans or participate in other financial
products.
16-04-2025 Dr. Malathi D., SCOPE–VIT 64
Token Economy
5. Incentive Structures
• User Incentives: Encourage network usage through rewards, staking, or other benefits to attract users,
traders, or investors.
• Validator/Node Incentives: Motivate participants to run nodes or validate transactions, which helps
secure the network.
• Developer and Ecosystem Incentives: Grants, bounties, or rewards for developers to build applications
and contribute to the ecosystem’s growth.
• Governance Participation: Reward users for voting on proposals or actively participating in
governance.
6. Governance Mechanisms
• On-Chain Governance: Token holders vote on protocol decisions, budget allocations, and upgrades
directly on the blockchain (e.g., MakerDAO, Compound).
• Off-Chain Governance: Decisions are discussed and voted upon off-chain, often within a forum or
community platform, with results implemented manually by a core team.
• Hybrid Governance: Combines on-chain voting with off-chain discussions, allowing token holders to
signal preferences and make final binding votes on important proposals.
16-04-2025 Dr. Malathi D., SCOPE–VIT 65
Token Economy
7. Economic Policies and Mechanisms
• Inflation/Deflation Management: Balancing issuance and burn mechanisms to control the total supply
and potentially drive value through scarcity.
• Token Burns: Reducing the circulating supply by burning tokens, which can occur through transaction
fees, penalties, or specific burn events (e.g., Binance’s quarterly BNB burn).
• Monetary Policy Adjustments: Modifying the supply or distribution mechanisms to adapt to changing
market conditions or incentivize desired behaviors within the ecosystem.
8. Liquidity and Market Dynamics
• Exchanges and Marketplaces: Ensuring tokens are listed on exchanges for accessibility and liquidity is
crucial. This includes centralized exchanges (CEXs) and decentralized exchanges (DEXs).
• Liquidity Incentives: Liquidity mining rewards for users who provide liquidity to DEXs, ensuring
smoother trading and price stability.
• Secondary Market Trading: Allowing tokens to be traded in secondary markets increases accessibility
and allows price discovery, benefiting both users and speculators.
16-04-2025 Dr. Malathi D., SCOPE–VIT 66
Token Economy
9. User Adoption and Network Effects
• Community Building and Engagement: Initiatives that increase community participation, including
bounties, airdrops, or ambassador programs, help create a dedicated user base.
• Ecosystem Development: Grant programs, hackathons, and partnerships to attract developers and
projects to build within the ecosystem, increasing the token’s utility and network effect.
• Partnerships: Collaborations with other projects, applications, or businesses to drive adoption and
extend the token’s reach.
10. Compliance and Regulatory Considerations
• Securities Compliance: Ensuring the token is compliant with local securities laws to prevent legal
issues, especially if classified as a security.
• AML/KYC Requirements: Implementing compliance to meet anti-money laundering (AML) and Know
Your Customer (KYC) standards, particularly for high-value transactions or users in certain
jurisdictions.
• Data Privacy and User Rights: Protecting user data, especially in areas where data privacy laws like
GDPR apply.
16-04-2025 Dr. Malathi D., SCOPE–VIT 67
Token Economy
Key Elements of a Successful Token Economy
• To be sustainable, a token economy should:
• Balance Incentives: Align the interests of all participants to foster loyalty and engagement.
• Encourage Active Participation: Ensure rewards or incentives for users, developers, and
stakeholders to contribute meaningfully.
• Achieve Liquidity: Make tokens accessible and tradable to improve usability and facilitate
growth.
• Ensure Governance and Adaptability: Allow token holders to vote and influence the protocol’s
future, and adapt economic policies to changing conditions.
• Drive Real Utility and Value: Build genuine utility that attracts real users and sustains demand
beyond speculative purposes.
• A well-designed token economy aligns incentives, encourages participation, and builds value for the
ecosystem’s stakeholders.
• By creating a system that considers all aspects—from issuance to incentives and governance—a project
can foster growth, build user loyalty, and achieve long-term sustainability.
16-04-2025 Dr. Malathi D., SCOPE–VIT 68
Token Economy
How Tokens Are Changing Traditional Industries
• The token economy has the potential to disrupt many industries beyond finance:
• Real Estate: Tokenization can divide large assets, like real estate, into smaller parts that more people
can invest in, making these assets more accessible.
• Art and Production: Tokenization allows for partial ownership of high-value assets like art, increasing
accessibility and liquidity.
• The token economy is transforming how we handle assets, making investments more flexible and inclusive.
Tokenization in the Financial Industry
• Tokenization converts rights to assets into digital tokens on the blockchain. This opens up new
opportunities for investors.
• For example, assets like luxury real estate or rare artwork, traditionally difficult to divide, can now be split
into small tokens, making them affordable to more people.
• Decentralized Finance (DeFi) is another innovation in finance. DeFi eliminates traditional intermediaries,
like banks, by using smart contracts on the blockchain, allowing users to directly borrow, invest, or trade
assets.
• DeFi makes transactions faster and cheaper and enables new products like automated loans.
16-04-2025 Dr. Malathi D., SCOPE–VIT 69
Token Economy
Tokens in Gaming: A New Era of Entertainment
• The gaming industry has eagerly embraced the token economy.
• In the play-to-earn (P2E) model, players earn real value through gameplay.
• Games like Axie Infinity and Decentraland use tokens both as in-game currency and as rewards for
players' time and skill, allowing them to earn and trade value outside the game.
• Another innovation in gaming is Non-Fungible Tokens (NFTs).
• These are unique digital assets that can represent characters, items, or digital artworks.
• NFTs allow players to own, trade, or sell unique game items, creating new earning opportunities for
players and artists.
Tokens in Education
• The token economy is also transforming education. Tokens can serve as rewards for achievements, such
as completing a course or earning a certificate. Students can use tokens to access advanced materials or
virtual books, enhancing the learning experience.
• Gamification—using tokens as points or rewards—can make education more interactive and engaging,
motivating students to learn. Educational institutions can even partner with companies, allowing
students to redeem tokens for real-world benefits like course discounts or scholarships.
16-04-2025 Dr. Malathi D., SCOPE–VIT 70
Token Economy
The Future of the Token Economy
• The token economy, powered by blockchain, has enormous potential to reshape industries like finance,
gaming, and education. But for it to reach widespread use, we must address challenges such as
scalability and regulatory adaptation.
• Projects like Ethereum 2.0, which aims to increase blockchain speed and energy efficiency, are moving
us closer to overcoming these issues. Regulators are also working to keep pace, creating rules that
protect users without stifling growth.
Why the Token Economy Matters
• The token economy isn’t just a trend; it has the potential to redefine how we view value, ownership, and
exchange.
• From easier access to investments to new learning opportunities, tokens offer possibilities that we are
only beginning to explore.
• As technology evolves, the token economy could bring more efficient, fair, and accessible methods of
value exchange across the global economy.
16-04-2025 Dr. Malathi D., SCOPE–VIT 71
Token sale structure
• A token sale, also known as an Initial Coin Offering (ICO) or Token Generation Event (TGE), is a
fundraising mechanism where a blockchain project sells a portion of its native tokens to raise capital
for development.
• The structure of a token sale is essential to its success and must balance investor interests with project
sustainability.
Key components and structures of a typical token sale
1. Token Allocation
• Project Team and Founders: A portion is often reserved for the team as an incentive for long-term
commitment. These tokens are typically vested over time (e.g., a 4-year vesting period).
• Early Investors and Advisors: Many token sales allocate a percentage of tokens to early investors or
advisors who contributed to the project's development.
• Public Sale: This is the allocation available to the public during the ICO or TGE, usually involving a
capped or fixed price.
• Ecosystem and Community Growth: Some tokens are set aside for ecosystem development,
partnerships, or community rewards.
• Reserve or Treasury: These tokens are held in reserve to fund future activities, such as additional
development, marketing, or strategic partnerships.
16-04-2025 Dr. Malathi D., SCOPE–VIT 72
Token sale structure
2. Sale Stages
• Token sales often occur in multiple stages, with varying token prices and bonuses to incentivize early
participation.
• Seed Round: The earliest funding stage, often at a lower token price to reward high-risk investors.
• Private Sale: A discounted offering, typically accessible to strategic investors, venture capital, or
private investors before the public launch.
• Public Sale: The final round, accessible to the public, often without discounts or bonuses to
ensure fairness.
3. Pricing Models
• Token sales may have different pricing mechanisms depending on project goals and the nature of the
sale:
• Fixed Price: Tokens are sold at a predetermined price. It provides certainty for investors but can
lead to supply issues if demand exceeds supply.
• Dynamic Pricing: The token price changes according to demand and supply. Examples include:
• Dutch Auction: The token price starts high and gradually decreases until all tokens are sold
or a price floor is reached.
16-04-2025 Dr. Malathi D., SCOPE–VIT 73
Token sale structure
• Bonding Curve: A model where the price of tokens increases as the number of tokens sold
increases. This approach rewards early participants with lower prices.
• Tiered Pricing: A model where prices increase in stages; for example, the first 10% of tokens may be at a
lower price, the next 10% higher, and so on.
4. Token Vesting and Lockup Periods
• Vesting and lockups help ensure that major stakeholders remain committed to the project over time and
reduce the risk of massive sell-offs after launch:
• Team Vesting: Project team members often have tokens locked for a certain period, with a gradual
release schedule to align their incentives with the project's long-term success.
• Investor Lockups: Early investors might also have lockup periods, particularly if they received a
significant discount.
• Release Schedule for Public Tokens: Some projects stagger the release of tokens purchased during the
sale to prevent market flooding.
5. Hard Cap and Soft Cap
• Hard Cap: The maximum amount of funds a project intends to raise. Once reached, the token sale ends,
regardless of demand.
• Soft Cap: The minimum amount of funds needed to consider the project viable. If the soft cap isn’t reached,
funds are often returned to investors, and the project may be reconsidered.
16-04-2025 Dr. Malathi D., SCOPE–VIT 74
Token sale structure
6. Token Sale Duration and Limits
• Some token sales have a limited duration (e.g., 30 days) to create urgency and encourage participation.
• Projects often limit the amount each individual can contribute, allowing broader participation and avoiding
dominance by large investors.
7. Regulatory Compliance
• Projects structure their token sales to comply with regulatory requirements in different jurisdictions.
Compliance steps may include:
• KYC/AML Verification: Many token sales require participants to complete Know Your Customer (KYC)
and Anti-Money Laundering (AML) checks.
• Accredited Investor Status: Some countries require that only accredited investors can participate in token
sales, particularly in the private or pre-sale stages.
• Jurisdictional Restrictions: Some projects exclude certain countries from participating in the token sale to
comply with local regulations.
8. Payment Options
• Cryptocurrencies: Most token sales accept Ethereum (ETH), Bitcoin (BTC), or stablecoins like USDT or USDC as
payment.
• Fiat Currency: In some cases, projects may also allow purchases using fiat currencies, especially for larger
institutional participants.
16-04-2025 Dr. Malathi D., SCOPE–VIT 75
Token sale structure
9. Transparency and Investor Protections
• Transparent project documentation, such as whitepapers, smart contract audits, and team information,
can boost investor confidence. Mechanisms like refunds if the soft cap isn’t reached or using escrow
accounts can offer extra protection for participants.
Example of a Token Sale Structure
• For example, a project could have:
• Total Tokens: 100 million
• Allocation: 40% for public sale, 20% for the team (with a 2-year vesting schedule), 15% for
ecosystem growth, 10% for advisors (with a 1-year lockup), 15% for reserves.
• Sale Stages: Seed Round (10% of tokens at a 50% discount), Private Sale (10% of tokens at a 20%
discount), Public Sale (20% of tokens at a fixed price).
• Pricing Model: Fixed price for the public sale, with a bonding curve during private and seed
rounds.
• A well-structured token sale helps projects attract the right investors, build a strong community, and
ensures long-term project sustainability by aligning incentives for all participants.
16-04-2025 Dr. Malathi D., SCOPE–VIT 76
Ethereum Subreddit
• The Ethereum subreddit, r/ethereum ([Link] is one of the main hubs on
Reddit for discussions, news, and updates related to Ethereum.
• It's a large, active community where both beginners and seasoned developers engage in
conversations on various Ethereum topics.
1. News and Announcements
• Key updates on Ethereum’s network development, such as protocol changes, upgrades like the
Ethereum Merge, EIP (Ethereum Improvement Proposals), and roadmap milestones.
• Announcements from the Ethereum Foundation or other key developers and organizations
contributing to Ethereum.
2. Technical Discussions
• In-depth discussions on smart contracts, decentralized applications (DApps), Solidity programming,
and Layer 2 scaling solutions.
• Community feedback on Ethereum Improvement Proposals (EIPs), which are suggestions for
upgrades or improvements to the network.
3. DeFi and NFTs
• Coverage of decentralized finance (DeFi) projects, including popular applications built on Ethereum like
Uniswap, Aave, and MakerDAO.
16-04-2025 Dr. Malathi D., SCOPE–VIT 77
Ethereum Subreddit
• Information and discussions on NFTs, marketplaces, and how Ethereum remains the primary network
for most NFTs.
4. Ethereum 2.0 / Proof of Stake (PoS)
• Discussions around Ethereum’s transition from Proof of Work (PoW) to Proof of Stake (PoS) consensus,
which began with the Merge.
• Community threads on staking rewards, validator nodes, and the technical aspects of Ethereum’s shift
to PoS.
5. Guides and Resources for Beginners
• Educational posts and FAQs for newcomers to understand how Ethereum works, including tutorials on
how to buy ETH, set up a wallet, and navigate basic functions.
• Summaries and explanations of complex concepts, making it easier for newcomers to get involved in the
Ethereum ecosystem.
6. Debates and Speculation
• Opinions and predictions on the future of Ethereum’s price, security, and development.
• Debates on Ethereum’s competition with other blockchain networks, especially concerning issues like
scalability, fees, and interoperability.
16-04-2025 Dr. Malathi D., SCOPE–VIT 78
Ethereum Subreddit
7. Community Projects and Collaborations
• Highlights of projects that are being developed within the Ethereum ecosystem, often from small teams
or open-source developers.
• Community events, meetups, online discussions, and hackathons that involve Ethereum builders.
Rules and Etiquette
• Like most subreddits, r/ethereum has rules to keep discussions respectful, on-topic, and free from spam.
• Self-promotion is limited, and the moderators encourage meaningful engagement rather than just
advertising.
• This subreddit is ideal if you’re interested in following Ethereum's development, learning about
blockchain technology, or connecting with a community that actively participates in Ethereum’s growth
and adoption.
16-04-2025 Dr. Malathi D., SCOPE–VIT 79
Text Book and Reference Books
Text Book
• Dhillon, V., Metcalf, D., and Hooper, M, Blockchain enabled applications, 2017, 1st Edition, CA: Apress,
Berkeley.
Reference Books
• Diedrich, H., Ethereum: Blockchains, digital assets, smart contracts, decentralized autonomous
organizations, 2016, 1st Edition, Wildfire publishing, Sydney.
• Wattenhofer, R. P, Distributed Ledger Technology: The Science of the Blockchain (Inverted Forest
Publishing), 2017, 2nd Edition, Createspace Independent Pub, Scotts Valley, California, US.
16-04-2025 Dr. Malathi D., SCOPE–VIT 80