#ethereum
Read more stories on Hashnode
Articles with this tag
Events in Solidity In a Solidity Smart Contract, you can emit events that can be listened to outside the contract. In the example given below,...
Transactions in EVM-based blockchain networks can be batched using the web3.js library. You need to create a batch object in order to perform this...
payable function modifier provides a way to receive ethers in your smart contract. But what if you want to receive ERC20 Tokens into your smart...
In this article, you will learn about the difference between the transfer method and transferFrom() method in the ERC20 Token contract. transfer...