collinsadi.hashnode.devUnseen Dangers: How Developers Fall Prey to Hidden Security ThreatsHello World, I am Collins Adi, a software engineer who created auraroom.xyz and am currently exploring the blockchain space while building safemind.app. I can be fascinated by the smallest things and love to understand how everything works. But enoug...Oct 24, 2024·5 min read
collinsadi.hashnode.devThe difference between Send, Transfer, and Call in solidity.In solidity, there are 3 different ways to send ether, all these functions do the same thing but work in a slightly different way, and that's what we will discuss in this article. send() the send function is used to send ether to an address, and the ...Aug 31, 2024·3 min read
collinsadi.hashnode.devSolidity Note 22/08/2024Modifiers Modifiers in solidity are like middlewares in express.js, you use them to sort of like authenticate endpoints, in solidity they are used to authenticate or carry out a check on functions, to ensure that the function runs only when a particu...Aug 22, 2024·4 min read