Loading...

Getting Started with DeFi – A Step-by-Step Guide to Building a Simple Staking DApp

Afzal Khan

19 August, 2025

DeFi Logo


Decentralized Finance (DeFi) has revolutionized how people interact with money by removing intermediaries like banks. In this guide, we’ll build a simple staking DApp where users can stake tokens and earn rewards—one of the core mechanisms of DeFi.

Why Learn DeFi?

DeFi allows developers to create open financial systems where users have full control over their assets. By learning how to build a staking smart contract, you’ll understand a core concept used in yield farming, liquidity mining, and decentralized savings applications.

Step-by-Step Guide to Building a Simple Staking DApp

1. Set Up the Project

Start by creating a project and installing the required dependencies:

mkdir my-staking-dapp
cd my-staking-dapp
npm init -y
npm install --save-dev hardhat @openzeppelin/contracts

Initialize Hardhat:

npx hardhat

and select “Create a basic sample project”.

2. Write the Staking Smart Contract

Inside the contracts folder, create Staking.sol:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract Staking {
    IERC20 public token;
    mapping(address => uint256) public balances;
    mapping(address => uint256) public reward;

    uint256 public rewardRate = 10; // 10% reward

    constructor(address _token) {
        token = IERC20(_token);
    }

    function stake(uint256 amount) public {
        require(amount > 0, "Cannot stake 0");
        token.transferFrom(msg.sender, address(this), amount);
        balances[msg.sender] += amount;
        reward[msg.sender] += (amount * rewardRate) / 100;
    }

    function withdraw() public {
        uint256 amount = balances[msg.sender];
        uint256 rewards = reward[msg.sender];
        require(amount > 0, "Nothing to withdraw");
        
        balances[msg.sender] = 0;
        reward[msg.sender] = 0;
        
        token.transfer(msg.sender, amount + rewards);
    }
}

This smart contract lets users stake ERC-20 tokens and earn simple rewards.

3. Compile and Deploy

Compile the contract:

npx hardhat compile

Deploy it by updating scripts/deploy.js:

async function main() {
  const [deployer] = await ethers.getSigners();

  const Token = await ethers.getContractFactory("Token"); // Your ERC20 token
  const token = await Token.deploy();
  await token.deployed();

  const Staking = await ethers.getContractFactory("Staking");
  const staking = await Staking.deploy(token.address);
  await staking.deployed();

  console.log("Token deployed at:", token.address);
  console.log("Staking contract deployed at:", staking.address);
}
 
main().catch((error) => {
  console.error(error);
  process.exitCode = 1;
});

4. Stake and Earn Rewards

Once deployed, you can interact with the contract in the Hardhat console:

npx hardhat console --network localhost

Inside the console:

const staking = await ethers.getContractAt("Staking", "STAKING_CONTRACT_ADDRESS");
await token.approve(staking.address, 1000);
await staking.stake(1000);
await staking.withdraw();

You’ll see rewards credited when withdrawing your tokens.

How This Helps You

By building this simple staking contract, you’ve learned how token staking and rewards work—a key component of DeFi. With these basics, you can extend your DApp to support liquidity pools, governance tokens, and complex reward mechanisms like those used in popular protocols.

Conclusion

DeFi is reshaping finance, and staking is one of its most fundamental building blocks. In just a few steps, you created a staking contract where users can lock tokens and earn rewards. This foundation prepares you to build advanced DeFi protocols like yield farming, lending platforms, and decentralized exchanges. The future of finance is decentralized—your journey starts here.

RECENT POSTS

The Impact of Retention on Company Culture: Why Keeping Employees Matters More Than Ever

The Impact of Retention on Company Culture: Why Keeping Employees Matters More Than Ever Khushi Kaushik 08 dec, 2025 In today’s competitive business landscape, organizations are investing heavily in hiring the best talent— but the real challenge begins after onboarding. Employee retention is no longer just an HR metric; it has become a defining factor […]

How a BDE Connects Business Vision With Technology

How a BDE Connects Business Vision With Technology Kumkum Kumari                                                              21/11/2025At Speqto, we work with organizations that are constantly evolving entering new markets, scaling operations, or […]

Apache JMeter Demystified: Your 7-Stage Blueprint for a Seamless First Performance Test

Apache JMeter Demystified: Your 7-Stage Blueprint for a Seamless First Performance Test Megha Srivastava 21 November 2025 In the intricate world of software development and deployment, ensuring a robust user experience is paramount. A slow application can quickly deter users, impacting reputation and revenue. This is where Apache JMeter emerges as an indispensable tool, offering […]

STRIDE Simplified: A Hands-On Blueprint for Pinpointing Software Threats Effectively

STRIDE Simplified: A Hands-On Blueprint for Pinpointing Software Threats Effectively Megha Srivastava 21 November 2025 In the intricate landscape of modern software development, proactive security measures are paramount. While reactive incident response is crucial, preventing vulnerabilities before they become exploits is the hallmark of robust software engineering. This is where threat modeling, and specifically the […]

From Static to Streaming: A Practical Developer’s Guide to Real-time Applications Using GraphQL Subscriptions

From Static to Streaming: A Practical Developer’s Guide to Real-time Applications Using GraphQL Subscriptions Shakir Khan 21 November 2025 The Paradigm Shift: From Static to Streaming Experiences In an era where user expectations demand instant gratification, the web has rapidly evolved beyond its static origins. Today, a modern application’s success is often measured by its […]

POPULAR TAG

POPULAR CATEGORIES