Recent Posts

More on DeFi

15 minute read

1. Core DeFi Protocols and Platforms Understanding these platforms provides insight into the functionality and innovation within the DeFi ecosystem. A. M...

Introduction to DeFi

11 minute read

What is DeFi (Decentralized Finance)? DeFi stands for Decentralized Finance, which refers to a movement in the cryptocurrency and blockchain space that aims...

Fourth project in Solidity

3 minute read

A simple contract between a landlord and tenant for renting property. It could handle rent payments, security deposits, and lease termination terms. // SPD...

Third project in Solidity

3 minute read

// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.9.0; import "remix_tests.sol"; // this import is automatically injected by Remix. impor...

Second project in Solidity

2 minute read

The distribution of an inheritance after the owner of the contract has passed away. // SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.2 <0.9....