Recent Posts

Proxy Contract

2 minute read

🧠 What is a Proxy Contract? A proxy contract is a smart contract that delegates or forwards function calls and data to another contract — called the impleme...

Smart Contract Example

3 minute read

Task Create a smart contract of folowing points included User can create timebound transactions List all the transaction in one pool with reverted, ex...

Types of Token

4 minute read

1. ERC-20: Fungible Tokens Overview ERC-20 is a standard for fungible tokens, where all tokens are identical and can be exchanged at a 1:1 ratio. These are...

ERC-20 Token Creation and Transfering

3 minute read

Create ERC-20 token with 10,000 total supply and send 5000 tokens to other address. Contract // SPDX-License-Identifier: MIT // Compatible with OpenZeppeli...