© 2023 Hashnode
#ethers
To Fetch the balance of an account in the Ethereum blockchain first we need to install some dependencies on our computer. Node.js [To install the node click here↗️] Ethers.js [Ethers.js Docs click h…
MetaMask is a popular cryptocurrency wallet that sends, receives, and signs transactions on the blockchain. It is the preferred cryptocurrency wallet used by web3 developers due to its flexible, cutti…
Introduction: Building a decentralized application (dApp) can be challenging, but it can be achieved with the right tools and understanding. Ethers.js is a JavaScript library for interacting with the Ethereum blockchain, which provides a ro…
Introduction I've been making articles and tutorials about simple web3 development concepts to help people get into web3; today, it's time to learn how to create a DApp! This tutorial will develop a s…
These are my notes from the 5th lesson of Freecodecamp's web3/Blockchain development course. You can read the notes for the previous lesson here =>https://muratcanyuksel.hashnode.dev/creating-a-storag…
This post is for you if you are making your way to Web3 as a JavaScript developer and are searching for a starting point. As such, let's dive into the ethers.js library with this tutorial. You'll lear…
Ethers.js is a library, written in javascript that allows you to connect any application to an Ethereum blockchain and its ecosystem. It's basically a bridge that connects the client to the blockchain How to import Ethers into your projec…
Introduction One of the fundamental requirements for interacting with the blockchain is a blockchain address or account (Externally Owned Account). An account on the blockchain serves as an identity. …
Introduction Solidity Events is a useful feature of Solidity that allows Smart Contracts to log information to the blockchain. This log has pretty valuable features that enable the data to be indexed…