If you have been developing smart contracts using Solidity lately, chances are you might have come across the payable keyword. This blog is specifically about the same where we decipher all its interesting and weird secrets. 😃Quick Intro: Basics of the Payable KeywordOut of all the wonderful things that a smart contract can do, storing your money(ETH) is one of them. Now in order to take receive ETH in a smart contract, Solidity language has got a specific keyword called payable. A payable k...