Posts
Truffle vs Hardhat | Which is the best tool to develop smart contract?
Hardhat has error handling and testing tools like console.log method, which we can call from the smart contracts and log in the terminal, but in Truffle, we should write our own events and deal with them to test our contracts.
Read MoreLearn to Code, Compile, and Deploy in the Remix IDE
Remix is a browser based IDE, and handy way to code smart contract using Solidity. We will code, compile, deploy, and test our smart contract in Remix IDE.
Read MoreConnecting Remix with Ethers.js
We'll connect the smart contract compiled and deployed using Remix IDE with frontend. We’ll use Ethers.js library and code at vanilla JavaScript.
Read MoreFuture of Smart Contracts and Ethereum
This comprehensive article delves into the future of smart contracts and Ethereum, exploring their potential impact on industries and the economy. Learn about the latest developments and advancements in the field, and discover how they can be leveraged...
Read MoreEthers vs Web3 | Which is the best library to interact with smart contracts?
Web3.js is the oldest library and still has potential. Ethers.js library has smaller bundle size, user-friendly API structure, extensive and concise documentation, and that it is written in TypeScript. Web3.js is written in node.js and has a comparatively...
Read MoreCode, Compile, and Deploy using HardHat
In this article, we will setup the hardhat coding environment, then we’ll do solidity coding to read and write data in blockchain. After that, we will...
Read MoreConnect Hardhat Contract with Ethers in Frontend
We will use Ethers.js to send and receive the data from smart contract that we created using Hardhat.
Read More