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

From First Call to Project Launch — A BD’s Guide to Seamless Client Onboarding

From First Call to Project Launch — A BD’s Guide to Seamless Client Onboarding Chirag Verma 29/10/2025 In the IT industry, a client’s first impression can define the entire relationship. From the very first call to the moment a project officially begins, every step of the onboarding journey shapes how the client perceives your company’s […]

Understanding Event Loop & Async Behavior in Node.js

Understanding Event Loop & Async Behavior in Node.js Divya Pal 26 September, 2025 Node.js is known for its speed and efficiency, but the real magic powering it is the Event Loop. Since Node.js runs on a single thread, understanding how the Event Loop manages asynchronous tasks is essential to writing performant applications. In this blog, […]

REST vs GraphQL vs tRPC: Performance, Caching, and DX Compared with Real-World Scenarios

REST vs GraphQL vs tRPC: Performance, Caching, and DX Compared with Real-World Scenarios Shubham Anand 29-Oct-2025 API architecture selection—REST, GraphQL, and tRPC—directly impacts an application’s performance, caching, and developer experience (DX). In 2025, understanding how each performs in real-world scenarios is critical for teams seeking the right balance between reliability and agility. 1. REST: The […]

Collaborating in a Multi-Disciplinary Tech Team: Frontend and Beyond

Collaborating in a Multi-Disciplinary Tech Team: Frontend and Beyond Gaurav Garg 28-10-2025 Cross-functional collaboration is a force multiplier for product velocity and quality when teams align on shared goals, clear interfaces, and feedback loops across design, frontend, backend, DevOps, data, and QA. High-performing teams in 2025 emphasize structured rituals, shared artifacts (design systems, API contracts), […]

The Role of a BDE in Helping Businesses Modernize with Technology

The Role of a BDE in Helping Businesses Modernize with Technology Karan Kumar 28/10/2025 At Speqto Technologies, we’ve witnessed firsthand how technology has become the foundation of business success in 2025. But adopting new technologies isn’t just about staying trendy it’s about staying relevant, competitive, and efficient. That’s where a Business Development Executive (BDE) plays […]

POPULAR TAG

POPULAR CATEGORIES